IT Trainer Questions


Q:

Data flow analysis studies

A) The use of data on paths through the code B) Possible communications bottlenecks in a program
C) The intrinsic complexity of the code D) The rate of change of data values as a program executes
 
Answer & Explanation Answer: A) The use of data on paths through the code

Explanation:

Data flow analysis studies the use of data on paths through the code.

Report Error

View Answer Report Error Discuss

4 4882
Q:

What is the new name of Abyssinia?

A) Namibia B) Zimbabwe
C) Thailand D) Ethiopia
 
Answer & Explanation Answer: D) Ethiopia

Explanation:

Ethiopia is the new name of a country which is historically called as Abyssinia.

 

New name     -      Old name

Namibia        -      South West Africa

Zimbabwe     -      Southern Rhodesia

Thailand        -      Siam.

Report Error

View Answer Report Error Discuss

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

9 4872
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 4848
Q:

Tickets numbered 1 to 20 are mixed up and then a ticket is drawn at random. What is the probability that the ticket drawn has a number which is a multiple of 4 or 15 ?

A) 6/19 B) 3/10
C) 7/10 D) 6/17
 
Answer & Explanation Answer: B) 3/10

Explanation:

Here, S = {1, 2, 3, 4, ...., 19, 20}=> n(s) = 20
Let E = event of getting a multiple of 4 or 15
=multiples od 4 are {4, 8, 12, 16, 20}
And multiples of 15 means multiples of 3 and 5
= {3, 6 , 9, 12, 15, 18, 5, 10, 15, 20}.
= the common multiple is only (15).
=> E = n(E)= 6
Required Probability = P(E) = n(E)/n(S) = 6/20 = 3/10.

Report Error

View Answer Report Error Discuss

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

6 4844
Q:

English words with similar meaning

A) Relegate - Downgrade B) Beautiful - Ugly
C) Qualm - Confidence D) Generic - Branded
 
Answer & Explanation Answer: A) Relegate - Downgrade

Explanation:

Relegate means Assigning an inferior rank or position to. That means, downgrading or pulling down, lower a person.

 

All other options have words with opposite in meaning.

 

Hence, Relegate is an English word which is similar in meaning to Downgrade.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

9 4841
Q:

How to create a basic text file in php?

Answer

$filename = "/home/user/guest/newfile.txt";
$file = fopen( $filename, "w" );
if( $file == false )
{
echo ( "Error in opening new file" );
exit();


}
fwrite( $file, "This is a simple test\n" );
fclose( $file );

Report Error

View answer Workspace Report Error Discuss

Subject: PHP
Job Role: IT Trainer

1 4830
Q:

Can character data be stored in computer memory? 

A) Yes---a primitive data type is used to store characters B) No---computer memory can only store patterns
C) Yes---characters are stored in special memory D) No---computers can only store numbers
 
Answer & Explanation Answer: A) Yes---a primitive data type is used to store characters

Explanation:
Report Error

View Answer Report Error Discuss

7 4828
Q:

Tilak rides on a cycle to a place at speed of 22 kmph and comes back at a speed of 20 kmph. If the time taken by him in the second case is 36 min. more than that of the first case, what is the total distance travelled by him (in km)?

A) 132 km B) 264 km
C) 134 km D) 236 km
 
Answer & Explanation Answer: B) 264 km

Explanation:

Let the distance travelled by Tilak in first case or second case = d kms

Now, from the given data,

d/20 = d/22 + 36 min

=> d/20 = d/22 + 3/5 hrs

=> d = 132 km.

 

Hence, the total distance travelled by him = d + d = 132 + 132 = 264 kms.

Report Error

View Answer Report Error Discuss

5 4825