IT Trainer Questions


Q:

Find the area of the square whose side is equal to the diagonal of a rectangle of length 3 cm and breadth 4 cm. 

A) 25 sq.cm B) 16 sq.cm
C) 9 sq.cm D) 4 sq.cm
 
Answer & Explanation Answer: A) 25 sq.cm

Explanation:

Given length of the rectangle = 3 cm

Breadth of the rectangle = 4 cm

Then, the diagonal of the rectangle D = 32 + 42 = 25 = 5

Then, it implies side of square = 5 cm

We know that Area of square = S x S = 5 x 5 = 25 sq.cm.

Report Error

View Answer Report Error Discuss

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

18 5473
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 5470
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 5459
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 5455
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 5424
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 5422
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 5401
Q:

LCD of 12 and 18

A) 36 B) 42
C) 12 D) 6
 
Answer & Explanation Answer: A) 36

Explanation:

  LCD is nothing but Lowest or Least Common Denominator

 

Here LCD of 12 and 18 means LCD of two fractions with denominators 12 and 18 respectively.

 

Therefore, LCM of 12 & 18 = 6 x 3 x 2 = 36 

 

      •  How to calculate LCD ::


The lowest common denominator or least common denominator (LCD) is the least common multiple (LCM) of the denominators of a set of fractions.

Report Error

View Answer Report Error Discuss

Filed Under: HCF and LCM
Exam Prep: GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Database Administration , Bank PO , Bank Clerk

27 5386