IT Trainer Questions


Q:

A sum is equally invested in two different schemes on CI at the rate of 15% and 20% for two years. If interest gained from the sum invested at 20% is Rs. 528.75 more than the sum invested at 15%, find the total sum?

A) Rs. 7000 B) Rs. 4500
C) Rs. 9000 D) Rs. 8200
 
Answer & Explanation Answer: C) Rs. 9000

Explanation:

Let Rs. K invested in each scheme

Two years C.I on 20% = 20 + 20 + 20x20/100 = 44%

Two years C.I on 15% = 15 + 15 + 15x15/100 = 32.25%

Now,

(P x 44/100) - (P x 32.25/100) = 528.75

=> 11.75 P = 52875

=> P = Rs. 4500

 

Hence, total invested money = P + P = 4500 + 4500 = Rs. 9000.

Report Error

View Answer Report Error Discuss

19 4627
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 4625
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 4612
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

3 4599
Q:

How many laws of physics are there?

A) 5 B) 4
C) 3 D) 2
 
Answer & Explanation Answer: C) 3

Explanation:

Physics has 5 laws. But the 3 laws of Newton has been clubbed together under one Law. Therefore there are 3 Newtons laws of Physics. They are ::

 

1. Newtons Laws of Motion

    a. First Law of Motion

    b. Second Law of Motion

    C. Third Law of Motion

 

2. Newtons Law of Cooling

 

3. Newtons Law of Gravitation.

Report Error

View Answer Report Error Discuss

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

10 4598
Q:

What goes up and down the stairs without moving?

A) Umbrella B) Lift
C) Stairs D) All the above
 
Answer & Explanation Answer: C) Stairs

Explanation:

Those are stairs which goes up and down without moving.

Report Error

View Answer Report Error Discuss

4 4584
Q:

CPU speed of a personal computer is

A) 1 MIPS B) 100 KIPS
C) 32 KIPS D) 32 MIPS
 
Answer & Explanation Answer: C) 32 KIPS

Explanation:

Instructions per second (IPS) is a measure of a computer's processor speed. CPU speed of a personal computer is 32 KIPS (Kilo Instructions per second).

Report Error

View Answer Report Error Discuss

5 4554
Q:

IP address is currently

A) 4 bytes long B) available in plenty
C) 6 bytes long D) not assigned as it is all used up
 
Answer & Explanation Answer: A) 4 bytes long

Explanation:

IP address is currently 4 bytes long. An IP address is written in "dotted decimal" notation, which is 4 sets of numbers separated by period each set representing 8-bit number ranging from (0-255).

Report Error

View Answer Report Error Discuss

1 4545