You are on page 1of 34

Search

Network engineer interview questions


1. User(s) are complaining of delays when using the network. What would you do?
2. What are some of the problems associated with operating a switched LAN?
3. Name some of the ways of combining TCP/IP traffic and SNA traffic over the
same link.
4. What sort of cabling is suitable for Fast Ethernet protocols?
5. What is a Class D IP address?
6. Why do I sometimes lose a server’s address when using more than one server?
7. What is Firewall?
8. How do I monitor the activity of sockets?
9. How would I put my socket in non-blocking mode?
10. What are RAW sockets?
11. What is the role of TCP protocol and IP protocol.
12. What is UDP?
13. How can I make my server a daemon?
14. How should I choose a port number for my server?
15. Layers in TCP/IP
16. How can I be sure that a UDP message is received?
17. How to get IP header of a UDP message
18. Writing UDP/SOCK_DGRAM applications
19. How many bytes in an IPX network address?
20. What is the difference between MUTEX and Semaphore?
21. What is priority inversion?
22. Different Solutions to dining philosophers problem.
23. What is a message queue?
24. Questions on Shared Memory.
25. What is DHCP?
26. Working of ping, telnet, gopher.
27. Can I connect two computers to internet using same line ?

Posted in: Networking |

50 Responses to “Network engineer interview questions”

1. Vivek Kumar Says:


November 26th, 2005 at 12:32 am

5. Ip Address Ranges:
Class A: 0-126. 127 is a Broadcast
Class B: 128-191
Class C: 192-223
Class D: 224-239
Class E: 240-255.

2. Vivek Kumar Says:


November 26th, 2005 at 12:45 am

Ques5. Ip Address Ranges:


Class A: 0-126. : For about >256 Subnets and >16777214 hosts per subnet
127.0.0.1: For Proper Configuraions of TCP/IP.
Class B: 128-191: for about >65536 Subnets and >65534 hosts per subnet
Class C: 192-223: For about >16777214 networks and 254 hosts per subnet
Class D: 224-239 : these addressess are for Scientific researches ..
Class E: 240-255. : these are kept for Future Use

3. Vivek Kumar Says:


November 26th, 2005 at 1:01 am

Ques 7: what is a Firewall:


Firewalls are of two types:
-Hardware Firewall
-Software Firewall.
Firewall in simple manner is bascially the utility to provide the security over the
network. These are the security measures that prevents the network’s in and out
traffic to pass through the specific Security filters so that the unwanted and
unsecure data can be stopped from entering into the network..
further… as a security measure it also depends on the network designer and
implementer that how to use a Firewall mean to say the security measures like
how to present the content filtering and Url filtering which type of firewall should
be used and where to put it..

4. Vivek Kumar Says:


November 26th, 2005 at 1:48 am

Ques 11. Well.. firt of all one should know what a protocol actually means:
A Protocol is bascially set of rules designed and developed for the internetwork or
can say intranetwork Communications. the need of Tcp had been rised in early
years when like.. IBM Mainframe were not able to Communicate with the
Burroughs mainframe.. means if you wish to connect 2 or more computers they
should be same with everything from manufacturer to designer and
implementer…then TCP imerged as a solution-for-ever..
EARLIER it was NCP( Network Control Protocal) but later it refined into
TCP( Transmission Control Protocol) and IP(Internet Protocol)on jan.1,1983..
Some General roles of TCP/IP are:
1. Independence from particular vendor or network.
2. very low data overhead
3. good failure recovery.
and if the thinghs are taken seprately.. then
TCP is bascially responsible for proper data transmission by assuring data
integrity it is a connection oriented protocol that follows the under scenerio
1. Handshaking.
2. Packect Sequencing
3. Flow Control.
4. Error handling.
IP : Since the data to be sent must be put somewhere the IP works here .. the
required data is packaged in an IP packet.

5. Subir Sinha Says:


January 6th, 2006 at 7:10 am

ques11: TCP (Transmission Control Protocol) is a set of rules (protocol) used


along with the Internet Protocol (IP) to send data in the form of message units
between computers over the Internet. While IP takes care of handling the actual
delivery of the data, TCP takes care of keeping track of the individual units of
data (called packets) that a message is divided into for efficient routing through
the Internet.

6. vinod gupta Says:


March 12th, 2006 at 5:54 am

7 Application
6 Presentation Upper Layers
5 Session

4 Transport
3 Network
2 Data Link Lower Layers
1 Physical

The application, presentation, and session layers are all application-oriented in


that they are responsible for presenting the application interface to the user. All
three are independent of the layers below them and are totally oblivious to the
means by which data gets to the application. These three layers are called the
upper layers.
The lower four layers deal with the transmission of data, covering the packaging,
routing, verification, and transmission of each data group. The lower layers don’t
worry about the type of data they receive or send to the application, but deal
simply with the task of sending it. They don’t differentiate between the different
applications in any way.
The following sections explain each layer to help you understand the architecture
of the OSI-RM (and later contrast it with the architecture of TCP/IP).

The Application Layer


The application layer is the end-user interface to the OSI system. It is where the
applications, such as electronic mail, USENET news readers, or database display
modules, reside. The application layer’s task is to display received information
and send the user’s new data to the lower layers.
In distributed applications, such as client/server systems, the application layer is
where the client application resides. It communicates through the lower layers to
the server.

The Presentation Layer

The presentation layer’s task is to isolate the lower layers from the application’s
data format. It converts the data from the application into a common format, often
called the canonical representation. The presentation layer processes machine-
dependent data from the application layer into a machine-independent format for
the lower layers.
The presentation layer is where file formats and even character formats (ASCII
and EBCDIC, for example) are lost. The conversion from the application data
format takes place through a “common network programming language” (as it is
called in the OSI Reference Model documents) that has a structured format.
The presentation layer does the reverse for incoming data. It is converted from the
common format into application-specific formats, based on the type of application
the machine has instructions for. If the data comes in without reformatting
instructions, the information might not be assembled in the correct manner for the
user’s application.

The Session Layer

The session layer organizes and synchronizes the exchange of data between
application processes. It works with the application layer to provide simple data
sets called synchronization points that let an application know how the
transmission and reception of data are progressing. In simplified terms, the
session layer can be thought of as a timing and flow control layer.
The session layer is involved in coordinating communications between different
applications, letting each know the status of the other. An error in one application
(whether on the same machine or across the country) is handled by the session
layer to let the receiving application know that the error has occurred. The session
layer can resynchronize applications that are currently connected to each other.
This can be necessary when communications are temporarily interrupted, or when
an error has occurred that results in loss of data.

The Transport Layer

The transport layer, as its name suggests, is designed to provide the “transparent
transfer of data from a source end open system to a destination end open system,”
according to the OSI Reference Model. The transport layer establishes, maintains,
and terminates communications between two machines.
The transport layer is responsible for ensuring that data sent matches the data
received. This verification role is important in ensuring that data is correctly sent,
with a resend if an error was detected. The transport layer manages the sending of
data, determining its order and its priority.

The Network Layer

The network layer provides the physical routing of the data, determining the path
between the machines. The network layer handles all these routing issues,
relieving the higher layers from this issue.
The network layer examines the network topology to determine the best route to
send a message, as well as figuring out relay systems. It is the only network layer
that sends a message from source to target machine, managing other chunks of
data that pass through the system on their way to another machine.

The Data Link Layer

The data link layer, according to the OSI reference paper, “provides for the
control of the physical layer, and detects and possibly corrects errors that can
occur.” In practicality, the data link layer is responsible for correcting
transmission errors induced during transmission (as opposed to errors in the
application data itself, which are handled in the transport layer).
The data link layer is usually concerned with signal interference on the physical
transmission media, whether through copper wire, fiber optic cable, or
microwave. Interference is common, resulting from many sources, including
cosmic rays and stray magnetic interference from other sources.

The Physical Layer

The physical layer is the lowest layer of the OSI model and deals with the
“mechanical, electrical, functional, and procedural means” required for
transmission of data, according to the OSI definition. This is really the wiring or
other transmission form.
When the OSI model was being developed, a lot of concern dealt with the lower
two layers, because they are, in most cases, inseparable. The real world treats the
data link layer and the physical layer as one combined layer, but the formal OSI
definition stipulates different purposes for each. (TCP/IP includes the data link
and physical layers as one layer, recognizing that the division is more academic
than practical.)

7. Iraban Says:
March 17th, 2006 at 10:29 am

Interviews Questions
1. Are all cacheless proxies DNS cacheful ? If so why ?
2. How does a ping work ? The exact mechanism.

3. How does a DHCP work ? When a pc with no Ip address just with an MAC
addrress boots up , what are the steps that Happen till the time a Ip is given to the
pc from a DHCP.

4. What happens if there are 2 DHCP servers in the network and both gets a
message from 2 pcs booting at exactly the same moment of time.

8. Mike Says:
March 27th, 2006 at 11:52 am

You guys would fail. lol. Class D networks are reserved for multicasting.
someone asking the question isn’t interested in the IP range but what its used for.

9. hariom jindal Says:


April 22nd, 2006 at 12:40 pm

how to change MAC Address.?

ans
you can change a mac address easly. go to the desktop>write click on the my
computer icon>properties>device manager>Network Adapters> properties>
advance>network address.. and then chnage the value. The value should be
hexadecimal or 16 octat

10. hariom jindal Says:


June 18th, 2006 at 2:28 pm

What is DHCP.

ans….

DHCP is a protocol which is designe for Automatic Give the IP Address to DHCP
client..

DHCP Assine the IP Address for few days Lease & capture the clients MAC
address..
It is Updated version of BootP…

11. Indranil Banerjee Says:


September 17th, 2006 at 12:59 pm

27. u can connect two computer using NAT wich use port forwarding method and
proxy server same time on the same line .
26 ping ia process which use ICMP protocl error message which is encapsulated
in a IP packets its calculate the round trip delay time by sending the packet
sending time and subtract it from arrival time. the error messages are 1.destination
unrecheable
2.hardware error.
etc
its also sets maximum hop value and after it becomes 0 the packets discarted

Telnet is a application layer process of connection remote compter and local Area
Network compter by specifing the ip address by a specific port,

25 DHCP is used for MAC address to IP mapping its support both static and
dynamic mapping.Static mapping are done just like bootstrap and for dynamic
mapping it have database of MAC and IP when a packet with a MAC comes ask
for ip its check that assigne a dynamic IP fixed that for a specific time and then
return that packet with that IP

26 In OS when an event done it stored on Message queues and and its relavent
action are called then it executed and cleared message queue it’s tempurary buffer
of a multitusking OS.

5.Class D ip are used for multitusking. that is 1 to many relation ship used with
IGMP protocol for group managemnt.
6.TCP/IP has 4 layer 1.Applicatiotn
2.Transport
3.Internet
4.Netwok Access
Foolish vinod said the OSI Layer

7. Firewall are the rules which are used for Passing traffic thats is packets in
network layer and frame is datalink layer on a specific port it can be two type
1.Hardware
2.Software
11 TCP is a transport layer protocol sued for reliable delivery of segmented
packets
IP is network layer protocol used for end to end delivery of two nodes not
reliable.

12. indranil Says:


September 17th, 2006 at 1:01 pm

27. u can connect two computer using NAT wich use port forwarding method and
proxy server same time on the same line .

26 ping ia process which use ICMP protocl error message which is encapsulated
in a IP packets its calculate the round trip delay time by sending the packet
sending time and subtract it from arrival time. the error messages are 1.destination
unrecheable
2.hardware error.
etc
its also sets maximum hop value and after it becomes 0 the packets discarted

Telnet is a application layer process of connection remote compter and local Area
Network compter by specifing the ip address by a specific port,

25 DHCP is used for MAC address to IP mapping its support both static and
dynamic mapping.Static mapping are done just like bootstrap and for dynamic
mapping it have database of MAC and IP when a packet with a MAC comes ask
for ip its check that assigne a dynamic IP fixed that for a specific time and then
return that packet with that IP

26 In OS when an event done it stored on Message queues and and its relavent
action are called then it executed and cleared message queue it’s tempurary buffer
of a multitusking OS.

5.Class D ip are used for multitusking. that is 1 to many relation ship used with
IGMP protocol for group managemnt.
6.TCP/IP has 4 layer 1.Applicatiotn
2.Transport
3.Internet
4.Netwok Access
Foolish vinod said the OSI Layer

7. Firewall are the rules which are used for Passing traffic thats is packets in
network layer and frame is datalink layer on a specific port it can be two type
1.Hardware
2.Software
11 TCP is a transport layer protocol sued for reliable delivery of segmented
packets
IP is network layer protocol used for end to end delivery of two nodes not
reliable.

13. pay Says:


October 6th, 2006 at 9:43 am

Q1: User(s) are complaining of delays when using the network. What would you
do?

ANS:
- get the user(s) to demonstrate the problem

- determine how many other users are affected


- ensure desktop hardware and configuration is OK

- trace all connections (they may be on another subnet)

- commence some monitoring or diagnostics

- determine problem (if there is one)

- provide solution

14. Muhammad Ali Khan Says:


November 5th, 2006 at 6:18 pm

11. TCP is a connection oriented protocol that provides reliable transfer of


information by synchronization, error checking and sequencing of information to
and from IP layer.

IP layer is transport of TCP. It provides path determination and packet switching.


IP layer uses ARP and RARP protocol to map IP to MAC address and MAC to IP
address respectively, to determine network addresses. It is connectionless protocol
that leaves all error checking functions on upper layer.

12. UDP is a connectionless protocol that do not provide reliable transfer of


information and is fast in nature as compare to TCP. This disadvantage on other
hand is suitable for applications like video and voice.

15. Rich Says:


November 26th, 2006 at 8:55 am

5. reserved for Multicast.. correct… I never really understood this properly until
working with OSPF. You can try memorising the table if you like but it’ll stick
better if you get some understanding on why, and what different addresses are
used for.

If you want a good undertanding of a decent routing protocol, get your head round
OSPF. It’s nice, easy and used a lot plus you’ll understand multicasting in the
process…

For example in OSPF - 224.0.0.5 is used for multicasting routing information and
is address you should always know about. I’ve been asked about this in EVERY
interview I’ve had in networks.

16. hariom jindal Says:


December 11th, 2006 at 6:58 am

Active Directory.
Active Directory is a administative tool which is use to manage and administer
the domain users, computers, network clients centrelize.

older name of Active Directory called NTDS( NT Directory Service).

17. hariom jindal Says:


December 11th, 2006 at 7:01 am

What is a Page file.

Page file is a vertual memory of the operating system & work as Physical RAM.
It encreses the system performance & working.

18. hariom jindal Says:


December 11th, 2006 at 7:04 am

What is a Printer.

Printer is a Hardware Device which is use to take hard copy of any text or data
from system..

we have three types of printer..

1. Dot Matrix
2. Lazer
3. Inkjet

19. hariom jindal Says:


December 16th, 2006 at 11:51 am

What is WDS mode in AP?

Ans..

WDS stands for Wireless Distributed System, & work as Bridging Technology.
In WDS mode Access Point can communicate with Wi-Fi Access Points only
does not support Wireless Cliens.

If we want communicate 4 AP to each other so we should configure one AP as


WDS mode.

In this mode WSD AP requires Remote AP mac address so you have to type other
APs MAC address one by one.

and Configure AP in AP with WDS mode with Remote WDS mac address..

with this setting u can make Wireless LAN with out any ethernet wire.
try and if u have any problem contact me at:
rndxpert@gmail.com

20. hariom jindal Says:


December 21st, 2006 at 12:35 pm

Q. Can I connect two computers to internet using same line.

Ans..
Yes, we can connect two or more system using many types of mathodes..

1. Remote Help Invitations.. if you have high or medium speed internet


connection you can access the system..
2. VPN.. using the Virtual Private Network this is technology which is use to
make virtual network between any remote location. VPN make a tunnel type
connection for fast & secure communication.
3. Using third party software we have many type of VPN softwares.

21. hariom jindal Says:


December 21st, 2006 at 12:43 pm

Question.
User(s) are complaining of delays when using
the network. What would you do?
Ans.
Network slow problem create by many reasions like.. Spyware, Virus, Spool
Virus, NetBios, or may be any machine infected with a Virus or Worm..

This problem may be genrate by defected HUB/Switch or Carbon in Jack or


female RJ45 connector.

so you have update your antivirus or firewall software or desible the NetBios in
Wins Configurations.

thanks

22. Raja Said Says:


December 30th, 2006 at 4:02 am

Q.25 What is DHCP?

Dynamic Host Configuration Protocol is a network layer Protocol that enables a


DHCP Server and Assign IP Address Automatically on Individual DHCP Client

23. Raja Says:


January 2nd, 2007 at 12:39 am
Q. what is firewall?

Firewall are two types


1. Hardware Device
2. Software Firewall
Firewall work as a Filter whichever connect to broadband and router before home
Network and stop all virus coming form Internet

24. Hari Om Jindal Says:


January 23rd, 2007 at 10:36 am

Que. How ISA Server Works ?

Ans..

ISA is Software Firewal & Internet Soloution for small & large network. ISA
server blocks Inboud traffic as well as Outbound traffic.

It is a multitasking firewall server it provides NAT (Natwork Address


Translation)& Web Proxy etc..

ISA server provides SecureVPN for connect Remote Clients or Remote


Location…

25. Hariom Jindal Says:


February 22nd, 2007 at 5:07 pm

Que: What is a Domain Controller?

Ans.Domain is a Security boundery which is use to make secure or private


network from inside to outsite.

Domain provide better administration control over the network object.

26. Naveed Nezam Says:


February 23rd, 2007 at 2:47 am

27- Can I connect two computers to internet using same line ?

There are different methods to share one internet connection on multipe numbers
of computer.

1- ICS(Internet Connection Sharing)


In this method you can just enable Internet Connection Sharing check on your
gateway.. The limitation of ICS is you must have 192.168.X.X IP addressing
scheme on your network. another limitation of ICS is it can support upto 15
Computer(approx.. dont remember exact figure).
2-NAT
NAT or NATING basic function is to convert private IP to Public IP and vice
versa.
It work same like ICS but have some enhanced features and can used for large
number of client computers.
* NAT has also option of Firewall.
* No limitation of IP Scheme..it also provide dynamic IP addressing
* Also have a feature of Server Publishing
*Cannot cache

3- Proxy Servers (e.g Microsoft ISA Server)


Fully enhanced product which provide Internet sharing , Firewall(Fully featured )
and Caching.

27. Mohsin khan Says:


February 26th, 2007 at 8:46 am

7. FireWall is nothing but it is used to avoid the unwanted trafic or unauthorised


entry. The Firewall has 2 types 1. Hardware & 2.Software. Now the most familiar
used firewall is PIX from the make of cisco. and other firewalls like nokia and so
on..

28. pradeep kumar Says:


March 26th, 2007 at 7:27 am

please tell me how we can configure DHCP server??

29. Gaurav Says:


April 25th, 2007 at 9:53 am

TCP/IP is a two-way communication between the client and the server and it is a
reliable and there is a confirmation regarding reaching the message to the
destination. It is like a phone call.

UDP is a one-way communication only between the client and the server and it is
not a reliable and there is no confirmation regarding reaching the message to the
destination.

30. syed khalid Says:


May 13th, 2007 at 3:45 am

when u want to know about understanding the nature of network then first of all u
should be concentrate on OSI MODEL
osi model have 7 layers and every layer perform unique task:
1 APPLICATION LAYER
2 PRESENTATION LAYER
3 SESSION LAYER
4 TRANSPORT LAYER
5 NETWORK LAYER
6 DATA LINK LAYER
7 PHYSICAL LAYER
BUT NETWORK WORK ON LAYER 7 -1
THANKS SEE YOU ANY TIME WITH LOTS OF FUNDAS

31. Ahamed Harooon Says:


May 15th, 2007 at 2:19 pm

DHCP stands for “Dynamic Host Configuration Protocol

DHCP’s purpose is to enable individual computers on an IP network to extract


their configurations from a server (the ‘DHCP server’) or servers, in particular,
servers that have no exact information about the individual computers until they
request the information. The overall purpose of this is to reduce the work
necessary to administer a large IP network. The most significant piece of
information distributed in this manner is the IP address.

32. Nirmala Says:


May 17th, 2007 at 11:46 am

2.What are some of the problems associated with operating a switched LAN?
Ans:
A switched LAN (Local Area Network) may use a Gigabit Ethernet switch that
includes different ports connected to PCs and to layer 3 routers. The routers
connected to different switch ports can not immediately identify failures either of
other routers or of the ports and links by which they are connected to the switch.
The routers currently have to rely on slow timeout mechanisms, such as missed
hello packets, to detect failures on other links connected to the switch.
Thus, the time required to detect failures can and often does dominate the time
required for a routing algorithm to determine a new network topology around a
detected failure (convergence time).

33. dharmender yadav Says:


May 30th, 2007 at 11:53 pm

5.Class D: 224-239 its Class D - Used for multicasts, Class D is slightly different
from the first three classes. It has a first bit value of 1, second bit value of 1, third
bit value of 1 and fourth bit value of 0. The other 28 bits are used to identify the
group of computers the multicast message is intended fo

34. Mike Mountrakis Says:


June 14th, 2007 at 5:23 pm
Q 7 How do I monitor the activity of sockets?
In any POSIX (UNIX like system ) you can monitor the ports and their state with
netstat command. Try:

$netstat

and this will give you a list of all opened sockets to the associated ports for
TCP/UDP/RAW protocols.

Q8 How would I put my socket in non-blocking mode?


If you choose to open a socket in UDP, the socket is asynchronous, thus non-
blocking.

Q9 What are RAW sockets?


Those sockets bypass the transport layer and talk directly to network layer, in
other words they cannot be categorized as UDP/TCP.
Normally, in RAW sockets e have to build our own IP header to override values
that IP would place into certain header fields (use IP_HDRINCL socket option
when opening socket descriptor).
Normally we use this kind of sockets for two reasons:
a. Implement custom transport protocol
b. Pass raw streaming through the network.

Michael Mountrakis
mountrakis@illumine.gr

35. Mike Mountrakis Says:


June 14th, 2007 at 5:37 pm

Q17 How to get IP header of a UDP message

If you want to do it for monitoring, use Ethereal


If you want to do it within your code, use pcap (Packet Capturing Library) that
comes with TCPDump distribution.

Q20 What is the difference between MUTEX and Semaphore?


A MUTEX is a lock. You can place a MUTEX Lock on a resource among
processes/threads in order to lock it. When MUTEX is released, the resource is
also released.

A Semaphore is a signal raiser, or a token. When you wait for a MUTEX to be


released, you might need to listen to a specific semaphore caused by the MUTEX
release.

Q21 What is priority inversion?


Rearrange in opposite order the scheduler’s priority list.
Q22 Different Solutions to dining philosophers problem.
Read “UNIX Network Programming” V1 by R. Stevens and
“A Book on C By I. Poll A. Kelly”
There are some excellent solutions over there

Michael Mountrakis
http://www.illumine.gr

36. Hariom Jindal Says:


June 29th, 2007 at 12:17 am

Installing, Upgrading and Erase the software using RPM

RPM (Redhat Package Manager)

RPM package manager is a tool which is use to install, upgrade and removes the
rpm packages. RPM is develop by redhat and support many linux distirbutions
like Fedora Project, Redhat Enterprise Linux, CentOs, Mendriva and othrs.

RPM only supports rpm file.

Using RPM command with many functions.

#rpm –q for query a packages

-a for query with all rpms

-V for query with varify the packge

#rpm –i for install a rpm package

-h for display with hash

-v for verbose

#rpm –u for upgrade the module

#rpm –e for erase the module

Some examples:-

#rpm –ivh dhcp-3.0.1-12_EL

37. prakash Says:


July 7th, 2007 at 4:09 am

User(s) are complaining of delays when using the network. What would you do
38. mukesh Says:
October 10th, 2007 at 5:31 am

how do i enable or dlsable my usb port?

39. Leela Says:


October 19th, 2007 at 9:14 am

1.How to take the bios backup?


2.How to disable the ports (usb,com and serial ports)?
3.Difference between cold booting and warm booting?
4.Explain Dr.Watson?

40. Jayshankar Says:


December 15th, 2007 at 7:19 am

1) How do BGP works in a network?


2) What is STM?

41. Harry Says:


December 17th, 2007 at 4:04 am

Domain Controllers in a network can be of 2 sub types: PDC (Primary domain


controller) and BDC (Backup Domain Controller).
PDC governs the other network clients and resource sharing/scheduling can be
easily done. All BDCs can be configured and monitored using PDC. From BDC
clients, using a proxy on PDC, one can access the internet facilities.

42. Abhii Says:


January 2nd, 2008 at 10:54 am

chk the link :

Introduction to the Border Gateway Protocol (BGP)

http://www.academ.com/nanog/feb1997/BGPTutorial/index.htm

43. bajrang lal Says:


January 5th, 2008 at 3:53 am

What is filtering and why we are using?


Well.. firt of all one should know what a protocol actually means

how to change MAC Address.?


What is NetBios?
What is Caching.?
What type of virus? Spyware? how can infected Virus, Spool Virus, NetBios, or
may be any machine infected with a Virus or Worm..

44. brijesh kumar Says:


May 10th, 2008 at 5:57 am

How to install and configure the DHCP service for iSCSI startup
1. Install the DHCP service on a computer on the local network where the iSCSI
client computer will be starting. To do this, follow these steps:a. Click Start, point
to Control Panel, and then click Add or Remove Programs.
b. In the Add or Remove Programs dialog box, click Add/Remove Windows
Components.
c. In the Windows Components Wizard, click Networking Services in the
Components list, and then click Details.
d. In the Networking Services dialog box, click to select the Dynamic Host
Configuration Protocol (DHCP) check box, and then click OK.
e. In the Windows Components Wizard, click Next to start the Setup program.
Insert the Windows Server 2003 CD into the computer’s CD drive or DVD drive
if you are prompted to do this. Setup copies the DHCP server and tool files to the
computer.
f. When the Setup program is finished, click Finish.

45. brijesh kumar Says:


May 10th, 2008 at 5:58 am

How to install and configure the DHCP service for iSCSI startup
1. Install the DHCP service on a computer on the local network where the iSCSI
client computer will be starting. To do this, follow these steps:a. Click Start, point
to Control Panel, and then click Add or Remove Programs.
b. In the Add or Remove Programs dialog box, click Add/Remove Windows
Components.
c. In the Windows Components Wizard, click Networking Services in the
Components list, and then click Details.
d. In the Networking Services dialog box, click to select the Dynamic Host
Configuration Protocol (DHCP) check box, and then click OK.
e. In the Windows Components Wizard, click Next to start the Setup program.
Insert the Windows Server 2003 CD into the computer’s CD drive or DVD drive
if you are prompted to do this. Setup copies the DHCP server and tool files to the
computer.
f. When the Setup program is finished, click Finish

46. Kiran Says:


September 15th, 2008 at 2:36 am

1. User(s) are complaining of delays when using the network. What would you
do?
Ans:
====
1. Check the traffic on the network (using DU Meter) when systems are idle
2. Check to ping the gateway
3. Check any unwanted softwares are installed on the system.
4. Update the Antivirus and Scan the system by unplugging network cable.
5. Check the status of Switch / Hub and cables.

47. Kiran Says:


September 15th, 2008 at 2:39 am

What are RAW sockets?


Ans:
====
provide direct access to the lower-layer protocols, for example, IP and the Internet
Control Message Protocol (ICMP).

48. Kiran Says:


September 15th, 2008 at 2:47 am

What are some of the problems associated with operating a switched LAN?

Ans:
====
1. Slow Data Traffic
2. Too many connections to server
3. Establish Que process
4. Loss of Data

Sniffers are used to overcome these problems.

Pls see the link for Switched LAN

http://www.cisco.com/en/US/docs/internetworking/design/guide/nd2012.html#wp
3242

49. shankar.aj Says:


October 7th, 2008 at 1:36 pm

How to take the bios backup?

50. Dhananjay Says:


November 17th, 2008 at 2:30 pm

What is DHCP?
DHCP stand for Dynamic Host configuration Protocal.DHCP servir provid the
automatically TCP/ IP configuration of all of the claint in the network.
Leave a Reply

Name (required)

Mail (will not be published) (required)

Website

Submit Comment

Send new comments to my e-mail

Search for answers


Search

Custom Search

Recent interview questions


o 40 student interview questions from NetApp
o Programming phone screen questions
o Linux network administrator questions
o Basic programming questions
o Linux command line Q&A
o SQL interview questions
o Java interview questions
o WinRunner question encyclopedia with answers
o Java threads question set
o Unix admin questions
o Hiring an IT guy - questions to ask
o Amazon interview questions
o Sysadmin sample interview questions
o Yahoo! PHP interview questions
o Two men running
o 54 screening questions for Windows admin
o 10 questions on MySQL speed-up and optimizations
o Search engine marketer questions
o Topics for networking interview
o Simple C++ interview questions
o 12 general questions from an international company
o Windows admin interview questions (includes Vista)
o Linux application programming questions
o Python interview questions
o Some C++ interview questions
o Perl self-test questions
o 71 basic SQA / testing interview questions
o Basic shell scripting questions
o MySQL management interview questions
o DBA Interview Questions
o DAC interview questions
o x86 programming interview questions
o 8251 USART interview questions
o IC 8253 and IC 8259 interview questions
o Interview questions for a low-level programmer
o 8086 interview questions
o 25 SAP ABAP interview questions with no answers
o Google interview questions
o 30 simple Java questions
o SQL study notes
o Giant list of XML interview questions
o 50 JavaScript & AJAX interview questions
o EDS Visual Basic and SQL Server interview questions
o More than 200 CCNA questions
o Implement itoa
o Write a program that prints out its own source code
o 54 ASP and ASP.NET questions
o Generic interview questions to ponder
o 11 advanced MySQL questions
o Interview questions for a sysadmin
o Business Objects interview question
o QTP interview questions
o A dozen .NET questions
o 31 more MySQL questions
o 29 MySQL interview questions
o Simple FreeBSD questions
o Apache interview questions
o Networking questions
o SAP ABAP frequent questions cheatsheet
o Web architect interview questions
o Generic interview questions
o Popular interview questions and answers
o Windows sysadmin interview questions
o Load testing interview questions
o Active Server Pages interview questions
o JavaScript interview questions
o Topics for a Unix sysadmin interview
o Hardware architecture interview questions
o Tricky C questions
o C++ developer interview
o 64 Java questions for any job interview
o MS SQL Server developer interview
o VB interview questions
o Database developer interview questions
o CPU engineer interview questions
o C questions for a hardware engineer
o VB interview questions
o Oracle on Linux/Unix questions
o Windows sysadmin interview questions
o SQA and testing frequently asked definitions
o C++ interview questions
o DBA Interview Questions - Part 10
o DBA Interview Questions - Part 9
o DBA Interview Questions - Part 8
o DBA Interview Questions - Part 7
o DBA Interview Questions - Part 6
o DBA Interview Questions - Part 5
o DBA Interview Questions - Part 4
o DBA Interview Questions - Part 3
o DBA Interview Questions - Part 2
o DBA Interview Questions - Part 1
o Refresher questions for a DBA interview
o Popular interview questions for DBA
o C++ notes for discussion
o Electronic engineer interview questions
o .NET WebDev interview questions - Part 3
o .NET WebDev interview questions - Part 2
o .NET WebDev interview questions - Part 1
o Qualcomm hardware logic design questions
o Some general quickies
o Embedded firmware interview questions
o .NET database dev questions
o Interview questions for .NET
o .NET WebDev and Web services questions
o Oracle interview questions
o ASP interview questions
o 10 bottles of pills
o PHP interview questions
o General Java Servlet questions
o Newbie Java questions
o Network developer interview questions
o Some PC and networking questions
o C and C++ questions for the interview
o Simple Java questions
o Questions to ask VB programmer
o Basic database interview quesitons
o Network engineer interview questions
o OS interview questions
o Typical interview questions
o Microsoft college recruitment questions
o 55 most frequently asked interview questions
o Windows Server and MS Exchange interview questions
o July contest winner
o Windows programming interview questions
o Interview questions for DBA
o Electrical engineer interview questions
o Sysadmin interview questions
o Network developer interview questions
o MySQL and general database interview questions
o Security interview questions for network admin
o Cisco-specific network engineer questions
o Large list of Intel interview questions
o Network administrator interview questions
o Solaris interview questions
o General UNIX interview questions
o Master list of Java interview questions - 115 questions
o Some VB interview questions
o SAP/ABAP interview questions
o Microsoft ASP.NET interview questions
o Tough interview questions on EJB
o EJB interview questions
o Cake puzzle
o Network engineer interview questions
o System integration questions
o Interview questions for Web developer position
o XML interview questions
o Simple SAP ABAP questions
o Interview questions on C/C++
o LoadRunner interview questions
o SAP ABAP interview questions
o Solaris interview questions
o Simple interview questions on Microsoft .NET
o Interview questions on WinRunner
o Questions to ask before getting hired
o Tough ASP.NET interview questions
o Questions to ask HR between the interviews
o WinRunner interview questions
o Good questions to ask during management interview
o Visual Basic interview questions
o eBay interview questions
o Questions to ask your future boss and colleagues
o .NET interview questions at Wipro
o Questions to ask during HR interview
o SAP Interview Questions
o Questions to ask when tech recruiter calls
o Typical Oracle questions
o Perl interview questions
o Open-ended .NET questions
o Interview at IBM
o Linux admin interview questions
o Basic .NET and ASP.NET interview questions
o PHP interview questions, Part 2
o PHP interview questions, Part 1
o Programming interview questions
o Bluetooth interview questions
o Jakarta struts questions
o Operating system questions
o 8086 interview questions
o 8085 microprocessor questions
o Interview questions for Web application developers
o ASP interview questions
o Web tester interview questions
o x86 interview questions
o Web designer interview questions
o Interview questions for Oracle database administrator
o MS SQL Server interview questions
o Most common interview questions
o Interview questions for C# developers
o Oracle interview questions
o C# .NET interview questions
o Advanced SAS interview questions
o Interview questions for SAS expert
o Basic SAS interview questions
o C# developer interview questions
o SAS interview questions
o Java Web development interview questions
o EJB interview questions
o Good questions asked during Java interview
o JDBC and JSP interview questions
o Advanced EJB interview questions
o Junior Java programmer interview questions
o Core Java interview questions
o Java interview questions
o Basic Java interview questions
o J2EE EJB interview questions
o J2EE with EJB and Weblogic interview questions
o Interview questions for Business Objects developer
o Interview questions for Java junior developer position
o Data warehouse interview questions
o Java database interview questions
o Java Messaging System interview questions
o Common JSP interview questions
o SQA interview questions
o Java interview questions
o Java GUI designer interview questions
o SQL Server interview questions
o QA engineer interview questions
o Interview questions for network engineer
o Windows admin interview questions
o Network engineer/architect interview questions
o Wireless engineer interview questions
o J2EE interview questions
o Basic VB interview questions
o Basic Java servlet interview questions
o One hundred and twelve SQA interview questions
o Java AWT interview questions
o Load testing SQA interview questions
o Java applet interview questions
o Test automation interview questions
o Microsoft software development engineer in test (SDET) interview
questions
o Microsoft MSN interview questions
o Servlet interview questions
o JDBC interview questions
o Interview questions for Linux admin
o C++ object-oriented questions
o Oracle interview questions
o Oracle DBA interview questions
o Linux admin interview questions
o Software tester (SQA) interview questions
o ASP, ADO and IIS interview questions
o COM interview questions
o ASP.NET DataGrid questions
o Intel interview questions
o Java interview questions
o Software tester interview questions
o PL/SQL interview qiuestions
o C interview questions
o TechInterviews.com will pay you for your interview questions
o SQL interview questions
o Database admin interview questions
o JSP interview questions
o UML interview questions
o Medical management interview questions
o Java interview questions
o A hundred and more good Java interview questions
o Windows code security questions
o C++ gamedev interview questions
o .NET deployment questions
o IT management interview questions
o ASP.NET questions, part 2
o .NET and COM interop questions
o COM/COM+ services and components in .NET
o .NET Windows services development questions
o Microsoft .NET Framework interview questions
o Windows 2000 administration questions
o CCNA/Cisco admin interview questions
o .NET Remoting questions and answers
o A+ and basic PC questions
o Good C++ Interview questions
o Telecommunications interview questions
o Mathematical puzzles for call center interviews
o .NET interview questions - Windows Forms
o C interview questions
o Hardware and software design questions
o Bioinformatics interview questions
o .NET Windows Forms basics
o General programming and IQ questions
o Java networking and algoritms interview questions
o Large collection of Java interview questions
o Java on Oracle interview questions
o Advanced C# interview questions
o Microsoft Win32 interview questions
o C# interview questions
o C# and .NET interview questions
o Microsoft platform and database technologies interview questions
o Java Swing interview questions
o .NET framework programming interview questions
o ASP.NET interview questions
o Microsoft Windows programming interview questions
o VB 6, COM, DCOM, Microsoft platform interview questions
o RF and radio engineering interview questions
o Microsoft interview questions
o Computer architecture and design interview questions
o Embedded systems interview questions
o Unix sysadmin interview questions
o SQL Server, DBA interview questions
o Networking and protocols interview questions
o Java interview questions
o Programming puzzles, riddles and interview problems
o Web and basic programming interview questions
o Java and Perl Web programming interview questions
o Networking interview questions
o Network programming interview questions
o Java software engineering interview questions
o C++ code examples for job interviews
o C++ interview questions, some Java
o Unix/Linux programming interview questions
o Unix/Linux administration interview questions
o Networking and Unix interview questions
o JSP interview questions
o Java and networking interview questions
o Advanced enterprise Java interview questions
o Advanced Java interview questions
o C++ object-oriented interview questions
o Java Web programming interview questions
o VLSI and hardware engineering interview questions
o C++ algorithms interview questions from Microsoft and IBM
o C++ object-oriented interview questions
o C++ networking questions
o Basic Java interview questions
o Database management interview questions
o C++ algorithm specific interview questions
o Basic C++ interview questions
o Hardware design interview questions
o Windows Server 2003 IIS and Scripting interview questions
o Windows Server 2003 Active Directory and Security questions
o Windows Server 2003 interview and certification questions
o C++ coding interview questions
o Advanced C++ and STL interview questions
o C++ programming on UNIX platforms
o Basic C++ and UNIX OS programming
o ASP.NET questions, part 1
o Visual Basic

Ads

Interview advice
o 5 questions that mean you’re not getting hired
o What’s the craziest thing your co-worker has done?
o How to survive a panel interview
o Most important part of the job interview
o How to conduct a phone interview
o 9 sites for interview prep
o Detailed description of Google interview process
o Stupid programming interviews
o 7 rules for resumes and interview
o 4 tips for talking during job interview
Amazon suggestions

Code samples
o Oracle: list of the system events
o Oracle: list of the running transactions
o Oracle: sql types
o Oracle: wait statisics by block class
o Using the clipboard in WSH
o Oracle: check the existance of logon/logoff triggers
o Unix shell: workaround for loop problem
o JavaScript: edit web page in browser
o Oracle: redo log switches by date
o JavaScript: Soundex implementation
o Dynamic image resizing in PHP
o Oracle: usage of the tablespaces (permanent and temporary)
o AppleScript: rotate mov file in QuickTime Pro
o Oracle: plan of the running query
Users' questions
 Shoutbox And Comment Box , So Easy But Yet So Hard?
 How To Post In Pages In Wordpress ?
 Could Someone Tell Me How To Burn Music On CD, And Is
There A Specific Kind Of CD Or DVD Im Suppose To Use?
 My Laptop Is Running Xp Home Can I Run Windows 98 From
The Same Hard Drive How Can I Do This?
 What Does A Scale Tool Look Like, And Where Can I Find It On
Gimp. Is It Under Tools Or Layers.?
 How Can I Record My DVDs Onto The Computer So I Can Work
On It On MovieMaker?
 Help Me In Writing An Introduction On A Graphic Design
Company Makin A Site For A Fashion Designer?
 Windows Media Player 11 Help Please.?
 My Laptop (Dell Inspiron) Only Works When Its Plugged Into The
Wall No Matter How Long I Charge It.?
 HELP!!!! Why Wont Allegro Work?
 Dreamweaver Help Please.... I Want To Upload My Site And I
Need Some Help?
 How Do You Make This On Paintshop?
 Where Can I Download Free PHP &Amp; MYSQL Ebooks?
 What Is The Easiest And Best Way To Set Up Your Own Website
For Free?
 Kelebihan Windows Me?
 Best Way To Learn SQL And Perl?
 Big Outlook Express Problem?
 Adding Column To Flex Grid?
 Why The Same Web Page Paste To Word And Notepad Has The
Different Behavior. I Maen That To Paste Into Notepad?
 What Is / And This \ Called?
o Online Schools
Resources
o Top paying US jobs
o When a Would-Be Employer Takes Forever to Make an Offer - Don
Masura began interviewing for a job as a career coach for a human-
resources consultancy late last year. He endured four rounds of face-to-
face talks, then stayed in touch with interested executives.
o 10 Ways Your Resume Irks Hiring Managers - Fashion designer Coco
Chanel had a personal rule: Before she left the house, the style icon always
removed one piece of her ensemble to avoid the faux-pas of wearing too
many accessories. Were Chanel alive today and working as a hiring
manager, she would
o Write your resume in an hour
o International phone cards - call India, Russia, Canada, and other countries
on the cheap
o Seven tips for writing an online profile for LinkedIn, MySpace or
Facebook - Haven’t posted a MySpace or other Web page? You may yet
be pulled into online profiles — at work. A growing number of employers
are encouraging or requiring professionals to post brief biographies on
corporate intranet sites as well as companies’ consume
o Is a Job Move Worth It? - Two years ago, then 28-year-old Valerie French
experienced a culture clash when she moved from southern California to
Washington, D.C., to work at a major art museum. “I loved my job, but I
just hated living there,” she says. She found the nation’s capita
o Classic Computer Science Puzzles - I prefer to think of programming
languages as utilitarian tools for real world problems. They let me
accomplish pragmatic (and often prosaic) goals. PHP is about as unsexy a
language as you’ll ever find, but does that matter when it’s the technology
drivi
o 6 salary secrets
o Signs you have a great job … or not
o Just One Job? Three Tips For Creating a Broad Resume - You’ll likely
need to do more than just flesh out your job history to hook hiring
managers. They may wonder about your skills, motivation and ability to
adjust to a new work environment, says Tom Morgan, vice president of
Pencom Systems Inc., an executive
o MSDN C# FAQ
o Video surveillance
o How to get an international job - Zero in on your chosen field, then seek
out global employers. Beware of agencies that promise to get you a job for
a fee.
o Posting Your Resume on YouTube To Stand Out From the Competition -
Though the practice is still in its early stages, young job hunters are
starting to make a video clip part of their job application, sometimes even
posting them on sites like Google Inc.’s YouTube and Google Video.
Jobster.com, a Web site for job seekers,
o Weird Interview Questions - Career experts advise job applicants to
rehearse answers to common questions ahead of the interview. But what’s
a job seeker to do when asked an oddball query like: “What is your
perception of the painting in the lobby?”
o 10 dumbest resume blunders - Having trouble finding a new job? Cheer
up. When it comes to resumes, a new survey reveals just how clueless
some of your competition is.
o Crash course in interview preparation
o Tips for Negotiating a Raise - Employers in the U.S. are budgeted to give
raises averaging 3.9% in 2007, according to a recent study by World at
Work, a nonprofit association. This is up from 2003 and 2004, when
increases hit an all-time low of 3.6 percent.
o Weeding out bad employers
o Wacky Ways to Land a Job - Sometimes you need a little ingenuity and
moxie to set yourself apart from the rest to land that job offer. Here are
some successful (and not so successful) examples of unusual tactics used
by bright-eyed, first-time job-seekers hoping to launch their car
o Trim the fat from your resume
o Why Silicon Valley Firms Are Rethinking the Cubicle - The chip maker,
emulating experiments at companies such as Cisco Systems Inc. and
Hewlett-Packard Co., is planning tests in three U.S. locations of new
office layouts. Plans include tables where several users can plop down
with laptop computers, multiwork
o Niniane Wong’s preparing for a software interview
o C# FAQ
o Trucking companies - get free quotes for trucking companies in the USA
o 10 dumbest job-interview moves - Don’t bring mom to the job interview,
warns Fortune’s Anne Fisher. Here are some of the goofiest things job
seekers have done when meeting hiring managers.
o How to apply for a job abroad - Dreaming about a job abroad? Or maybe
your spouse is transferring overseas, and you’re scouting career options.
When applying to employers abroad, you’ll need a curriculum vitae (CV)
— the job hunter’s document used outside of the U.S. that corresponds t
o How to dance around the salary-expectation question - Don Sutaria,
president and founder of CareerQuest, a staffing and training firm, advises
job seekers to avoid offering a solid figure. “Don’t answer the question.
Say, ‘I’ll expect the fair market value. Make me an offer and we can
discuss it.’ Or, ‘Maybe
o ASP Free
o Proper body language for a job interview - No matter what a job candidate
might say, using the wrong body language can make them appear
disinterested or even deceitful to recruiters.
o How to Answer These Tricky Interview Questions - Does the thought of
going on a job interview cause your palms to sweat and your body to
break out in hives? Stop itching; you’re not alone.
o What makes a resume scream: Don’t hire me
o .NET Framework FAQ
o Young employees can have a hard time asking for time off - Scheduling a
vacation can generate particular angst for younger workers. Eager to make
a good impression on co-workers and bosses, many young people fret
about using all their vacation time. They haven’t figured out what’s
acceptable and don’t want to pus
o Job tips for new grads
o Nine Steps to Acing a Job Interview - Don’t wait until the end to ask good
questions. What’s the point? You just spent the whole interview telling the
person you’re right for the job — it’s a little late to be asking questions
about the job, right? So ask your questions at the beginning. And
o Mind Readers Wanted? - I started a challenging job. My boss has been
vague, and during my first week, she didn’t assign anything or say what
she expects. She prefers instant messaging to face-to-face meetings, but
doesn’t even respond quickly to this. How do I succeed with such
o How Can I Quell Jitters durting job interviews - I left my company three
years ago and now I need to find a new job. The problem is that I become
overwhelmed with anxiety during interviews and I miss what’s being said.
What can I do?
o Ten Tips for a (Slightly) Less Awful Resume - Resume screening is just
pattern matching. People are trying to figure out if you have the skills
they’re looking for. If they could do this reliably without human
intervention, so much the better. Screeners will like your resume best if
it’s easy to scan
o Tech interviews India
o How to pass your yearly review - With all the distractions the end of the
year brings, it’s easy to neglect your day-to-day work. But this might be
the most important time of year to focus on your job and your career.
Many organizations hold year-end performance reviews, and acing them i
o C++ Primer
o Job interviews inside Second Life - Some employers are experimenting
with Second Life, the online virtual community owned by San Francisco-
based Linden Lab, to screen prospective hires. The program allows job
seekers to create a computer-generated image to represent themselves —
known as a
o VB 2005 FAQ
o Best Web Host
o 10 mistakes managers make during job interviews - Conducting effective
interviews requires a balance of instinct, insight, and some solid
preparation. It also helps if you don’t make certain blunders, such as
monopolizing the conversation, asking leading questions, or applying too
much (or too little) pr
o Collector cars
o How to ace your job interview - 88 tips
o Tips for Creating a Resume That Downplays Job Hopping
o How to Explain a Short Stint On Your Resume to Interviewers - I’m an
attorney in the financial-services industry with a good 11-year track record
at my previous employer. I’ve been at a new job for six months and I can
see that I’ve made a mistake. The role and duties aren’t what I was told,
and my supervisor is an
o Promotional products
o Worried About Getting Laid Off? - Yet a study called “Middle Class in
Turmoil,” released last year by the Center for American Progress, noted
that just 18.3% of middle-class families (defined as those with annual
household incomes ranging from $18,500 to $88,030) had accumulated
wealth e
o Five Resume Tips for When You Can List Only One Employer - When
you’ve worked at only one employer for your whole career, writing a
resume that wins interviews may be no easy task. The reason: Some hiring
managers and recruiters may take a dim view of your single-company job
history. While you might see signs of
o How to keep cool during an interview - I’ve been job interviewing for
three years without success. I become anxious and the feeling can be
overwhelming. Please help.
o Job Seekers: Put Your Web Savvy to Work - Whether seeking career
advancement or scrambling in response to job cuts like those hitting the
mortgage industry, many workers are hunting for new jobs.
o Bjarne Stroustrup’s C++ Style and Technique FAQ
o 6 common interview questions
o Refurbished notebooks
o Career blog @ MSFT
o Getting the Most Out of Each Employee - Learning how to deal with
different working styles is a sure way to improve productivity.
o Deals on PCs
o Small business interview questions
o 100 Resources to Attract, Retain and Utilize Rock Star Programmers -
There are plenty of programmers out there, but rock star programmers?
They are few and far between. Learn how to locate these gems and keep
them happy with the resources below.
o Fatal mistakes when starting a new job
o The Five Essential Phone-Screen Questions - In an effort to make life
simpler for phone screeners, I’ve put together this list of Five Essential
Questions that you need to ask during an SDE screen. They won’t
guarantee that your candidate will be great, but they will help eliminate a
huge number of
o How to handle short-term jobs on your resume
o Affordable life insurance
o Stupid interview questions - from Business Week
o How to Pinpoint Accomplishments That Will Make Your Resume Shine -
Listing your job responsibilities on a resume may get you on an
employer’s job-candidate roster, but if you note some solid
accomplishments as well, you may be able to make the jump onto a
recruiter’s short list. Terry Gallagher, president of Battalia Win
o Interview@MSFT
o Overcoming Resume Red Flags Related to Multiple Job Losses - I’ve lost
three jobs during the past few years due to downsizings and staff
reductions. None of these terminations were performance-related. How
should I describe my work history on a resume and in interviews so
employers understand the situation?
o Free Flash games
o Cheat sheets
o Five Tips for Resumes When You Can List Only One Employer - When
you’ve worked at only one employer for your whole career, writing a
resume that wins interviews may be no easy task. The reason: Some hiring
managers and recruiters may take a dim view of your single-company job
history. While you might see signs of
o What’s your biggest weakness?
o Top resume mistakes - During the initial screening, the employment
professional is alert for factors that will immediately eliminate a candidate
from further consideration. These knockout factors invariably mean sure
death to a person’s candidacy

You might also like