Sie sind auf Seite 1von 28

Operating System Interview Question and Answer

1. What is an operating system?

An operating system is a program that acts as an intermediary between the user


and the computer hardware. The purpose of an OS is to provide a convenient
environment in which user can execute programs in a convenient and efficient
manner. It is a resource allocator responsible for allocating system resources
and a control program which controls the operation of the computer hardware.

2. Why paging is used?

Paging is solution to external fragmentation problem which is to permit the


logical address space of a process to be non-contiguous, thus allowing a process
to be allocating physical memory wherever the latter is available.

3. Explain the concept of the batched operating systems?

In batched operating system the users gives their jobs to the operator who sorts
the programs according to their requirements and executes them. This is time
consuming but makes the CPU busy all the time.

4. What is purpose of different operating systems?

The machine purpose workstation individual usability &resources utilization


mainframe optimize utilization of hardware PC support complex games,
business application Hand held PCs Easy interface & min. power consumption.

5. What is virtual memory?

Virtual memory is hardware technique where the system appears to have more
memory that it actually does. This is done by time-sharing, the physical
memory and storage parts of the memory one disk when they are not actively
being used.

6. What is Throughput, Turnaround time, waiting time and Response time?

Throughput : number of processes that complete their execution per time unit.

Turnaround time : amount of time to execute a particular process.

Waiting time : amount of time a process has been waiting in the ready queue.

Response time : amount of time it takes from when a request was submitted until the firstresponse is produced,
not output (for time-sharing environment).
Operating System Interview Question and Answer

7. What are the various components of a computer system?

§ The hardware

§ The operating system

§ The application programs

§ The users.

8. What is a Real-Time System?

A real time process is a process that must respond to the eventswithin a certain
time period. A real time operating system is an operating system that can run
realtime processes successfully.

9. Explain the concept of the Distributed systems?

Distributed systems work in a network. They can share the network


resources,communicate with each other.

10. What is SCSI?

SCSI – Small computer systems interface is a type of interface used for


computer components such as hard drives, optical drives, scanners and tape
drives. It is a competing technology to standard IDE (Integrated Drive
Electronics).

11. What is a sector?

Smallest addressable portion of a disk.


12. What are the different operating systems?

§ Batched operating systems

§ Multi-programmed operating systems

§ Timesharing operating systems

§ Distributed operating systems

§ Real-time operating systems.

13. What is busy waiting?

The repeated execution of a loop of code while waiting for an event to occur is
called busy waiting.

14. What are system calls?

System calls provide the interface between a process and the operating system.
System calls for modern Microsoft windows platforms are part of the win32
API, which is available for all the compilers written for Microsoft windows.

15. What are various scheduling queues?

§ Job queue

§ Ready queue

§ Device queue

16. What are java threads?

Java is one of the small number of languages that support at the language level
for the creation and management of threads. However, because threads are
managed by the java virtual machine (JVM), not by a user-level library or
kernel, it is difficult to classify Java threads as either user- or kernel-level.

17. What are types of threads?

§ User thread

§ Kernel thread

18. What is a semaphore?

It is a synchronization tool used to solve complex critical section problems. A


semaphore is an integer variable that, apart from initialization, is accessed only
through two standard atomic operations: Wait and Signal.

19. What is a deadlock?

Deadlock is a situation where a group of processes are all blocked and none of
them can become unblocked until one of the other becomes unblocked. The
simplest deadlock is two processes each of which is waiting for a message from
the other.

20. What is cache memory?

Cache memory is random access memory (RAM) that a computer


microprocessor can access more quickly than it can access regular RAM. As the
microprocessor processes data, it looks first in the cache memory and if it finds
the data there (from a previous reading of data), it does not have to do the more
time-consuming reading of data.

21. What is thrashing?

It is a phenomenon in virtual memory schemes when the processor spends most


of its time swapping pages, rather than executing instructions. This is due to an
inordinate number of page faults.

22. What are the states of a process?

§ New

§ Running

§ Waiting

§ Ready

§ Terminated

23. What is a binary semaphore?

A binary semaphore is one, which takes only 0 and 1 as values. They are used
to implement mutual exclusion and synchronize concurrent processes.

24. What is a job queue?

When a process enters the system it is placed in the job queue.

25. What is a ready queue?

The processes that are residing in the main memory and are ready and waiting
to execute are kept on a list called the ready queue.

26. What are turnaround time and response time?

Turnaround time is the interval between the submission of a job and its
completion.
Response time is the interval between submission of a request, and the first
response to that request.

27. What are the operating system components?

§ Process management

§ Main memory management

§ File management

§ I/O system management

§ Secondary storage management

§ Networking

§ Protection system

§ Command interpreter system

28. What is mutex?

Mutex is a program object that allows multiple program threads to share the
same resource, such as file access, but not simultaneously. When a program is
started a mutex is created woth a unique name. After this stage, any thread that
needs the resource must lock the mutex from other threads while it is using the
resource. the mutex is set to unlock when the data is no longer needed or the
routine is finished.

29. What is Marshalling?

The process of packaging and sending interface method parameters across


thread or process boundaries.

30. What are residence monitors?

Early operating systems were called residence monitors.

31. Why thread is called as a lightweight process?

It is called light weight process to emphasize the fact that a thread is like a
process but is more efficient and uses fewer resources( n hence “lighter”)and
they also share the address space.

32. What are operating system services?

§ Program execution

§ I/O operations

§ File system manipulation

§ Communication

§ Error detection

§ Resource allocation

§ Accounting

§ Protection

33. What is a process?

A program in execution is called a process. Or it may also be called a unit of


work. A process needs some system resources as CPU time, memory, files, and
i/o devices to accomplish the task. Each process is represented in the operating
system by a process control block or task control block (PCB).Processes are of
two types

34. What are the different job scheduling in operating systems?

Scheduling is the activity of the deciding when process will receive the
resources they request.
FCFS —> FCSFS stands for First Come First Served. In FCFS the job that has
been waiting the longest is served next.

Round Robin Scheduling—>Round Robin scheduling is a scheduling method


where each process gets a small quantity of time to run and then it is preempted
and the next process gets to run. This is called time-sharing and gives the effect
of all the processes running at the same time

Shortest Job First —> The Shortest job First scheduling algorithm is a nonpreemptive scheduling algorithm
that chooses the job that will execute the shortest amount of time.

Priority Scheduling—>Priority scheduling is a scheduling method where at all times the highest priority
process is assigned the resource.
35. What is dual-mode operation?

In order to protect the operating systems and the system programs from the
malfunctioning programs the two mode operations were evolved

36. What is a device queue?

A list of processes waiting for a particular I/O device is called device queue.

37. What are the different types of Real-Time Scheduling?

Hard real-time systems required to complete a critical task within a guaranteed


amount of time.
Soft real-time computing requires that critical processes receive priority over
less fortunate ones.

38. What is starvation ?

Starvation is a resourcemanagement problem where a process does not get the


resources it needs for a long time because the resources are being allocated to
other processes.

39. What is a long term scheduler & short term schedulers?

Long term schedulers are the job schedulers that select processes from the job
queue and load them into memory for execution.
The Short term schedulers are the CPU schedulers that select a process form
the ready queue and allocate the CPU to one of them.

40. What is fragmentation?

Fragmentation occurs in a dynamic memory allocation system when many of


the free blocks are too small to satisfy any request.

41. What is context switching?

Transferring the control from one process to other process requires saving the
state of the old process and loading the saved state for new process. This task is
known as context switching.

42. What is relative path and absolute path?

Absolute path— Exact path from root directory.

Relative path— Relative to the current path.


43. What are the disadvantages of context switching?

Time taken for switching from one process to other is pure over head. Because
the system does no useful work while switching. So one of the solutions is to go
for threading when ever possible.

44. What is the state of the processor, when a process is waiting for some event
to occur?

Waiting state

45. What is the difference between Primary storage and secondary storage?

Main memory – only large storage media that the CPU can access directly.

Secondary storage – extension of main memory that provides large nonvolatile storage capacity.

46.

What is process synchronization?

A situation, where several processes access and manipulate the same data concurrently and the outcome of the
execution depends on the particular order in which the access takes place, is called race condition. To guard
against the race condition we need to ensure that only one process at a time can be manipulating the same data.
The technique we use for this is called process synchronization.

47. What is a data register and address register?

Data registers – can be assigned to a variety of functions by the programmer.


They can be used with any machine instruction that performs operations on
data.
Address registers – contain main memory addresses of data and instructions or
they contain a portion of the address that is used in the calculation of the
complete addresses.

48. What are deadlock prevention techniques?

§ Mutual exclusion

§ Hold and wait

§ No preemption

§ Circular wait
49. What is the difference between Complier and Interpreter?

An interpreter reads one instruction at a time and carries out the actions implied
by that instruction. It does not perform any translation. But a compiler translates
the entire instructions.

50. What is a Safe State and what is its use in deadlock avoidance?

When a process requests an available resource, system must decide if


immediate allocation leaves the system in a safe state. System is in safe state if
there exists a safe sequence of all processes. Deadlock Avoidance : ensure that a
system will never enter an unsafe state.

51. What is the difference between microkernel and macro kernel?

Micro-Kernel : A micro-kernel is a minimal operating system that performs


only the essential functions of an operating system. All other operating system
functions are performed by system processes.
Monolithic : A monolithic operating system is one where all operating system
code is in a single executable image and all operating system code runs in
system mode.

52. What is DRAM?

Dynamic Ram stores the data in the form of Capacitance, and Static RAM
stores the data in Voltages.

53. What are the different functions of Scheduler?

Scheduler deals with the problem of deciding which of the process in the ready
queue is to be allocated the CPU. Short Term Schedulers, Long Term
Schedulers

54. What is a trap and trapdoor?

Trapdoor is a secret undocumented entry point into a program used to grant


access without normal methods of access authentication. A trap is a software
interrupt, usually the result of an error condition.

55. What are local and global page replacements?

Local replacement means that an incoming page is brought in only to the


relevant process’ address space. Global replacement policy allows any page
frame from any process to be replaced. The latter is applicable to variable
partitions model only.
56. What is cache-coherency?

In a multiprocessor system there exist several caches each may containing a


copy of same variable A. Then a change in one cache should immediately be
reflected in all other caches this process of maintaining the same value of a data
in all the caches s called cache-coherency.

57. What are the benefits of multithreaded programming?

§ Responsiveness

§ Resources sharing

§ Economy

§ Utilization of multiprocessor architectures.

Top Interview Questions for a Desktop Support Engineer (Microsoft) Position:

All of the questions below are very common and must be prepared for before facing any interview for a
Desktop Support or Windows Administration Engineer position.

Q: Which Windows OS are you most comfortable with?

A: This is a very basic question and you can prepare your answer by researching which OS version is used by
the company you’re applying in. Be sure to do a little reading on the systems you are familiar with, so you can
showcase your skills.

Q: Why do we use DHCP?

A: Dynamic Host Configuration Protocol (DHCP) is used to assign dynamic IP addresses to network devices,
allowing them to have a different IP address each time they are connected to the network.

Q: What is DNS and why do we use it on workstations?

A: The Domain Name System (DNS) is used to resolve human-readable hostnames like
www.intenseschool.com into machine-readable IP addresses like 69.143.201.22. The DNS address is
configured on workstations. Windows redirects all domain names to resolve into IP addresses.

Q: What is a default gateway? What happens if I don’t have one?

A: A default gateway is a routing device used to forward all traffic that is not addressed to a destination within
the local network or local subnet. If you don’t have a default gateway, it is not possible to communicate with the
network device/host of different networks. Dial-up internet connections do not require a default gateway though
because it is present in the ISP itself.

Q: How do I find the path that a packet takes to its destination?

A: Using “tracert” command lets you see the path travelled by a packet to its destination.
Q: What is the use of Safe Mode? When should we use it in Windows?

A: Often, we have to start Windows in Safe Mode in order to remove spyware or for troubleshooting driver
problems and other diagnostic purposes. Only specific programs and files with limited driver support are needed
to run the operating system. This will allow you to attempt to remove viruses, change bad drivers and perform
other diagnostic tasks that cannot be done in Normal Mode.

Q: How do I start in Safe Mode?

A: Method 1: Reboot the computer. Start pressing the F8 key as soon as your system starts to boot. This will
open multiple boot options including Safe Mode.

Method 2: Open Run, type “msconfig” and press Enter. A system configuration window will pop up; now go to
the Boot tab, check the “Safe boot” box and select “Minimal” for a typical safe boot. Click Apply and your
computer will boot into Safe Mode the next time it restarts.

Q: What is the use of the BOOT.ini file?

A: Boot.ini files are required in booting Windows operating systems, starting with Windows NT. The boot.ini
file also provides flexibility for dual booting multiple operating systems on the same computer.

Q: How do I edit my Boot.ini?

A: From Windows:

Open Run, type “msconfig” and press Enter to open System Configuration Utility. Select the tab labelled
BOOT.INI. Click the button labelled Check All Boot Paths. A dialog box will open detailing the location of any
invalid operating system locations.

Q: Which command is used to check IP configuration?

A: You can use ipconfig /all to display all of the current TCP/IP configuration values, including the IP address,
subnet mask, default gateway, and Windows Internet Naming Service (WINS) and DNS configurations.

Q: How can I make my hard disk dynamic?

A: Go to Run then type diskmgmt.msc. After that, right click on hard disk to convert a basic disk to dynamic
disk.

Note: You should be logged in with an administrator account.

Q: What is the blue screen of death?

A: A Blue Screen error is mainly due to hardware or software incompatibility within the system. The most
common reasons for a Blue Screen of Death (BSD) are unwanted software installation, high CPU usage and
faulty RAM. Try the following options.

1. Pull out the RAM card, rub it with rubber on the chip side, and re-insert.

2. If a BSD still occurs, try using that RAM on another system.

3. Every BSD has a unique code; try searching it on Google to find a solution.
Q: What are some common sources of computer viruses and how can you prevent being infected?

A: Some common sources are Internet downloads, email attachments, and infected CDs/DVDs. You can use
trusted anti-virus software and update it regularly. Make sure it checks every file on the computer. Backup your
system periodically in case a major infection occurs, and be aware of all software and programs that run on your
computer. Never click a suspicious link or download a suspicious file.

Q: Describe some commonly used LAN cables. What is the maximum length of LAN cable for proper
communication?

A: There are mainly two types:

1. Cat 5 (Category 5 where 5 indicates twists per inch) & Cat 5e (5e indicates 5 twists per inch per pair
which leads to reduced cross talk). Both Cat 5 & 5e are UTP cables that can support up to 100 Mbps.

2. Cat 6 & 6e are UTP cables that can support up to 1 Gbps.

After about 80 meters (260 feet), you will usually see a reduction in speed.

Q: Windows cannot currently check for updates; what could be the possible reasons?

A: There could be two possible reasons:

1. Missing/corrupted files

2. Update services down

Method 1: Contact Microsoft: http://support.microsoft.com/mats/windows_update/

Method 2: Please follow the steps below:

a. Go to Run, type “services.msc” without quotes and press Enter.

b. Locate Windows Update.

c. Right click on Service and select Properties.

d. In Start-up type, select Enable.

e. Click Start under Service status.

f. Click OK.

Q: What is the SysWOW64 folder?

A: It is normally found in a 64-bit OS, for example 64bit Win7. This folder is very similar to the system32
folder of the 32-bit OS.

Q: What do you mean by NTLDR Error?

A: NTLDR is known as the Network Loader. It helps in loading the operating system. If any system is showing
“NTLDR is missing” then you need to copy the NTLDR file from operating system CD.
Hardware and Networking Interview Questions with Answers...

---------------------------------------------------------------------------------

Explain hidden shares. How do they work?

idden or administrative shares are share names with a dollar sign ($) appended to their names. Administrative
shares are usually created automatically for the root of each drive letter. They do not display in the network
browse list.

Name of seven layers in Open System Interconnection model.

They are Application, Presentation, Session, Transport, Network, Data link, and Physical.

What is the difference between ARP and RARP?

The address resolution protocol (ARP) is used to associate the 32 bit IP address with the 48 bit physical address,
used by a host or a router to find the physical address of another host on its network by sending a ARP uery
packet that includes the IP address of the receiver.
The reverse address resolution protocol (RARP) allows a host to discover its Internet address when it knows
only its physical address.

What is Client/Server?

Clients and Servers are separate logical entities that work together over a network to accomplish a task. Many
systems with very different architectures that are connected together are also called Client/Server.

What is MAC address?

It is the 48 bit hardware address of LAN card. MAC address is usually stored in ROM on the network adapter
card and it is unique.

What are the perquisites to configure server?

 LAN card should be connected:

 Root (partition on which window is installed) should in NTFS

 Server should be configured with a static IP address

How we will configure ADS?

Start ==> RUN ==> DCPROMO

How will you test LAN card?

Ping 127.0.0.1
If getting reply its fine

What are the difference between DOMAIN and WORKGROUP?

Workgroup:-
(i)Every PC is responsible for its security own.
(ii)No centralize administration
(iii)Main aim to save hardware recourse
(iv)Best suite in school, training institute, cyber café
Domain: -
(i)Server is responsible for data safety.
(ii)Centralize administration
(iii)Main aim is to secure data
(iv)Best suite in company environments

Which command is used to check the IP address of your system?

ipconfig

Which set wizard will run to do peer to peer networking in XP?

Small home and office setup wizard

Which command is used to check the physical connectivity between two computers?

Ping

What is map drive?

A special feature that will map network resource to my computer.

What is Proxy Server?

Most large businesses, organizations, and universities these days use a proxy server. This is a server that all
computers on the local network have to go through before accessing information on the Internet. By using a
proxy server, an organization can improve the network performance and filter what users connected to the
network can access.

Which folder contains ADS installed on server?

NTDS

What is the full form of Internet?

International Networking

Which are the bootable files of 98 and XP ?

In windows98 it is command.com
In XP it is NTLDR

In which partition Linux is installed ?.

Linux doesn’t support windows file system that contain partition scheme. It (Linux) has its own file system
known as ext2, and ext3. it will install only on it.In linux file system it will install on / (root) partition.

What is size of SWAP ?


It’s the hard disk space that is used as RAM for fast processing. In window it’s known as virtual memory and
could be set as per retirement via this path
My Computer ==> properties ==> advance
In Linux it’s known as SWAP space and generally taken the double size of physical RAM For example if you
have 256 (MB) DDR physical ram then swap space would be 512 MB.

What is full form of C.M.O.S ?

Complementary metal oxide semiconductor

How will you check ip address without using network place ?

Start ==> Run ==> Command ==>ipconfig

What is IP?

Internet Protocol (IP) is an unreliable, best effort delivery, connection-less protocol used for transmitting and
receiving data between hosts in a TCP/IP network

What are the difference between hub and switch?

Hub is a layer 1 device. It will out the signal from all of its port except the one from where its insert. It is
unable to detect the collision. It works on single collision and single broadcast domain.
Switch is layer 2 device. It maintains a CAM table that store the MAC address of devices attached on its port.
CAM table is used to make the forwarding decision. It works on per port collision and single broadcast domain.

What is layer?

Layer is a completely logical partition of PDU (protocol data unit) process. That define how the information is
travel form one computer to other over the network.

What is TCP/IP?

It is combination of two protocols TCP and IP. It is used for reliable data transfer.

What is operating system?

An operating system (sometimes abbreviated as "OS") is the program that, after being initially loaded into the
computer by a boot program, manages all the other programs in a computer. It provides a platform to
application software.

What is package software?

The collection of mostly used software released in package Form Company. For Example Ms-Office that
contain word, power point, Excel, etc.

Full form of .co.in, .com

 COM - ".com" stands for "commercial".

 NET - ".net" stands for "network"

 ORG - ".org" stands for "organization"


 INFO - ".info" stands for "information"

 BIZ - ".biz" stands for "business".

 IN - 'IN' stands for India. The 'IN' is a 2-letter country code for India.

What is ring topology?

In a ring topology, device one connects to device two, device two connects to device three, and so on to the last
device, which connects back to device one.

Which cable is used in LAN?

Generally coaxial and TP media is used in LAN networking.

What are Difference between STP and UTP?

STP cable is mostly used by IBM; it has an extra cover over each pair.
UTP cable is used in star topology. It has a single cover over all pair.

Full form of ping.

PING stand for Packet Internet Grouper

What are the minimum requirements for xp installation?

64MB RAM
1.5GB free HDD space
233MHz minimum processor.

What are 10Base2, 10Base5 and 10BaseT Ethernet LANs?

10Base2— An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband
signaling, with a contiguous cable segment length of 100 meters and a maximum of 2 segments.
10Base5—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband
signaling, with 5 continuous segments not exceeding 100 meters per segment.
10BaseT—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband
signaling and twisted pair cabling.

What is the difference between an unspecified passive open and a fully specified passive open?

An unspecified passive open has the server waiting for a connection request from a client.
A fully specified passive open has the server waiting for a connection from a specific client.

Explain the function of Transmission Control Block

A TCB is a complex data structure that contains a considerable amount of information about each connection.

What is a Management Information Base (MIB)?


A Management Information Base is part of every SNMP-managed device. Each SNMP agent has the MIB
database that contains information about the device's status, its performance, connections, and configuration.
The MIB is queried by SNMP.

What is anonymous FTP and why would you use it?

Anonymous FTP enables users to connect to a host without using a valid login and password. Usually,
anonymous FTP uses a login called anonymous or guest, with the password usually requesting the user's ID for
tracking purposes only. Anonymous FTP is used to enable a large number of users to access files on the host
without having to go to the trouble of setting up logins for them all. Anonymous FTP systems usually have
strict controls over the areas an anonymous user can access.

What is a pseudo tty?

A pseudo tty or false terminal enables external machines to connect through Telnet or rlogin. Without a pseudo
tty, no connection can take place.

What does the Mount protocol do?

The Mount protocol returns a file handle and the name of the file system in which a requested file resides. The
message is sent to the client from the server after reception of a client's request

What is External Data Representation?

External Data Representation is a method of encoding data within an RPC message, used to ensure that the data
is not system-dependent.

When were OSI model developed and why its standard called 802.XX and so on?

OSI model was developed in February1980 that why these also known as 802.XX Standard (Notice 80 means
==> 1980, 2means ==> February)

What is Full form of ADS?

Active Directory Structure

How will you register and activate windows?

If you have not activated windows XP, you can do so at any time by clicking the windows Activation icon in
the system tray to initiate activation. Once you have activated windows XP, this icon disappears from the
system tray.
For registration
Start ==> Run ==> regwiz /r

Where do we use cross and standard cable?

Computer to computer ==> cross


Switch/hub to switch/hub ==>cross
Computer to switch/hub ==>standard

How many pins do serial ports have?


In computer it's known as com port and could be available in 9pin or 25 pin. On router it have 60 pins.

How will check ip address on 98?

Start ==> Run ==> command ==> winipcfg

How will you make partition after installing windows?

My computer ==> right click ==> manage ==> disk management ==>
select free space ==> right click ==> New partition

What is IP?

It's a unique 32 bits software address of a node in a network.

What is private IP?

Three ranges of IP addresses have been reserved for private address and they are not valid for use on the
Internet. If you want to access internet with these address you must have to use proxy server or NAT server (on
normal cases the role of proxy server is played by your ISP.).If you do decide to implement a private IP address
range, you can use IP addresses from any of the following classes:
Class A 10.0.0.0 10.255.255.255
Class B 172.16.0.0 172.31.255.255
Class C 192.168.0.0 192.168.255.255

What is public IP address?

A public IP address is an address leased from an ISP that allows or enables direct Internet communication.

What's the benefit of subnetting?

Reduce the size of the routing tables.


Reduce network traffic. Broadcast traffic can be isolated within a single logical network.
Provide a way to secure network traffic by isolating it from the rest of the network.

What are the differences between static ip addressing and dynamic ip addressing?

With static IP addressing, a computer (or other device) is configured to always use the same IP address. With
dynamic addressing, the IP address can change periodically and is managed by a centralized network service

What is APIPA?

Automatic private IP addressing (APIPA) is a feature mainly found in Microsoft operating systems. APIPA
enables clients to still communicate with other computers on the same network segment until an IP address can
be obtained from a DHCP server, allowing the machine to fully participate on the network. The range of these
IP address are the 169.254.0.1 to 169.254.255.254 with a default Class B subnet mask of 255.255.0.0.

What are the LMHOSTS files?

The LMHOSTS file is a static method of resolving NetBIOS names to IP addresses in the same way that the
HOSTS file is a static method of resolving domain names into IP addresses. An LMHOSTS file is a text file
that maps NetBIOS names to IP addresses; it must be manually configured and updated.
What is DHCP scope?

A scope is a range, or pool, of IP addresses that can be leased to DHCP clients on a given subnet.

What is FQDN?

An FQDN contains (fully qualified domain name) both the hostname and a domain name. It uniquely identifies
a host within a DNS hierarchy

What is the DNS forwarder?

DNS servers often must communicate with DNS servers outside of the local network. A forwarder is an entry
that is used when a DNS server receives DNS queries that it cannot resolve locally. It then forwards those
requests to external DNS servers for resolution.

Which command will you use to find out the name of the pc in networks?

NSLOOKUP [192.168.0.1]
[Ip of target computer]

How will enable sound service in 2003?

By default this service remain disable to enable this service


Start ==> administrative tools ==> service ==> windows audio ==> start up type ==> automatic

How will enable CD burning service in 2003?

By default this service remain disable to enable this service


Start ==> administrative tools ==> service ==> IMAPI CD burning com service ==> start up type ==>
automatic

What do you need to do that your browser will point URL www.example.com to the internal IP address
127.99.11.01?

Make changes in the hosts file in C:\WINDOWS\system32\drivers\etc


The Hosts file is looked at first before going out to the DNS (Domain Name Service) servers. you have to put
the following on new lines at the end of hosts file:
127.99.11.01 example.com
127.99.11.01 www.example.com

What can you suggest to enhance testing process on windows OS?

Put shortcut to notepad.exe in SendTo folder. It is speed up work with different files like hosts, configuration
files. Location of this folder is
C:\Documents and Settings\Default User\sendto.
Open it and create shortcut of notpad.exe

What is FTP?

FTP is short for File Transfer Protocol. This is the protocol used for file transfer over the Internet.

How will you make XP home the client of server 2003?


XP home edition is made only for home purpose so we can’t use it as the client. And same rule apply on
windows vista editions also.

Where do you take back up from?

Click Start, point to All Programs, point to Accessories, point to System Tools, and then click Backup.
Bedside's it?
If OS support then Select Drive ==> properties ==> back up now

What is router?

Router is a device that is used to connect two different networks.

How will you configure ADS?

Start ==> Run ==> DCPROMO


Or
Start==> Configure your server ==> add/Remove a Role

What is ADS?

A central component of the Windows platform, Active Directory service provides the means to manage the
identities and relationships that make up network environments.

What if this wizard (ADS) is not running?

Check the network cable it should be plugged


Check root partition it should be in NTFS
Check IP of server it should be configured statically

How will you add a client to server? /


How’s the client join a domain?
What are the client configurations?

On Server
Configure ADS (for example it’s configured with xyz.com)
On Client
Log in form local administrator account
My Computer ==> Properties ==> Computer Name ==> Change
==>Domain ==>xyz.com ==> username Administrator (of xyz.com)
Password xxxxxxxxxxx (of admin of xyz.com)
Welcome to xyz.com ==> Restart the computer

Does it necessary to use administrator account to configure the client?

Not every time but you are required a properly configured user account in domain controller security policy.

ISO stand for?

International standard organization

OSI stand for?


Open System Interconnection

What is full form DHCP and how will you configure it?

Dynamic host configuration protocol

To configure it on Server
Configure your server ==>Add/Remove a role ==>DHCP server ==>complete the wizard
Start ==> Administrative tools ==> DHCP ==>New scope ==> Wizard
Now authorized this server and do activate it
On client
Local area network ==> tcp/ip ==> obtain ip automatically
Obtain DNS automatically

What is difference between physical and logical topology?

A physical topology describes how devices are physically cabled together.


A logical topology describes how devices communicate across the physical topology

How many types of topology are available?

A point-to-point topology has a single connection between two devices.


In a star topology, a central device has many point-to-point connections to other devices.
A bus topology uses a single connection or wire to connect all devices.
In a ring topology, device one connects to device two, device two connects to device three, and so on to the last
device, which connects back to device one.

How many times computer reboot when server 2000 install?

2 times.

How will you remove this error “ ntldr missing press any key to reboot the system” ?

Reboot the system with XP, ( apply also on server2003,) cd


On setup screen press to R to repair the window
Now provide the administrator password
C:\>cd f:( your cd drive latter, f is taken as the example )
f:\>cd i386
f:\>copy ntldr c:\
f:\>exit
reboot the system

Why do we do networking?

For data sharing


To accumulate hardware resource

What are the benefits of networking?

There are lots of advantages from build up a network, but the three big facts are-
File Sharing
From sharing files you can view, modify, and copy files stored on a different computer on the network just as
easily as if they were stored on your computer.
Resource Sharing
Resources such as printers, fax machines, Storage Devices (HDD, FDD and CD Drives), Webcam, Scanners,
Modem and many more devices can be shared.
Program Sharing
Just as you can share files on a network, you can often also share program on a network. For example, if you
have the right type of software license, you can have a shared copy of Microsoft Office, or some other program,
and keep it on the network server, from where it is also run

What is network?

A network is basically all of the components (hardware and software) involved in connecting computers across
small and large distances.

What is networking?

A process that is describes how the network will connect.

What is topology?

A topology defines how the devices are connected. Further it is divided in physical and logical topology.

What are the differences between FAT and NTFS ?

FAT
Doesn't provide local security Provide local security
Doesn't provide disk quota Provide disk quota
Doesn't provide file compression Provide file compression
Doesn't provide other security feature Provide other security feature

Difference between XP home and XP professional ?

Feature that is not available in XP home edition


Remote Desktop
Off line file and folder
Encrypting file system
Group policy
Roaming profile
Remote installation
Joining Domain
The features listed above are only available in XP professional

Which OSI layer does IP belong?

P belongs to the Network Layer (layer 3) in the OSI model.

What is a subnet mask?

Subnet mask is a 4 byte (32 bit) number used to identify the sub-network ID and the host ID from an IP address.
All the hosts in a sub-network will have the same subnet mask. E.g. 255.255.255.0, 255.255.127.0, 255.255.0.0
Where are the Windows NT Primary Domain Controller (PDC) and its Backup Domain Controller
(BDC) in Server 2003?

The scheme of PDC and BDC is replaced by The Active Directory in server 2000 and further. Now all domain
controllers share a multi master peer-to-peer read and write relationship that hosts copies of the Active
Directory.

How can group policy be refreshed?

1. Restart the server

2. Leave the server ideal for 90 minute

3. Run ==> gpupdate (server 2003 only)

What is LILO?

LILO stands for Linux boot loader. It will load the MBR, master boot record, into the memory, and tell the
system which partition and hard drive to boot from.

I can't seem to access the Internet, don't have any access to the corporate network and on IP
configuration on my address is 169.254.*.*. What happened?

The 169.254.*.* net mask is assigned to Windows machines running 98/2000/XP if the DHCP server is not
available. The name for the technology is APIPA (Automatic Private Internet Protocol Addressing).

We've installed a new Windows-based DHCP server, however, the users do not seem to be getting DHCP
leases off of it.

The server must be authorized first with the Active Directory.

What's the difference between local, global and universal groups?

Domain local groups assign access permissions to domain groups for local domain resources. Global groups
provide access to resources in entire domains.

What's the major difference between FAT and NTFS on a local machine?

FAT and FAT32 provide no security over locally logged-on users. Only native NTFS provides extensive
permission control on both remote and local files.

What is presentation layer and how it is responsible for in the OSI model?

The presentation layer establishes the data format prior to passing it along to the network application's interface.
TCP/IP networks perform this task at the application layer

When were OSI model developed and why its standard called 802.XX and so on?

OSI model was developed in February1980 that why these also known as 802.XX Standard (Notice 80 means
==> 1980, 2means ==> February)

What is Full form of ADS?


Active Directory Structure

How will you register and activate windows?

If you have not activated windows XP, you can do so at any time by clicking the windows Activation icon in
the system tray to initiate activation. Once you have activated windows XP, this icon disappears from the
system tray.
For registration
Start ==> Run ==> regwiz /r

Where do we use cross and standard cable?

Computer to computer ==> cross


Switch/hub to switch/hub ==>cross
Computer to switch/hub ==>standard

How many pins do serial ports have?

In computer it's known as com port and could be available in 9pin or 25 pin. On router it have 60 pins.

How will check ip address on 98?

Start ==> Run ==> command ==> winipcfg

What is source route?

It is a sequence of IP addresses identifying the route a datagram must follow. A source route may optionally be
included in an IP datagram header.

What is RIP (Routing Information Protocol)?

It is a simple protocol used to exchange information between the routers.

What is SLIP (Serial Line Interface Protocol)?

It is a simple protocol used for transmission of IP datagrams across a serial line.

What is Proxy ARP?

It is using a router to answer ARP requests. This will be done when the originating host believes that a
destination is local, when in fact is lies beyond router.

What is OSPF?

It is an Internet routing protocol that scales well, can route traffic along multiple paths, and uses knowledge of
an Internet's topology to make accurate routing decisions.

What is Kerberos?

It is an authentication service developed at the Massachusetts Institute of Technology. Kerberos uses encryption
to prevent intruders from discovering passwords and gaining unauthorized access to files.

What is a Multi-homed Host?


It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a
Multihomed Host.

What is NVT (Network Virtual Terminal)?

It is a set of rules defining a very simple virtual terminal interaction. The NVT is used in the start of a Telnet
session.

What is Gateway-to-Gateway protocol?

It is a protocol formerly used to exchange routing information between Internet core routers.

What is BGP (Border Gateway Protocol)?

It is a protocol used to advertise the set of networks that can be reached with in an autonomous system. BGP
enables this information to be shared with the autonomous system. This is newer than EGP (Exterior Gateway
Protocol).

What is autonomous system?

It is a collection of routers under the control of a single administrative authority and that uses a common Interior
Gateway Protocol.

What is EGP (Exterior Gateway Protocol)?

t is the protocol the routers in neighboring autonomous systems use to identify the set of networks that can be
reached within or via each autonomous system.

What is IGP (Interior Gateway Protocol)?

It is any routing protocol used within an autonomous system.

What is Mail Gateway?

It is a system that performs a protocol translation between different electronic mail delivery protocols.

What is wide-mouth frog?

Wide-mouth frog is the simplest known key distribution center (KDC) authentication protocol.

What is silly window syndrome?

It is a problem that can ruin TCP performance. This problem occurs when data are passed to the sending TCP
entity in large blocks, but an interactive application on the receiving side reads 1 byte at a time.

What is region?

When hierarchical routing is used, the routers are divided into what we call regions, with each router knowing
all the details about how to route packets to destinations within its own region, but knowing nothing about the
internal structure of other regions.

What is multicast routing?

Sending a message to a group is called multicasting, and its routing algorithm is called multicast routing.
What is traffic shaping?

One of the main causes of congestion is that traffic is often busy. If hosts could be made to transmit at a uniform
rate, congestion would be less common. Another open loop method to help manage congestion is forcing the
packet to be transmitted at a more predictable rate. This is called traffic shaping.

What is packet filter?

Packet filter is a standard router equipped with some extra functionality. The extra functionality allows every
incoming or outgoing packet to be inspected. Packets meeting some criterion are forwarded normally. Those
that fail the test are dropped.

BOOTP helps a diskless workstation boot. How does it get a message to the network looking for its IP
address and the location of its operating system boot files?

BOOTP sends a UDP message with a subnet work broadcast address and waits for a reply from a server that
gives it the IP address. The same message might contain the name of the machine that has the boot files on it. If
the boot image location is not specified, the workstation sends another UDP message to query the server.

What is a DNS resource record?

resource record is an entry in a name server's database. There are several types of resource records used,
including name-to-address resolution information. Resource records are maintained as ASCII files.

What protocol is used by DNS name servers?

DNS uses UDP for communication between servers. It is a better choice than TCP because of the improved
speed a connectionless protocol offers. Of course, transmission reliability suffers with UDP.

What is the difference between interior and exterior neighbor gateways?

Interior gateways connect LANs of one organization, whereas exterior gateways connect the organization to the
outside world.

What is the HELLO protocol used for?

The HELLO protocol uses time instead of distance to determine optimal routing. It is an alternative to the
Routing Information Protocol.

What are the three type of routing tables and What are the advantages and disadvantages of these?

The three types of routing tables are fixed, dynamic, and fixed central.
A fixed table must be manually modified every time there is a change.
A dynamic table changes its information based on network traffic, reducing the amount of manual maintenance.
A fixed central table lets a manager modify only one table, which is then read by other devices. The fixed
central table reduces the need to update each machine's table, as with the fixed table. Usually a dynamic table
causes the fewest problems for a network administrator, although the table's contents can change without the
administrator being aware of the change.

What is MAC address ?


The address for a device as it is identified at the Media Access Control (MAC) layer in the network
architecture. MAC address is usually stored in ROM on the network adapter card and is unique.

What is attenuation?

The degeneration of a signal over distance on a network cable is called attenuation.

What is cladding?

A layer of a glass surrounding the center fiber of glass inside a fiber-optic cable.

What is RAID?

A method for providing fault tolerance by using multiple hard disk drives.

What is NETBIOS and NETBEUI?

NETBIOS is a programming interface that allows I/O requests to be sent to and received from a remote
computer and it hides the networking hardware from applications.
NETBEUI is NetBIOS extended user interface. A transport protocol designed by Microsoft and IBM for the
use on small subnets.

What is redirector?

Redirector is software that intercept

What is Beaconing?

The process that allows a network to self-repair networks problems. The stations on the network notify the other
stations on the ring when they are not receiving the transmissions. Beaconing is used in Token ring and FDDI
networks.

What is terminal emulation, in which layer it comes?

Telnet is also called as terminal emulation. It belongs to application layer.

What is frame relay, in which layer it comes?

Frame relay is a packet switching technology. It will operate in the data link layer.

What do you meant by "triple X" in Networks?

The function of PAD (Packet Assembler Disassembler) is described in a document known as X.3. The standard
protocol has been defined between the terminal and the PAD, called X.28; another standard protocol exists
between hte PAD and the network, called X.29. Together, these three recommendations are often called "triple
X".

What is SAP?

Series of interface points that allow other computers to communicate with the other layers of network protocol
stack.

What is subnet?
A generic term for section of a large networks usually separated by a bridge or router.

What is subnet mask?

It is a term that makes distinguish between network address and host address in IP address. Subnet mask value 0
defines host partition in IP address and value 1 – 255 defines Network address.

Describe Various Network Type

Local Area Networks Local area networks (LANs) are used to connect networking devices that are in a very
close geographic area, such as a floor of a building, a building itself, or a campus environment.
Wide Area Networks Wide area networks (WANs) are used to connect LANs together. Typically, WANs are
used when the LANs that must be connected are separated by a large distance.
Metropolitan Area Networks A metropolitan area network (MAN) is a hybrid between a LAN and a WAN.
Content Networks Content networks (CNs) were developed to ease users’ access to Internet resources.
Companies deploy basically two types of CNs:
1.Caching downloaded Internet information
2.Distributing Internet traffic loads across multiple servers
Storage Area Networks Storage area networks (SANs) provide a high-speed infrastructure to move data
between storage devices and file servers.
Advantage
Performance is fast.
Availability is high because of the redundancy features available.
Distances can span up to 10 kilometers.
Management is easy because of the centralization of data resources.
Overhead is low (uses a thin protocol).
Disadvantage of SANs is their cost.
Intranet An intranet is basically a network that is local to a company. In other words, users from within this
company can find all of their resources without having to go outside of the company. An intranet can include
LANs, private WANs and MANs,
Extranet An extranet is an extended intranet, where certain internal services are made available to known
external users or external business partners at remote locations.
Internet An internet is used when unknown external users need to access internal resources in your network. In
other words, your company might have a web site that sells various products, and you want any external user to
be able to access this service.
VPN A virtual private network (VPN) is a special type of secured network. A VPN is used to provide a secure
connection across a public network, such as an internet. Extranets typically use a VPN to provide a secure
connection between a company and its known external users or offices. Authentication is provided to validate
the identities of the two peers. Confidentiality provides encryption of the data to keep it private from prying
eyes. Integrity is used to ensure that the data sent between the two devices or sites has not been tampered with.

Das könnte Ihnen auch gefallen