Questions

Q:

What sugar is found in RNA?

A) Deoxyribose B) Ribose
C) Pentose D) Sucrose
 
Answer & Explanation Answer: B) Ribose

Explanation:

RNA - ribonucleic acid is a type of nucleic acid. The sugar contained in it is called Ribose.

Report Error

View Answer Report Error Discuss

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

4 2923
Q:

Who was an early proponent of functionalism?

A) Darwin B) Charles
C) William James D) Wyndt
 
Answer & Explanation Answer: C) William James

Explanation:

who_was_an_early_proponent_of_functionalism1544613019.jpg image

William James was an early proponent of functionalism.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

3 2923
Q:

The book ' Redesigning the Aeroplane While Flying : Reforming Institutions' is written by

Answer

Arun Maira

Report Error

View answer Workspace Report Error Discuss

5 2923
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 2923
Q:

In contrast to investment, consumption is

A) relatively unstable B) measurable
C) unmeasurable D) relatively stable
 
Answer & Explanation Answer: D) relatively stable

Explanation:

In contrast to investment, consumption is relatively stable.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2922
Q:

A Book always has

A) Preface B) Text
C) Index D) Page
 
Answer & Explanation Answer: D) Page

Explanation:

A Book always has Pages. Without pages it can't be called as a book. A book can be either with or without preface, text or index but it can't be without a page.

 

Hence, A Book always has page.

Report Error

View Answer Report Error Discuss

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

1 2922
Q:

The most abundant gas in the atmosphere is

A) Nitrogen B) Argon
C) Oxygen D) Helium
 
Answer & Explanation Answer: A) Nitrogen

Explanation:

The atmosphere is a mixture of several gases. Nitrogen is the most abundant gas in the atmoshere and oxygen is next to it. It is 78% in the atmosphere and 21% is oxygen. Remaining 1% is all other gases like argon, hydrogen, neon, etc...

Report Error

View Answer Report Error Discuss

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

5 2922
Q:

The study of trees is called

A) Histology B) Andreology
C) Sistology D) Dendrology
 
Answer & Explanation Answer: D) Dendrology

Explanation:

The study of trees is called Dendrology.

Report Error

View Answer Report Error Discuss

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

2 2921