Questions

Q:

The term fourth estate is used in reference to

A) The executive B) Parliament
C) Judiciary D) The Press and newspaper
 
Answer & Explanation Answer: D) The Press and newspaper

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2919
Q:

Iveco, Part of the Fiat group, holds 15 per cent stake in an Indian automobile company. The  company in the question is 

A) AShok Leyland B) Hindustan Motors
C) Tata Motors D) Eitcher
 
Answer & Explanation Answer: A) AShok Leyland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2919
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 2918
Q:

Biogeochemical cycles are crucial to ecosystem function because

A) they keep the planet warm enough for living things to survive B) energy flows through ecosystems in one direction only and is eventually dissipated as heat
C) they prevent catastrophic extinctions D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled
 
Answer & Explanation Answer: D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled

Explanation:

Biogeochemical cycles are crucial to ecosystem function because ::

 

1. Chemical elements are available in only limited amounts and must be recycled.

2. Nutrients and other life-sustaining molecules are in limited supply and must be continually recycled.

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

0 2918
Q:

India's longest rail-road bridge #Bogibeel Bridge has built over which river?

A) Brahmaputra B) Ganga
C) Yamuna D) Godavari
 
Answer & Explanation Answer: A) Brahmaputra

Explanation:

Bogibeel bridge ( 4940 m ) is a combined road and rail bridge over the Brahmaputra river in the north eastern Indian state of Assam between Dhemaji district and Dibrugarh district.

Report Error

View Answer Report Error Discuss

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

7 2918
Q:

Which of the following commands will allow a Linux on iSeries administrator to quickly scan backup tapes for files saved via a tar command on a Linux system?

A) The Linux command mt B) The Linux command cpio
C) The OS/400 command RST option(*print) D) The OS/400 command DSPTAP option(*savrst)
 
Answer & Explanation Answer: B) The Linux command cpio

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2918
Q:

An ecosystem consists of

A) all the plants and animals of an area B) producers, consumers, and decomposers in a particular locality
C) a living community and its environment D) carnivores and herbivores of an area
 
Answer & Explanation Answer: C) a living community and its environment

Explanation:

A living community and its environment is what an ecosystem is.

An_ecosystem_consists_of1535781515.jpg image

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

What is a single celled organism called

A) protoctists B) chromosomes
C) unicellular D) bicellular
 
Answer & Explanation Answer: C) unicellular

Explanation:

An organism is a living thing, and there are two broad categories of organisms: those made up of only a single cell, and those made up of multiple cells.

Single-celled organisms means which contains only one cell are called unicellular organisms. 'Uni-' means 'one,' so the name 'unicellular' literally means 'one cell.'

 

Examples of Unicellular or Single celled organisms ::

 

Prokaryotic organisms like Bacteria,...

Some algae like green algae, euglena,...

Report Error

View Answer Report Error Discuss

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

5 2915