Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Computer Basics Interview Questions and Answers

Ques 1. What is Bit?

A bit (short for binary digit) is the smallest unit of data in a computer. A bit has a single binary value, either 0 or 1. Although computers usually provide instructions that can test and manipulate bits, they generally are designed to store data and execute instructions in bit multiples called bytes. In most computer systems, there are eight bits in a byte. The value of a bit is usually stored as either above or below a designated level of electrical charge in a single capacitor within a memory device.

Half a byte (four bits) is called a nibble. In some systems, the term octet is used for an eight-bit unit instead of byte. In many systems, four eight-bit bytes or octets form a 32-bit word. In such systems, instruction lengths are sometimes expressed as full-word (32 bits in length) or half-word (16 bits in length).

Is it helpful? Add Comment View Comments
 

Ques 2. What is Binary?

Binary numbers look strange when they are written out directly.This is because the digits weight increases by powers of 2, rather than by powers of 10. In a digital numeral, the digit furthest to the right is the ones digit; the next digit to the left is the twos digit; next comes the fours digit, then the eights digit, then the 16s digit, then the 32s digit, and so on.The decimal equivalent of a binary number can be found by summing all the digits.For example, the binary 10101 is equivalent to the decimal = 1x20 + 0x21 + 1x22 + 0x23 + 1x24 = 1 + 4 + 16 = 21:

DECIMAL = 216432168421
BINARY = 101010010101

 

The numbers from decimal 0 through 15 in decimal, binary, octal and hexadecimal form are listed below. 

DECIMALBINARYOCTALHEXA-
DECIMAL
0000000
1000111
2001022
3001133
4010044
5010155
6011066
7011177
81000108
91001119
10101012A
11101113B
12110014C
13110115D
14111016E
15111117F

Is it helpful? Add Comment View Comments
 

Ques 3. What is Byte?

A Byte is equal to 8 Bits. A Byte can represent 256 states of information, for example, numbers or a combination of numbers and letters. 1 Byte could be equal to one character. 10 Bytes could be equal to a word. 100 Bytes would equal an average sentence.

Is it helpful? Add Comment View Comments
 

Ques 4. What is Driver software?

Driver software is software that works as a translator between another program and some piece of hardware. In the software industry, there are generally standard ways to do things. 

There are many different types of hardware, however, and each piece of hardware may have its own protocol (or "language"). The driver software receives standard signals from another program, then translates these into commands for a particular piece of hardware. This way a program can be written in a standard way, and it will work with many different devices.
Example: If you want to run CD-ROM in you computer, you need to install CD-ROM Setup software which is a driver software.

Is it helpful? Add Comment View Comments
 

Ques 5. What is Restore?

Restore means to make a window smaller than full screen, so that it can be resized. At the right top corner there are three boxes from left to right it is Minimize - Restore - Close. The middle square box is to restore.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook