Questions

Q:

Who was the first Bengal Governor General of India?

A) Warren Hastings B) Lord Canning
C) William Bentick D) Lord Dalhousie
 
Answer & Explanation Answer: A) Warren Hastings

Explanation:

The first Bengal Governor General of India was Warren Hastings.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2005
Q:

Write a c program to check whether a number is strong or not.

Answer

#include<stdio.h>
int main(){
  int num,i,f,r,sum=0,temp;

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

      while(i<=r){
         f=f*i;
        i++;
      }
      sum=sum+f;
      num=num/10;
  }
  if(sum==temp)
      printf("%d is a strong number",temp);
  else
      printf("%d is not a strong number",temp);

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2005
Q:

What is SMP?

Answer

To achieve maximum efficiency and reliability a mode of operation known as symmetric multiprocessing is used. In essence, with SMP any process or threads can be assigned to any processor.

Report Error

View answer Workspace Report Error Discuss

1 2005
Q:

Isotopes are atoms of the same element that have different

A) numbers of neutrons B) numbers of electrons
C) numbers of protons D) atomic numbers
 
Answer & Explanation Answer: A) numbers of neutrons

Explanation:

Isotopes are variations of an element that have the same charge as the original element, but a different mass, which is caused by either more/less neutrons in the nucleus.

 

Report Error

View Answer Report Error Discuss

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

3 2005
Q:

Magic Marker was invented by _______.

A) Adolphe Sax B) Albert Bruce Sabin
C) Sidney Rosenthal D) Hyman George Rickover
 
Answer & Explanation Answer: C) Sidney Rosenthal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: Bank Exams

0 2004
Q:

Which Indian state has the maximum number of Lok Sabha constituencies?

A) Uttar Pradesh B) Madhya Pradesh
C) Andhra Pradesh D) Gujarat
 
Answer & Explanation Answer: A) Uttar Pradesh

Explanation:

Indian state that has the maximum number of Lok Sabha constituencies is Uttar Pradesh with 80 Lok sabha seats.

Report Error

View Answer Report Error Discuss

3 2004
Q:

What is the Currency of Qatar?

A) Riyal B) kwanza
C) Nuevo Sol D) Peso
 
Answer & Explanation Answer: A) Riyal

Explanation:

Currency of Qatar -RiyalCurrency of Angola -kwanzaCurrency of Peru –Nuevo SolCurrency of Philippines –PesoCurrency of Iraq –Dinar

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 2004
Q:

Code coverage is used as a measure of what?

A) Trends analysis B) Time Spent Testing
C) Defects D) Test Effectiveness
 
Answer & Explanation Answer: D) Test Effectiveness

Explanation:

Code coverage is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2004