Questions

Q:

Which is the largest milk producing country in the world?

A) China B) USA
C) India D) Brazil
 
Answer & Explanation Answer: B) USA

Explanation:
Report Error

View Answer Report Error Discuss

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

1 1962
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 1962
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 1962
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 1961
Q:

What is virtual memory?

Answer

Virtual memory is hardware technique where the system appears to have more memory that it actually does. This is done by time-sharing, the physical memory and storage parts of the memory one disk when they are not actively being used.

Report Error

View answer Workspace Report Error Discuss

0 1961
Q:

Pyranees forms the boundary between 

A) Spain and Portugal B) France and Spain
C) Poland and Russia D) Hungary and Rumania
 
Answer & Explanation Answer: B) France and Spain

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 1961
Q:

Which of the following sports is almost always illegal?

A) Base jumping B) Boxing
C) Basket ball D) Rugby
 
Answer & Explanation Answer: A) Base jumping

Explanation:

Base jumping is almost always illegal.

Report Error

View Answer Report Error Discuss

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

0 1961
Q:

Which of the following is a healthy blood pressure level?

A) 120/80 mmHg B) 140/90 mmHg
C) 90/60 mmHg D) 120/140 mmHg
 
Answer & Explanation Answer: A) 120/80 mmHg

Explanation:

Healthy blood pressure ranges from 120/80 to 90/60.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

4 1961