You are on page 1of 81

IT QUIZ BEE

Easy Round

Next

1. It is known as the brain of the computer.


A. B. C. D. RAM Central Processing Unit Motherboard ROM

Answer

2. Which of the following is NOT a capability of a computer? A. B. C. D. Can process data in a high speed Can store a vast amount of data Can detect errors and correct them Can process users instructions accurately

Answer

3. A collection of raw facts is known as what?


A. Information B. Output C. Data D. Query

Answer

Answer:

C. Data

4. Cobol, Fortran and Pascal are in what level of programming language?


A. B. C. D. Machine Language Assembly Language Low-Level Language High-Level Language

Answer

5. Which of the following is not a compressed file extension?


A. B. C. D. .zip .jar .raw .cab

Answer

6. HTML tags are case sensitive


A. True B. False

Answer

7. How many bytes are there in 1 kilobyte?


A. B. C. D. 1024 bytes 1000 bytes 1000000 bytes 1100 bytes

Answer

8. What programming language is advisable to use if you are going to develop a dynamic Web page?
A. B. C. D. Java PHP C++ Visual Basic.NET Answer

9. What is the meaning of URL?


A. B. C. D. Unified Resource Locator Uniform Resource Location Unified Resource Location Uniform Resource Locator

Answer

10. What is the collection of data stored in a computer storage medium?


A. B. C. D. Database Information Files Records

Answer

Average Round

Next

1. Which of the following is NOT a valid hexadecimal?


A. B. C. D. E. 100110 1FE00A 245679 20FH09 ABCDEF Answer

2. Which of the following has the largest data size?


A. B. C. D. 4000 GB 5, 000, 000, 000 KB 3, 000, 000 MB 2 TB

Answer

Answer

B. 5, 000, 000, 000 KB

3. According to Wikipedia, he is the man who helped


shape the digital era. He developed the Unix Operating System with his colleague Ken Thompson. He died last October 12, 2011. Who is this very influential man in world of Information Technology?

A. B. C. D.

Steve Jobs Paul Allen Steve Wozniak Dennis Ritchie Answer

4. PDF is a file format representing images of printable pages. What does PDF means?
A. B. C. D. Portable Data File Portable Data Format Portable Document File Portable Document Format

Answer

Answer:

C. Portable Document File

5. In MENU Conventions, what is the symbol following an item that when clicked, a special window called dialog box appears?
A. B. C. D. Right- Pointing Triangle ( Ellipsis () Checkmark ( ) Grayed-out items )

Answer

Answer:

B. Ellipsis ()

6. In e-mail, what does BCC means?


A. B. C. D. E. Black Carbon Copy Blind Carbon Copy Business Carbon Copy Business Computer Center Business Card Copy

Answer

7. Who is known as the first computer programmer?


A. B. C. D. E. Charles Babbage Konrad Zuse Ada Byron Grace Hopper Frederic Williams

Answer

8. What does UNIX stands for?


A. B. C. D. E. UNIform eXchange UNIt eXchange UNIversal eXchange It is not an acronym None of the above

Answer

9. Which of the ff. statements is/are FALSE about the internet? 1. Internet is a network of networks. 2. Internet is the worlds largest network. 3. Nobody owns the internet. 4. An internet account from an Internet Service Provider is needed to connect to the internet.

A. B. C. D. E.

Statements 2 Statement 3 Statements 2, 3 and 4 Statement 3 and 4 All statements are True Answer

10. Where does the headquarters of Microsoft located?


A. B. C. D. Santa Clara, California Redmond, Washington Richmond, Virginia Tucson, Arizona

Answer

Difficult Round

Next

1. What is the output of the following c++ code:


A. B. C. D. E. 012351321 01123581321 01123513 011235813 01123581321

#include<iostream.h> #include<conio.h> void main() { int a=0,c,b=1; while(b<=21){ c=a+b; cout<<a; a=b; b=c; } getch(); }

Answer

2. In what line/s does the following C++ code has error:


line 1: line 2: line 3: line 4: line 5: line 6: line 7: line 8: line 9: line 10: line 11: line 12: line 13: #include<iostream.h> #include<conio.h> void main(){ for(int a=0; a<=7; a++){ for(int b=1;b<=a; b++ ){ cout>>a; } cout>>"\n"; } getch() }

Answer

3. Who is the successor of Steve Jobs as the new CEO of Apple Inc.?

Answer

4. What will be the output of the ff. c++ code if all variables will increase by 1?
#include<iostream.h> #include<conio.h> void main(){ int k=5, l=3, m=7, n=1, o=1; cout<<k\n; cout<<l\n; cout<<m\n; cout<<n\n; cout<<o\n; getch(); }

Answer

Answer:
k l m n o

If the character after the cout<< is enclosed with (quotation marks), it means that it will print the character as is. While the \n means new line.

5.

In Windows XP, what does XP means?

Answer

6. Convert the following hexadecimal digits into decimal:

7DC

Answer

7. How many minutes will it take for a 16 x CD-R drive to record a full audio which has a runtime of 64 minutes?
A. B. C. D. 4 minutes 8 minutes 16 minutes 32 minutes

Answer

8. What is the name of the Dolphin in the logo of MySQL?


A. B. C. D. Shakira Sekila Shakila Sakila

Answer

9. What is the decimal value of the largest possible 16-digit binary number?
A. B. C. D. E. 65535 9999999999999999 10000 1011010 839121

Answer

10. What does the acronym CAPTCHA means?

Answer

Extra Questions for Easy

What is the first microprocessor that has been released by Intel?


A. B. C. D. Intel 8080 Intel 8008 Intel 4004 Intel 4040

Answer

What is the symbol of the OR Gate?


A. B. C. D. Answer

Extra Questions for Average

The first computer with GUI and Mouse


A. B. C. D. Z1 Apple 1 Apple Lisa Altair

Answer

On what year does the computer became TIME Magazines Man of the Year?
A. B. C. D. 1980 1981 1982 1983

Answer

Extra Questions for Difficult

What does the acronym JPEG means?

Answer

What is the default IP address of the Local Area Network?

Answer

ANSWERS

Answer:

B. Central Processing Unit


Next

Answer:

C. Can detect errors and correct them.


Computers can detect errors but it cannot correct errors without the users intervention

Next

Answer:

D. High-Level Language

Next

Answer:

C. .raw
.raw is an image file generated by digital cameras and contains uncompressed, raw image data, it can be adjusted for exposure and white balance in software after saving the image to the computer. Next

Answer:

B. False

Next

Answer:

A. 1024 bytes

Next

Answer:

B. PHP

Next

Answer:

D. Uniform Resource Locator


Next

Answer

A. Database

Average Round

Answer:

D. 20FH09
Hexadecimal digits includes 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F. H is not a hexadecimal digit.

Next

Answer:

D. Dennis Ritchie

Next

Answer:

B. Blind Carbon Copy

Next

Answer:

C. Ada Byron

Next

Answer:

D. It is not an acronym

Next

Answer:

E. All statements are True


Next

Answer:

B. Redmond, Washington

Difficult Round

Answer:

D. 011235813

Next

Answer:

Line 8, Line 10, Line 12


In line 8 and 10, >> signs should not be used with cout, it should be used with cin, while line 12 contains no terminator (;).

Next

Answer:

Timothy Tim Cook

Next

Answer:

eXPerience

Next

Answer:

2012
Next

Answer:

A. 4 minutes
4, 8, 16 or 64 describes a CD or DVD drive, able to transfer data at 4, 8, 16 or 64 times the speed of normal audio or video.

Next

Answer

D. Sakila

Next

Answer

A. 65535
The largest 16 digit binary number is 1111111111111111 and if you convert it to decimal, you will get 65535.

Next

Answer:

Completely Automated Public Turing test to tell Computers and Humans Apart

Extra Questions Answers

Answer

C. Intel 4004

Answer

B.

Answer

C. Apple Lisa

Answer

C. 1982

Answer

Joint Photographic Experts Group

Answer

192.168.1.1 or 192.168.1.100

You might also like