IT Trainer Questions


Q:

The original ASCII code used ___________ bits of each byte, reserving that last bit for error checking ?

A) 5 B) 6
C) 7 D) 8
 
Answer & Explanation Answer: C) 7

Explanation:
Report Error

View Answer Report Error Discuss

18 5438
Q:

Bankim Chandra Chatterjee pen name?

A) Jisu Dasgupta B) Kamala Kanta
C) Sripantha D) Vanu Singh
 
Answer & Explanation Answer: B) Kamala Kanta

Explanation:

A pen name is nothing but a nick name used by the writer when publishing books instead of using their real names. 

 

Kamala Kanta was the pen name of Bankim Chandra Chatterjee who lived from 1838 - 1894. He was a Bengali author, poet who wrote Indian national anthem Vandemataram.

Report Error

View Answer Report Error Discuss

3 5437
Q:

Select the odd term out of the following?

A) Internet B) Macintosh OSX
C) Linux Mint D) Windows 8.1
 
Answer & Explanation Answer: A) Internet

Explanation:

Internet is not an operating system.

Report Error

View Answer Report Error Discuss

17 5435
Q:

Highest Jute producing state in India?

A) Gujarat B) West Bengal
C) Uttar Pradesh D) Bihar
 
Answer & Explanation Answer: B) West Bengal

Explanation:

West Bengal is the highest Jute producing state in India followed by Bihar and Assam in second and third place.

Gujarat is the largest Cotton producing state in India.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

9 5411
Q:

Which of the following type casts will convert an Integer variable named amount to a Double type ?

A) (int to double) amount B) int (amount) to double
C) int to double(amount) D) (double) amount
 
Answer & Explanation Answer: D) (double) amount

Explanation:
Report Error

View Answer Report Error Discuss

6 5402
Q:

Give an example for the use of volatile keyword in c++ ?

Answer

Most of the times compilers will do optimization to the code to speed up the program. For example in the below code,


int k = 15;
while( k == 15)


{
// Do something
}


compiler may think that value of 'k' is not getting changed in the program and replace it with 'while(true)', which will result in an infinite loop. In actual scenario, the value of 'k' may be getting updated from outside of the program.


Volatile keyword is used to tell compiler that the variable declared using 'volatile' may be used from outside the current scope, so that compiler won't apply any optimization. This matters only in case of multi-threaded applications.


In the above example if variable 'k' was declared using volatile, compiler will not optimize it. In shot, value of the volatile variables will be read from the memory location directly.

Report Error

View answer Workspace Report Error Discuss

5 5391
Q:

A DVD is an example of

A) Optical Disc B) Hard Disc
C) Output Device D) Solid state storage device
 
Answer & Explanation Answer: A) Optical Disc

Explanation:

A DVD is an example of Optical Disc.

Report Error

View Answer Report Error Discuss

7 5383
Q:

Switching between portrait and landscape modes involves the

A) print layout view B) Arc map
C) header and footer toolbar D) page setup dialog box
 
Answer & Explanation Answer: D) page setup dialog box

Explanation:

Switching between portrait and landscape modes involves the page setup dialog box.

Report Error

View Answer Report Error Discuss

3 5350