Questions

Q:

Which of the following diseases is not caused by VIRUS?

A) Chicken Pox B) Dengue
C) Cholera D) Polio
 
Answer & Explanation Answer: C) Cholera

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

51 12956
Q:

A ______ is a computer attached to the internet that runs a special Web server software and can send Web pages out to other computers over the internet.

A) web client B) web system
C) web page D) Web server
 
Answer & Explanation Answer: D) Web server

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

33 12955
Q:

The rockcut temples of Mahabalipuram were built were built under the patronage of the

A) Chola Kings B) Pallava Kings
C) Pandya Kings D) Satavahana Kings
 
Answer & Explanation Answer: B) Pallava Kings

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

17 12947
Q:

When a Bill is referred to a joint sitting of both the Houses of Indian Parliament , it has to be passed by____

A) a simple majority of members present and voting B) Three-fourths majority of members present and voting
C) Two-thirds majority of the House D) Absolute majority of the total membership of the Houses
 
Answer & Explanation Answer: A) a simple majority of members present and voting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

17 12936
Q:

Which of the following statements BEST describes the role of Communication during Service Operation?

A) Communication is a separate process that needs to be defined and executed with Service Operation B) Good communication is essential for successful Service Operation, just as it is for any other phase of the Lifecycle
C) Communication is more important in Service Operation than in any other stage of the Service Lifecycle D) Communication is defined as part of all processes and is executed in Service Operation
 
Answer & Explanation Answer: B) Good communication is essential for successful Service Operation, just as it is for any other phase of the Lifecycle

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 12931
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 12899
Q:

Which one among the following is the heaviest

A) 1 mole of water molecules B) 1 mole of ammonia molecules
C) 1 mole of sodium atoms D) 1 mole of hydrogen molecules
 
Answer & Explanation Answer: C) 1 mole of sodium atoms

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

30 12891
Q:

What is MESI?

Answer

The MESI protocol is also known as illinois protocol due to its development the University of illinois at Urbana-Champaign and MESI is a widely used cache coherency and memory coherence protocol.


MESI is the most common which supports write-back cache. its use in personal computers became widespread with the introduction of intel's pentium processor to "support the more efficient write-back cache in addition to the write-through cache previously used by the Intel 486 processor"/

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

21 12869