Questions

Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.

Discordant

A) Aggressive B) Agreeable
C) Noisy D) Differ
 
Answer & Explanation Answer: A) Aggressive

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

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 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:

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:

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:

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:

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:

Something that saves your money is

A) Cost-effective B) Economical
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Something that saves your money is cost-effective and is also called as economical.

Report Error

View Answer Report Error Discuss

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

0 1961