Questions

Q:

Systems biology is mainly an attempt to

A) Understand the behavior of entire biological systems B) Speed up the technological application of scientific knowledge
C) Analyze genomes from different species. D) None of the above
 
Answer & Explanation Answer: A) Understand the behavior of entire biological systems

Explanation:

An approach to studying biology that aims to model the dynamic behavior of whole biological systems based on a study of the interactions among the system's parts.

Report Error

View Answer Report Error Discuss

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

1 2446
Q:

A person who enjoys pain is called

A) Sadist B) Dipsomania
C) Masochist D) Blogomaniac
 
Answer & Explanation Answer: C) Masochist

Explanation:

A person who enjoys in feeling or being pain is called Masochist. The person who enjoys inflicting pain on others is called as Sadist.

Report Error

View Answer Report Error Discuss

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

0 2446
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2445
Q:

Eight members of a club donate Rs. 100 each towards a Relief Fund and the President of the club donates Rs. 50 more than the average donation of all (including President) of them. Then the contribution of the president is

A) 106.25 B) 156.25
C) 56.25 D) 206.25
 
Answer & Explanation Answer: A) 106.25

Explanation:
Report Error

View Answer Report Error Discuss

6 2445
Q:

Who propounded 'Deen-E-Llahi'?

A) Jahangir B) Akbar
C) Shah Jahan D) Humayun
 
Answer & Explanation Answer: B) Akbar

Explanation:

Mughal emperor, Abu'l-Fath Jalal ud-din Muhammad Akbar popularly known as Akbar propounded a syncretic religion called 'Din-i-ilahi' which literally means that "Religion of God".

akbar1533011882.jpg image

His intention in propounding this religion is to merge the best elements of the religions of his empire, and thereby reconcile the differences that divided his subjects.

Report Error

View Answer Report Error Discuss

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

4 2444
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,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=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2444
Q:

Which of the following statement(s) is/are CORRECT?

A) Oxides of non-metals are basic B) Oxides of non-metals are acidic
C) Oxides of metals are acidic D) All options are correct
 
Answer & Explanation Answer: B) Oxides of non-metals are acidic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2444
Q:

The most common economic system in the world is a

A) Mixed B) Command
C) Planned D) Market
 
Answer & Explanation Answer: A) Mixed

Explanation:

Mixed economy is the most common economic system in the world.

Report Error

View Answer Report Error Discuss

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

0 2444