IT Trainer Questions


Q:

Which command displays memory usage in linux?

A) Top B) Free
C) Buffer D) Swap
 
Answer & Explanation Answer: B) Free

Explanation:

Free command displays memory usage in linux.

Report Error

View Answer Report Error Discuss

3 2364
Q:

3 x 3 + 3 - 3 + 3 = ?

A) 9 B) 12
C) -3 D) 3
 
Answer & Explanation Answer: B) 12

Explanation:

Using BODMAS law,

3 x 3 + 3 - 3 + 3 =

3 x 3 = 12

= 12 + 3 - 3 + 3

=  9 + 3

= 12

 

Hence, 3 x 3 + 3 - 3 + 3 = 12.

Report Error

View Answer Report Error Discuss

19 2363
Q:

I have four wings, but cannot fly, I never laugh and never cry; On the same spot I'm always found, toiling away with little sound.

 What am I?

Answer

A Windmill.

Report Error

View answer Workspace Report Error Discuss

3 2361
Q:

What is String Args in Java?

Answer

String Args (String []) is an array of parameters of type String.


In Java, 'args' contains the supplied command-line arguments as an array of String objects. In other words, if you run your program as 'java MyProgram Hello World' then 'args' will contain ["Hello", "World"]. When a java class is executed from the console, the main method is what is called.

Report Error

View answer Workspace Report Error Discuss

9 2361
Q:

A source program is

A) a program to be translated into machine language B) a program written in a machine language
C) a machine language translation of a program D) All of the above
 
Answer & Explanation Answer: A) a program to be translated into machine language

Explanation:

A_source_program_is1563521242.png image

A source program is is a text file that contains instructions or a program written in a language other than machine code, typically a high-level language.

Report Error

View Answer Report Error Discuss

9 2356
Q:

Which file format can be added to a powerpoint show?

A) .Gif B) .Wav
C) .Jpg D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

7 2340
Q:

The word photography literally means

A) Light crowning B) Light drawing
C) Light creations D) Light art
 
Answer & Explanation Answer: B) Light drawing

Explanation:

Photography is a word derived from Greek words Photo means light and graphe means drawing.'Hence it literally means light drawing.

Report Error

View Answer Report Error Discuss

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

0 2335
Q:

Warning implicit declaration of function?

Answer

Function: A Function is a block of statement which perform some operation.



Declaring the function before using the function in program is known as implicit declaration of the function.



For Example::


int bar(void); // function (forward) declaration



int main(void) {


bar(); // bar was declared, the compiler has all the info


return foo(123); // foo not yet known; impl. decl. warning


}



// not previously declared function definition


int foo(int a) {


return a;



// previously declared function definition


int bar() {


return 321;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Java
Job Role: IT Trainer , Analyst

2 2333