IT Trainer Questions


Q:

A program in execution is called

A) Procedure B) Function
C) Process D) Instruction
 
Answer & Explanation Answer: C) Process

Explanation:

We know that a computer program is a set of instructions to be executed. And if the instructions are in execution, then it is called as process. In brief, a program in execution is called as process.

Report Error

View Answer Report Error Discuss

18 11963
Q:

 What is the name of the virus that fool a user into downloading and executing them by pretending to be useful applications  ?

A) Trojan horses B) Keylogger
C) Worm D) File virus
 
Answer & Explanation Answer: A) Trojan horses

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams , CAT
Job Role: Analyst , IT Trainer

32 11682
Q:

Lichens are the best indicator of

A) Air pollution B) Sound pollution
C) Noise pollution D) Water pollution
 
Answer & Explanation Answer: A) Air pollution

Explanation:

1. Lichens are plants that grow in exposed places such as rocks or tree bark.

 

2.  Lichens are widely used as environmental indicators or bio-indicators. They can be used as air pollution indicators, especially of the concentration of sulfur-di-oxide in the atmosphere.  

 

3. They need to be very good at absorbing water and nutrients to grow there.

Report Error

View Answer Report Error Discuss

30 11568
Q:

Main storage is also called

A) Memory B) Control unit
C) Accumulator D) Register unit
 
Answer & Explanation Answer: A) Memory

Explanation:

In a computer, the area where the data is stored for the quick access by the computer's processor is called Main storage or Primary storage or Memory or RAM.

 

Hence, main storage is also called Memory.

Report Error

View Answer Report Error Discuss

15 11549
Q:

Oldest Oil Field in India

A) Mumbai High, Maharashtra B) Anleshwar, Gujarat
C) Digboi, Assam D) None
 
Answer & Explanation Answer: C) Digboi, Assam

Explanation:

Digboi has the distinction of being India's oldest continuously producing oilfield. Digboi refinery, now a division of Indian Oil Corporation, had a capacity of about 0.65 MMTPA as of 2003. Digboi is now Headquarter of Assam Oil Division of Indian Oil Corporation Limited, though the crude production is not high today.

Report Error

View Answer Report Error Discuss

27 11525
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

9 11446
Q:

What color does blue and yellow make?

A) Green B) Black
C) Red D) White
 
Answer & Explanation Answer: A) Green

Explanation:

Mixing of blue and yellow colors make Green Color.

                                 400px-Color_mixture.svg_1521793884.png image

 

RYB (an abbreviation of red–yellow–blue) is a historical set of colors used in subtractive color mixing and is one commonly used set of primary colors. It is primarily used in art and design education, particularly painting.

RYB predates modern scientific color theory, which has determined that cyan, magenta, and yellow are the best set of three colorants to combine, for the widest range of high-chroma colors.

Report Error

View Answer Report Error Discuss

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

2 11414
Q:

Penny has 5 children, 1st is January, 2nd kid February, 3rd is called march , 4th is April. What is the name of the 5th.

Answer

Here If you notice the difference, There is no question mark (?) at the end of the puzzle.


In that case, "What" is the name of the 5th child.

Report Error

View answer Workspace Report Error Discuss

65 11409