IT Trainer Questions


Q:

Two Fathers and Two Sons walk into a ice cream parlour. They each buy something for Rs. 50 but they only spent Rs. 150. How is that possible?

Answer

One grandfather, One father and One son makes two fathers and two sons.

Report Error

View answer Workspace Report Error Discuss

87 12295
Q:

Third proportion of 10 and 20 is

A) 30 B) 40
C) 25 D) 20
 
Answer & Explanation Answer: B) 40

Explanation:

The third proportional of two numbers p and q is defined to be that number r such that

p : q = q : r.

 

Here, required third proportional of 10 & 20, and let it be 'a'

=> 10 : 20 = 20 : a

10a = 20 x 20

=> a = 40

 

Hence, third proportional of 10 & 20 is 40.

Report Error

View Answer Report Error Discuss

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

30 12284
Q:

Explain soundex() and metaphone() ?

Answer

soundex()
The soundex() function calculates the soundex key of a string. A soundex key is a four character long alphanumeric string that represent English pronunciation of a word. he soundex() function can be used for spelling applications.
< ?php
$str = "hello";
echo soundex($str);
? >


metaphone()
The metaphone() function calculates the metaphone key of a string. A metaphone key represents how a string sounds if said by an English speaking person. The metaphone() function can be used for spelling applications.
< ?php
echo metaphone("world");
? >

Report Error

View answer Workspace Report Error Discuss

42 12113
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 12066
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 11765
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 11736
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 11730
Q:

HTML language is a set of markup

A) Groups B) Attributes
C) Tags D) Sets
 
Answer & Explanation Answer: C) Tags

Explanation:

HTML language is a set of markup tags. The code used to specify the formatting are called tags. Markup languages are designed for the processing, definition and presentation of text. The language specifies code for formatting, both the layout and style, within a text file. 

 

HTML is an example of a markup language to improve the appearance of, and link text with data on the internet.

Report Error

View Answer Report Error Discuss

6 11698