answersLogoWhite

0

📱

Windows XP

MS Windows XP operating system that was released for PC computers in 2001

9,737 Questions

What mapping system will put address in sequence order?

You can purchase this program from staples or any office store ... Streets and Trips

Can auto desk 3dsmax can run with mac book pro?

3ds Max is only available for the Windows operating system. Autodesk advises (See links below) that Apple® computers based on Intel processors and running Microsoft operating systems are supported using Apple's Boot Camp. Virtual machine environments are currently not supported.

Is there a software to gain access to a computer with a password?

Well if you are already on a computer you can use putty or winscp from a windows computer to access another computer. i recommend winscp as a more regular application. if you aren't already on a computer the operating system should be able to set a password for different accounts

What is the use of ping command in ms-dos?

Ping command is used to check the network connectivity. You can use ping command from windows shell only, not from DOS OS as DOS does not supports networking. You can use "-t" switch with ping for continuously network checking.

Syntax: Ping

Example: ping 192.168.1.15 or ping 192.168.1.15 -t or ping -t 192.168.1.15

What techniques reduce animation file size?

Compressing images and sound, optimising vector images and recycling images from libraries.

Why is it important to buy lots of RAM when shopping for a new computer?

It largely depends on what you'll be doing, if you're going to be doing tasks such as Adobe Creative Suit, then yes, lots of RAM is usually important. On the other hand, web browsing requires much less ram. It all depends on how heavy the activity on your computer is going to be, and what you will be doing, and depending on that your RAM should be around 4-20 gig's.

What is 000 in unix file systems?

It depends on where the 000 is being used. For permissions, it would indicate that the file or directory or device has no permissions at all. For the 'umask' it would indicate that all newly created files or directories would have wide open permissions (world read, world write, etc.).

What should you consider before installing a window awning?

Calculating for the proper size of the window awning must be one of your considerations. Plus, considering the orientation of the window to the sun.

How do you get windows live movie maker doccuments to work on windows 97-2003?

They can't work on earlier systems since codecs used to create the document in Windows Live are not available on Windows 97. You would have to download the appropriate codecs to be able to use the video in that system version.

How much does a registry cleaner for xp cost?

A registry cleaner for Microsoft Windows XP costs $39.95. Designed to operate on the Microsoft Windows XP Operating System, a registry cleaner has been widely debated by experts, who claim it is unnecessary and useless.

Why are windows making four new versions?

Because Microsoft has no clue and doesn't realize simplicity is the way to go.

How can I read from file list of data?

Here is a simple example:

// contacts.txt

John,Smith,555-1234

Jane,Doe,555-6442

// reader.php

<?php

// file function turns each line in the file into a row in an array

$file = file('/path/to/contacts.txt');

foreach($file as $line){

$contact = explode(', ', $line);

print_r($contact);

}

?>

Describe the steps taken by the client and DHCP server in order to obtain an IP address?

Firstly, a DHCP server is needed which distributes the IP addresses. This machine will serve as a base for all DHCP requests and must also have a fixed IP address. Therefore, on a network there can only be one machine with a fixed IP address, the DHCP server.

The basic communication system is BOOTP (with UDP frame). When a machine is turned on, it has no information on its network configuration, and there is nothing special that the user needs to do to find an IP address. In order to do this, the technique used is the broadcast: to find and talk with a DHCP server, the machine will simply send a special broadcast packet (broadcast on 255.255.255.255 with other information such as the type of request, the connection ports, etc.) over the local network. When the DHCP receives the broadcast packet, it will send back another broadcast packet (do not forget that the client does not obviously have the IP address and that therefore cannot be connected to directly) containing all the information required for the client.

It could be believed that one single packet is enough for the protocol to work. In fact, there are several types of DHCP packets likely to be issued either by the client for the server(s), or by the servers to a client:

DHCPDISCOVER (to locate available DHCP servers)

DHCPOFFER (server response to a DHCPDISCOVER packet, which contains the initial parameters)

DHCPREQUEST (varied request from the client for example to extend its lease)

DHCPACK (server response which contains the parameters and IP address of the client)

DHCPNAK (server response to indicate to the client that its lease has expired or if the client announces a bad network configuration)

DHCPDECLINE (the client announces to the server that the address is already in use)

DHCPRELEASE (the client releases its IP address)

DHCPINFORM (the client requests local parameters, it already has its IP address)

The first packet issued by the client is a DHCPDISCOVER type packet. The server responds with a DHCPOFFER packet, particularly in order to submit an IP address to the client. The client establishes its configuration and then makes a DHCPREQUEST to validate its IP address (a broadcast request since DHCPOFFER does not contain the IP address). The server simply responds with a DHCPACK with the IP address for confirmation of the allocation. Normally, this is enough for the client to obtain an effective network configuration, but it can be longer or shorter according to whether the client accepts the IP address or not.


Hope this will help you to understand DHCP.

Regards,
Jaydeep.Gatlewar@gmail.com