Questions

Q:

Natural Rubber is a Polymer of

A) butadiene B) 2methyl-1,3butadiene
C) ethylene D) isoprene
 
Answer & Explanation Answer: D) isoprene

Explanation:

Natural Rubber is a Polymer derived from Isoprene. 

 rubber-bands-503028_6401547100511.jpg image

      • Natural rubber is an addition polymer that is obtained as a milky white fluid known as Latex from a Tropical Rubber Tree.
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Database Administration , Bank PO , Bank Clerk , Analyst

37 13447
Q:

The credit for the discovery of transuranic element goes to

A) Hahn B) Rutherford
C) Seaborg D) Curie
 
Answer & Explanation Answer: C) Seaborg

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

34 13444
Q:

How does an organization use Resources and Capabilities in creating value?

A) They are used to create value in the form of goods and services B) They are used to create value to the IT organization for Service Support
C) They are used to create value to the IT organization for Service Delivery D) They are used to create value in the form of output for production management
 
Answer & Explanation Answer: A) They are used to create value in the form of goods and services

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 13431
Q:

Masses of stars and galaxies are usually expressed in terms of

A) neutron mass B) earth's mass
C) solar mass D) lunar mass
 
Answer & Explanation Answer: C) solar mass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

58 13421
Q:

Panchayatiraj form of rural government was first adopted by 

A) Rajasthan & Madhya Pradesh B) Rajasthan & West Bengal
C) Rajasthan & Andhra Pradesh D) Rajasthan & Uttar Pradesh
 
Answer & Explanation Answer: C) Rajasthan & Andhra Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

72 13416
Q:

What is the capital of Finland?

A) Conakry B) Prague
C) Helsinki D) None of the above
 
Answer & Explanation Answer: C) Helsinki

Explanation:

Helsinki is the capital of Finland

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

53 13415
Q:

The following equation is incorrect. Which two signs should be interchanged to correct the equation?

13 x 8 + 25 - 6 ÷ 10 = 20

A) ÷ and - B) x and -
C) + and ÷ D) - and +
 
Answer & Explanation Answer: B) x and -

Explanation:
Report Error

View Answer Report Error Discuss

0 13411
Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

12 13381