IT Trainer Questions


Q:

Which of the following is an Autotroph?

A) Fish B) Algae
C) Butterfly D) Mushroom
 
Answer & Explanation Answer: B) Algae

Explanation:

Here from the above options, Algae is an Autotroph.

Autotrophs : 

An Autotroph is also called as Producer, is an organism that produces complex organic compounds from simple substances present in its surroundings, generally using energy from light or inorganic chemical reactions.

Report Error

View Answer Report Error Discuss

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

78 16142
Q:

What is math.floor(3.6)?

A) 6 B) 3
C) 3.5 D) 0.6
 
Answer & Explanation Answer: B) 3

Explanation:

The Math.floor() function in JavaScript is used to round off the number passed as parameter to its nearest integer in Downward direction of rounding i.g towards the lesser value.

 

Hence, math.floor(3.6) = 3.

Report Error

View Answer Report Error Discuss

30 15950
Q:

Which sentence is capitalized correctly?

A) on a cloudless night, I studied pisces, a constellation in the north sky. B) On a cloudless night, I studied Pisces, a constellation in the North sky.
C) on a Cloudless Night, i studied Pisces, a constellation in the North Sky. D) On a cloudless night, I studied pisces, a constellation in the north sky.
 
Answer & Explanation Answer: B) On a cloudless night, I studied Pisces, a constellation in the North sky.

Explanation:
Report Error

View Answer Report Error Discuss

14 15790
Q:

In MS-Word, for what does ruler help?

A) to set indents B) to change page margins
C) to set tabs D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

In_MS-Word,_for_what_does_ruler_help1554294391.jpg image 

 

In MS-Word, the Ruler function helps align the text, graphic, tables or other elements in your document.

 

In_MS-Word,_for_what_does_ruler_help1558590348.png image 

Report Error

View Answer Report Error Discuss

32 15708
Q:

Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables ?

A) Data Manipulation Language(DML) B) Data Definition Language(DDL)
C) Both A & B D) None
 
Answer & Explanation Answer: B) Data Definition Language(DDL)

Explanation:

The Data Definition Language (DDL) is used to manage table and index structure.

CREATE,

ALTER,

RENAME,

DROP and

TRUNCATE

statements are the names of few data definition elements.

Report Error

View Answer Report Error Discuss

Filed Under: SQL
Job Role: IT Trainer , Database Administration , Analyst

12 15675
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 15565
Q:

6 B in an O?

Answer

The given letter equation 6 B in an O refers to 6 Balls in an Over.

Report Error

View answer Workspace Report Error Discuss

33 15501
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 15291