Questions

Q:

Which of the following is true about compounds?

A) They are substances B) They have properties similar to those of their component elements
C) They can be physically separated into their component elements D) They have compositions that vary
 
Answer & Explanation Answer: A) They are substances

Explanation:

Compounds are substances is true about them.

Report Error

View Answer Report Error Discuss

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

1 3007
Q:

Cricket is the national game of which country?

A) Australia B) India
C) Canada D) Spain
 
Answer & Explanation Answer: A) Australia

Explanation:

Cricket is the national game of Australia.

Report Error

View Answer Report Error Discuss

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

8 3007
Q:

Which African countries are the members of the East African Development Bank

A) Kenya B) Tanzania
C) Uganda D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

3 3007
Q:

Vasco de Gama was a

A) Australian Navigator B) Portuguess explorer
C) British explorer D) French explorer
 
Answer & Explanation Answer: B) Portuguess explorer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

1 3007
Q:

What is the difference between asset management and invest management?

Answer

Investment and asset are really close in meaning. Investment is when you put your money in stock, bond or other financial instruments. Whereas Asset is what you own generally reffered to land, proprietorship , factory, etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

2 3006
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3006
Q:

Capital of Belarus -

A) Praia B) Minsk
C) Cairo D) Vienna
 
Answer & Explanation Answer: B) Minsk

Explanation:

Belarus is a European country whose capital city is Minsk.

Report Error

View Answer Report Error Discuss

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

10 3006
Q:

UNIVAC is

A) Universal Automatic Computer B) Universal Array Computer
C) Unvalued Automatic Computer D) Unique Automatic Computer
 
Answer & Explanation Answer: A) Universal Automatic Computer

Explanation:
Report Error

View Answer Report Error Discuss

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

3 3005