Questions

Q:

Difference between Union and Union all?

Answer

The difference between Union and Union all is that Union all will not eliminate duplicate rows, instead it just pulls all rows from all tables fitting your query specifics and combines them into a table. A UNION statement effectively does a SELECT DISTINCT on the results set.

Report Error

View answer Workspace Report Error Discuss

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

If an animal is an ectotherm, it has?

A) A skeleton on the inside of its body B) A body that does not produce much internal heat
C) A skeleton on the outside of its body D) A body that regulates its own internal temperature
 
Answer & Explanation Answer: B) A body that does not produce much internal heat

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Rearrange the parts of the sentence in correct order.
 
The whole biosphere, like
 
P : a chemically dynamic state
Q : the individual organisms that
R : live inside it, exists in

A)

RQP

B)

QRP

C)

QPR

D)

PQR

 
Answer & Explanation Answer: B)

QRP



Explanation:
Report Error

View Answer Report Error Discuss

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

1 1962
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