IT Trainer Questions


Q:

Largest cricket stadium in the world by boundary

A) Rajiv Gandhi International Stadium B) Melbourne Cricket Stadium
C) Eden Gardens D) Greenfield International Stadium
 
Answer & Explanation Answer: B) Melbourne Cricket Stadium

Explanation:

Currently, the Melbourne Cricket Ground is the world's largest cricket stadium in the world with a total capacity of 100,024. The boundary line of this ground is 85–92 meters from the middle of the pitch which is the highest of all the Cricket grounds around the world. While Kolkata's Eden Gardens is reportedly No. 2 with a capacity of 66,000. 

largest_cricket_stadium_in_the_world_by_boundary1561612165.jpg image

 

The Sardar Patel Gujarat Stadium, also known as Motera Stadium getting built in Ahmedabad will accommodate 1.1 lakh cricketing fans inside the stadium overtaking current record-holder Melbourne Cricket Ground .

 

Report Error

View Answer Report Error Discuss

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

4 5799
Q:

As compared to diskettes, the hard disks are

A) More portable B) Slowly accessed
C) More expensive D) Less rigid
 
Answer & Explanation Answer: C) More expensive

Explanation:

As compared to diskettes, the hard disks are more expensive.

As_compared_to_diskettes,_the_hard_disks_are1557378986.jpg image

A diskette is a RAM, removable data storage medium that can be used with personal computers. It is also known as Floppy or Floppy disk. It is composed of a disk of thin and flexible magnetic storage medium, sealed in a rectangular plastic enclosure lined with fabric that removes dust particles.

Report Error

View Answer Report Error Discuss

7 5784
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 5773
Q:

Unresolved dissonance is a characteristic of

Answer

When the tension is unresolved, we have unresolved dissonance. Unresolved dissonance is a characteristic of the baroque music.


The general characteristics of Baroque music is movement, energy, and tension.

Report Error

View answer Workspace Report Error Discuss

2 5764
Q:

Power Point presentation is a collection of

A) Outlines B) Slides and Handouts
C) Speaker’s notes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Power Point presentation is a collection of Slides and Handouts, Outlines and Speaker’s notes.

Report Error

View Answer Report Error Discuss

3 5732
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 5728
Q:

Which of the following are elements of SQL?

A) base-table-identifier ::= user-defined-name B) base-table-name ::= base-table-identifier
C) boolean-primary ::= comparison-predicate D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

8 5727
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 5704