Questions

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

What do genes code for?

A) Ptoteins B) DNA
C) RNA D) None
 
Answer & Explanation Answer: A) Ptoteins

Explanation:

The genome of an organism is inscribed in DNA, or in some viruses RNA. The portion of the genome that codes for a protein or an RNA is referred to as a gene. Those genes that code for proteins are composed of tri-nucleotide units called codons, each coding for a single amino acid.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

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

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:

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:

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:

Glass is a.........mixture of metallic...........

A) homogenous, sulphates B) homogenous, silicates
C) heterogenous, carbonates D) heterogenous, nitrates
 
Answer & Explanation Answer: B) homogenous, silicates

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

0 3006