Questions

Q:

Where is headquaters of Pan American Health Organisation

A) Mexico B) Washington DC
C) Ottawa D) New York
 
Answer & Explanation Answer: A) Mexico

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

3 1956
Q:

Which organization is an interest group?

A) The National Rifle Association B) The National Right to Life organization
C) The National Organization for Women D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

An interest group is an organization whose members share common concerns and try to influence government policies affecting those concerns. Interest groups are also known as lobbies.

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

2 1956
Q:

What would be the output of the following program?

main()

{

  int i=2 ;

  printf ("\n%d%d", ++i, ++i );

}

Answer

Output may vary from compiler to compiler.


The order of evaluation of the arguments to a function call is unspecified.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1956
Q:

Who started Shudhi Movement?

A) Dayananda Saraswathy B) Sri Aurobindo
C) Swami Vivekananda D) Yashoda Bhai
 
Answer & Explanation Answer: A) Dayananda Saraswathy

Explanation:

Shudhi Movement was started by Dayananda Saraswathy.

Report Error

View Answer Report Error Discuss

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

3 1956
Q:

What can a location extension do?

Answer

Assist nearby customers in finding or calling your nearest location.

Report Error

View answer Workspace Report Error Discuss

0 1955
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 1955
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 1955
Q:

Hydrogen bonds and hydrophilic interactions are

A) Strong chemical bonds that hold together the atoms within a molecule B) Weak chemical bonds that hold together the atoms within a molecule
C) Strong chemical bonds that link together separate molecules D) Weak chemical bonds that link together separate molecules
 
Answer & Explanation Answer: D) Weak chemical bonds that link together separate molecules

Explanation:
Report Error

View Answer Report Error Discuss

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

1 1955