Skip to main content

ICT Resources Notes

ICT Resources Notes

Click here for download 






ICT  Question Paper
Network Administration:-
Windows NT: Its Windows New Technology. Its a network operating system that provide the feature of data sharing, communication, resource sharing and other services. Its a multi user and multi tasking operating system. Windows NT is available in to two version:
1. Windows NT Server
2. Windows NT Workstation
The Windows NT Server is used for design the server and Windows NT Workstation is use for Clients computers. It provide the GUI looks for working. It provide strict security.
Window NT support following protocol
1. RIP:- Routing Information Protocol
2. OSPF :- Open Shortest Path First
---------------------------------------------------------------------------------------------------------
 In Windows NT use workgroup for store the setup records.

In Windoes NT two types of accounts is created.
1. Administrator :- It provide the full access priviliges.
2. Guest:- Limited access priviliges
--------------------------------------------------------------------------------------------------------

Files sharing in Windows NT:- File sharing is use for share the files on the network. Sharing is allowing access of files to others on the networks. There are different types of sharing:-
1. Full Control
2. Permission for read
3. Read:- user can view the contents of the share, read files and run program

 Some tools of Windows NT.
1. NetBios:- It is a program that communicate within local network using different computer.
2. NETBEUI :- Advance version of netBios that control unlocated computer communication.
3. KERBEROS:- it a protocol that allow to communicate jthe computer over non secure protocol.
4. NSLOOKUP:- It is use for troubleshoot the DNS problems. Like Resolution of host address
5. NTLDR:- It is an importent file in computer because it handle the booting files in computer.

NTLDR File Missing Causes

1. Computer is booting form non bootavle access.
2. NTLDR related files is missing.
3. The bootable volume has its active partition set incorrectly.
4. Wrong boot sector code is installed
5. To many files in boot sector.

Comments

Post a Comment

Popular posts from this blog

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...