Questions

Q:

The primary goal of conservation biology is to

A) counter the loss of biodiversity B) estimate the total number of species that exist
C) integrate human culture back into nature D) catalogue species
 
Answer & Explanation Answer: A) counter the loss of biodiversity

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2421
Q:

Which of the following pair is matched correctly?

A) Bharatanatyam - Andhra Pradesh B) Kuchipudi - Madhya Pradesh
C) Kathakali - Kerala D) Kathak - Tamil Nadu
 
Answer & Explanation Answer: C) Kathakali - Kerala

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture
Exam Prep: Bank Exams

15 2421
Q:

Rearrange the parts of the sentence in correct order.
 
Gender inequality has
 
P :it reduces economic growth
Q :development goals as
R :adverse impact on

A) RPQ  B) RQP
C) PRQ D) QPR
 
Answer & Explanation Answer: B) RQP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2420
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 2420
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 2420
Q:

When hot water is placed into an empty water bottle, the bottle keeps its shape and does not soften. What type of plastic is the water bottle made from?

A) Thermoplastic B) PVC
C) Polyurethane D) Thermosetting
 
Answer & Explanation Answer: D) Thermosetting

Explanation:

Thermoset, or thermosetting, plastics are synthetic materials that strengthen during being heated, but cannot be successfully remouldedor reheated after their initial heat-forming. This contrasts withthermoplastics, which soften when heated and harden and strengthen after cooling. Thermoplastics can be heated, shaped and cooled as often as necessary without causing a chemical change, while thermosetting plastics will burn when heated after the initial moulding.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

3 2420
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2420
Q:

AT&T designed its first commercial modem, specifically forconverting digital computer data to analog signals fortransmission across its long distance network. What is thename of the modem?

A) Telex B) Memex
C) CompuServe D) Bell 103 dataset
 
Answer & Explanation Answer:

Explanation:

In 1960s AT&T introduces its Data phone, the firstcommercial modem. The first commercial modem made for converting digital computer data at analog signalsfor transmission across long distance networks

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2420