IT Trainer Questions


Q:

A, B and C can do a piece of work in 72, 48 and 36 days respectively. For first p/2 days, A & B work together and for next ((p+6))/3days all three worked together. Remaining 125/3% of work is completed by D in 10 days. If C & D worked together for p day then, what portion of work will be remained?

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

Explanation:

Total work is given by L.C.M of 72, 48, 36

Total work = 144 units

Efficieny of A = 144/72 = 2 units/day

Efficieny of B = 144/48 = 3 units/day

Efficieny of C = 144/36 = 4 units/day

 

According to the given data,

2 x p/2 + 3 x p/2 + 2 x (p+6)/3 + 3 x (p+6)/3 + 4 x (p+6)/3 = 144 x (100 - 125/3) x 1/100

3p + 4.5p + 2p + 3p + 4p = 84 x 3 - 54

p = 198/16.5

p = 12 days.

 

Now, efficency of D = (144 x 125/3 x 1/100)/10 = 6 unit/day

(C+D) in p days = (4 + 6) x 12 = 120 unit

Remained part of work = (144-120)/144 = 1/6.

Report Error

View Answer Report Error Discuss

7 6919
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

4 6898
Q:

Processor's speed of a computer is measured in

A) Hertz B) Baud
C) MIPS D) BPS
 
Answer & Explanation Answer: A) Hertz

Explanation:

CPU speed is the central factor in a computer's performance. And this CPU speed depends on the processor in the CPU chip. In a computer, clock speed refers to the number of pulses per second generated by an oscillator that sets the tempo for the processor. Clock speed is usually measured in Hertz (Hz).

 

But now-a-days, a pure processor's performance is measured in MIPS (Millions of Instructions Per Second). As here in the question, how a processor's speed is measured is asked and it is Hertz. 

 

Hence, Processor's speed of a computer is measured in Hertz(Hz) [MHz, GHz].

Report Error

View Answer Report Error Discuss

10 6884
Q:

In a worksheet, you can select

A) Only rows B) Only columns
C) Entire worksheet D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A worksheet or sheet is a collection of cells in a file created with an electronic spreadsheet program such as Microsoft Excel or Google Sheets where we can keep and save data.

 

in_a_worksheet_you_can_select1557727086.jpg image

 

Here in a worksheet, we can select a single row or column or multiple rows or columns or we can select the entire worksheet. We can create multiple worksheets in a workbook.

Report Error

View Answer Report Error Discuss

7 6860
Q:

Planet : Orbit :: Projectile : ?

A) Path B) Milky way
C) Track D) Trajectory
 
Answer & Explanation Answer: D) Trajectory

Explanation:

The path traced by planet is called Orbit. Similarly, the path traced by projectile is called Trajectory.

 

Hence, Planet : Orbit : : Projectile : Trajectory.

Report Error

View Answer Report Error Discuss

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

8 6808
Q:

Out of three numbers, the first is twice the second and is half of the third. If the average of the three numbers is 56, what will be the sum of the highest number and the lowest number?

A) 120 B) 160
C) 80 D) 60
 
Answer & Explanation Answer: A) 120

Explanation:

Let the three numbers be x, y, z.

From the gien data,

x = 2y ....(1)

x = z/2 => z = 2(2y) = 4y .....(From 1)  ...........(2)

Given average of three numbers = 56

Then,

 

x + y + z3 = 562y + y + 4y3 = 56  (From 1 & 2)7y = 56 x 3y = 24

Now,

x = 2y => x = 2 x 24 = 48

z = 4y = 4 x 24 = 96

 

Now, the highest number is z = 96 & smallest number is y = 24

 

Hence, required sum of highest number and smallest number

= z + y

= 96 + 24

= 120.

Report Error

View Answer Report Error Discuss

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

15 6785
Q:

3 is what percent of 5?

A) 45% B) 60%
C) 72% D) 80%
 
Answer & Explanation Answer: B) 60%

Explanation:

Here it is asked that 3 is what percent of 5

Let 3 is K percent of 5.

=> K x 5/100 = 3

=> K = 300/5 = 60

 

Hence, 3 is 60% of 5.

Report Error

View Answer Report Error Discuss

8 6782
Q:

Kilohertz is a unit which measures

A) Electromagnetic radio wave frequencies B) Electric resistance
C) Power used by a current of one ampere D) Voltage
 
Answer & Explanation Answer: A) Electromagnetic radio wave frequencies

Explanation:

The hertz (Hz) is defined as one cycle per second and is a SI unit of frequency. Here kilohertz is also a unit of frequency of waves and is defined as 1000 cycles per second. Radio waves are measured in kilohertz (KHz).

 

Kilohertz_is_a_unit_which_measures1561453991.jpg image

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

6 6734