Posts

Full form of

Full Forms Of::-   Write full form of  : AGP ::- Accelerated Graphics Port AI  ::- Artifical Intelligence ALU  ::- Arithmetic Logic  Unit AOL ::- American Online ARPANET  ::- Advanced Research Project Agency Network ASCII   ::-American Standard Code for Information Interchange ATM  ::- Automated Teller Machine B2B  ::- Business To Business B2C  ::- Business To Consumer C2C  ::- Consumer To Consumer CCTV  (camera)::- Closed-Circuit Television (camera) CD ::- Compact Disc CERN  ::-  Center for European Nuclear Research CISC  ::- Complex Instruction Set Computer CMOS   ::- Complementary Metal Oxide Semiconductor CPU   ::- Central Processing Unit CRT  ::- Cathode Ray Tube DBMS  ::- Database Management System DNS  ::- Domain Name System DSL  ::- Digital Subscriber Line DVD  ::- Digital Versatile (or Video ) Disc EBCDIC...

Technical Exam preparation Qs

1. What is the decimal equivalent to the hexadecimal number E6D3? A. 59019 B. 59091 C. 59136 D. 59093 Answer::-B. 2. Convert the decimal number 2989 to hex. A. FDD1 B. BAD C. TED D. CAD Answer::- B. 3. MAC address are _________ bits in length. A. 12 B. 24 C. 48 D. 64 Answer::- C. 4. Where does the MAC address reside? A. Transceiver B. Computer BIOS C. NIC D. CMOS Answer::- C. 5. Which of the following statements best describes communication between two devices on a LAN? A. The source device encapsulates data in a frame with the MAC address of the destination device, and then transmits it. Everyone on the LAN sees it, but the devices with non-matching addresses otherwise ignore the frame. B. The source encapsulates the data and places a destination MAC address in the frame. It puts the frame on the LAN, where only the device with the matching address can check the address field. C. The destination device encapsulates data in a frame with the MAC address of the source device, puts it on...

More Questions with ans to solve

1. A router is an OSI Layer __________device. A. 1 B. 5 C. 3 D. 4 Ans:-C 2. What do routers connect? A. Bridges and repeaters B. Bridges and hubs C. Two or more networks D. Hubs and nodes Ans:- C. 3. What does a router route? A. Layer 1 bits B. Layer 2 frames C. Layer 3 packets D. Layer 4 segments Ans:- C. 4. To construct a simple LAN of four computers, you connect them with a _________ ? A. Cross-connect cable B. Serial line C. Hub D. Router Ans. C. 5. What is the maximum cable length for STP (without a repeater, and so on)? A. 100 ft B. 100 m C. 150 ft D. 1000 in Ans: - B. 6. How many pairs of wires make up a UTP cable? A. 2 B. 4 C. 6 D. 8 Ans::- B. 7. Which connector does UTP use? A. STP B. BNC C. RJ-45 D. RJ-69 Ans::- C. 8. What is an advantage that coaxial cable has over STP or UTP? A. It is capable of achieving 10-100 Mbps. B. it is inexpensive. C. It can run longer distances unboosted. D. None of the above. Ans...

File Organization

FILE ORGANIZATION: It refers to the way of arranging the records in a file which can be accessed in a faster way. The criteria considered in choosing a file organization are: 1) Fast access to single record or collection of related records. 2) Easy record adding/ update/ removal without disrupting. 3) Storage efficiency 4) Redundancy as a warranty against data corruption. The files are generally viewed as • Logical File organization: The groups of fields which are combined to form logical record, which can perform different operations on the file. • Physical file organization: The data which is stored in the form of records can be placed in any storage devices, main memory, secondary memory etc. Types of File Organization: I) Sequential Access File Organization II) Direct Access File Organization III) Index Sequential Access File Organization I) Sequential Access File Organization: 1) All records are stored in a sequential order. 2) That is, the records are ar...

Call by value and Call by refrence

Explain call by value and call by reference with example. Call by value- When a function call is given, a relationship is established between actual and formal parameters. A temporary storage is created for formal parameters to store the data(actual parameters) received as input from calling function. This process of data transfer from actual parameter to formal parameters is known as call by value. Ex: void main() { int a=20,b=30,x; int f1(int,int); ----- x=f1(a,b); ----- getch( ); } int f1(int p, int q) { p=p+p; q=q+q; return(p+q); } Call by reference- When a function is called, the address of variables are passed on to the called function. The parameters receiving the address should be pointer variables. This concept of sending the address of data from calling function to pointer variables in the called function is known as call by reference. Ex: viod main() { int a=10,b=15,c=20; ------ X=f1(&a,&b,&c); ------ getch(); } int f1(int *p...

More on Networking

Image
Network services • File Services- All the data files of an organisation are stored in one place and can be shared by many users. Files can be organized and updated systematically. • Print Services - When Printers available on the Network , multiple users can print to the same printer. The network printers are usually faster and more capable. They may have accessories such as envelope readers or multiple paper trays • Database Services -Multiple users can have access to the database at the same time. The Database software ensures integrity of data and provides multiple access. • Message Services -The services include Electronic mail, voice mail, remote access,document transfers across the internet. • Application services - several software applications that are developed using network architecture. The applications can be made available to multiple users. Any up-gradation made to these applications is also instantly available to the users. Advantages of Computer Net...

Status codes

Staus codes:- Informational Code :-100 Phrase :- Continue Description:-The initial part of the request has been received , and the client may continue with the request. Code :- 101 Phrase :- Switching Description :- The server is complying with a client request to switch protocols defined in the upgrade header. Success Code :- 200 Phrase :- OK Description :- The request is successful Code :-201 Phrase :- Created Description :- A new URL is created . Code :- 202 Phrase :- Accepted Description :- The request is accepted , but it is not immediately acted upon Code :- 204 Phrase :-  No content Description :-There is no content in the body Redirection Code :- 301 Phrase :- Moved permanently Description :- The requested URL is no longer used by the server. Code :- 302 Phrase :- Move temporarily Description :- The requested URL has moved temporarily. Code :- 304 Phrase :- Not modified Description :-The document has not been modified. Client...