Вы находитесь на странице: 1из 53

ROUND - 1

Multiple Choice Questions (10 points for Correct Answer)

TEAM A
Q 1. Smallest individual unit in a program is called as :a) Punctuator c) Token b) Literal d) Keyword

Correct Answer:Token
C++ supports 5 types of tokenskeyword, identifier, literal, operator and punctuator.

TEAM B
Q 1. Char, int , float , void , double are known as :a) Structured data type b) Fundamental data type c) Derived data type d) Function prototype

Correct Answer:Fundamental data types


These are the data types which are not composed of other data types.

TEAM C
Q 1. Example of Entry controlled loop in C++ is :a) For c) Switch case b) While d) a & b both

Correct Answer:a and b both


In entry controlled loop condition is tested before entering into the loop.

TEAM D
Q 1. Example of Exit controlled loop in C++ is :a) If- else c) Break b) Do-While d) a & b both

Correct Answer:Do while loop


In exit controlled loop condition is tested before exiting from the loop.

TEAM A
Q 2. Name the header file which is included to use the function setw( ) :a) ctype.h c) proces.h b) iomanip.h d) conio.h

Correct Answer:Iomanip.h

TEAM B
Q 2. Name the header file which is included to use the function fabs( ) :a) math.h c) proces.h b) conio.h d) iostream.h

Correct Answer:math.h

TEAM C
Q 2. Name the header file which is included to use the function getxy( ) :a) stdio.h c) iomanip.h b) ctype.h d) conio.h

Correct Answer:conio.h

TEAM D
Q 2. Name the header file which is included to use the function scanf( ) :a) stdio.h c) iomanip.h b) ctype.h d) conio.h

Correct Answer:stdio.h

ROUND - 2
Passing the questions (10 points for Correct Answer) (5 points for the passed question)

TEAM A
Q 1. When a structure is declared as a member of other structure, it is called as :-

Correct Answer:Nested structure

TEAM B
Q 1. A member function which is automatically invoked at the time of object declaration is known as :-

Correct Answer:Constructor

TEAM C
Q 1. When a class contains objects of another class as its members , it is called as :-

Correct Answer:Containership

TEAM D
Q 1. A structure having a member element that refers to the structure itself is called as :-

Correct Answer:Self referential structure

TEAM A
Q 2. Expand the following term :-

EAPROM

Correct Answer:Electrically Alterable Programmable Read Only Memory

TEAM B
Q 2. Expand the following term :-

CDMA

Correct Answer:Code Division Multiple Access

TEAM C
Q 2. Expand the following term :-

FDDI

Correct Answer:Fibre Distributed Data Interface

TEAM D
Q 2. Expand the following term :-

TCP - IP

Correct Answer:Transmission Control Protocol Internet Protocol

ROUND - 3
Subjective questions (10 points for Correct Answer)

TEAM A
Q. What is wrong with the following C++ statement ?

long float x;

Correct Answer:There is no data type known as long float. It is double (data type) which denotes the same, so the correct statement is double x.

TEAM B
Q. Consider the following two C++ statements. Are they equivalent?

char grade = 65; char grade = A;

Correct Answer:Yes, both these statements are equal as ASCII value of A is 65 so 65 will be stored in the memory thus grade = 65 or grade = A mean the same.

TEAM C
Q. How is integer 024 different from integer 24?

Correct Answer:The integer 024 represents an octal number which is equivalent to 20 in decimal number system. The integer 24 represents number 24 in decimal number system which is equivalent to 030 in octal number system.

TEAM D
Q. What is wrong with the following C++ statement ?

const int y;

Correct Answer:The constant has been declared but not initialised so the correct statement is const int y = 5 ;

ROUND - 4
( Visual Round ) (10 points for Correct Answer)

Identify the following device

Correct Answer:HUB

Correct Answer:RJ 45 Connector

Correct Answer:Switch

Correct Answer:Bridge

Вам также может понравиться