Questions

Q:

A source program is the program written in which level language  ?

A) Alpha Numeric B) High-Level
C) Symbolic D) Machine
 
Answer & Explanation Answer: B) High-Level

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming
Exam Prep: Bank Exams
Job Role: Analyst , Database Administration , IT Trainer

15 10943
Q:

An object that has kinetic energy must be

A) At an elevated position B) Falling
C) At rest D) Moving
 
Answer & Explanation Answer: D) Moving

Explanation:

In physics, we know that the kinetic energy of an object is the energy that it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity.

Hence, An object that has kinetic energy must be in motion i.e, moving.

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

10 10925
Q:

The information of brilliant colors in a thin soap film is a consequence of the phenomena of

A) Polarization and interference B) Diffraction and dispersion
C) Multiple refraction and dispersion D) Multiple reflection and interference
 
Answer & Explanation Answer: D) Multiple reflection and interference

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

40 10916
Q:

The direction of heat flow between two objects depends on

A) Their masses B) Their heat contents
C) Their temperatures D) Whether they are in solid, liquid or gaseous state
 
Answer & Explanation Answer: C) Their temperatures

Explanation:

Heat always flows from a body at higher temperature to a body at a lower temperature.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

43 10909
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 10892
Q:

The presence or absence of hydroxy group on which carbon atom of sugar differentiates RNA and DNA ?

A) 4th B) 2nd
C) 3rd D) 1st
 
Answer & Explanation Answer: B) 2nd

Explanation:

RNA has hydroxy group attached at the 2nd C-atom while DNA does not.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE

21 10888
Q:

Solve the following equations and find the value of abc?

 

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

Explanation:

From the given equations,

(a+b+c)2=a2+b2+c2+2(ab+bc+ca)
(6)2=14 + 2(ab + bc + ca)
36 - 14 = 2(ab + bc + ca)
22/2 = ab + bc + ca
ab + bc + ca = 11

a3 + b3 + c3 - 3abc = (a + b + c)(a2 + b2 + c2 - ab - bc - ca)
= (6) (14 - 11)
=(6)(3)
=18

Since, a3 + b3 + c3 - 3abc = 18

36 - 3abc = 18

-3abc = 18 - 36

-3abc = -18

abc = 6.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: Bank Exams , CAT

37 10885
Q:

Parenthesis is never required in Postfix or Prefix expressions

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Parenthesis is not required because the order of the operators in the postfix /prefix expressions determines the actual order of operations in evaluating the expression

Report Error

View Answer Workspace Report Error Discuss

Subject: Database
Job Role: Database Administration

6 10882