Questions

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

Software designed for a specific purpose is called as

A) System software B) Application software
C) Specific software D) None of the above
 
Answer & Explanation Answer: B) Application software

Explanation:

Software designed for a specific purpose is called as Application software.

Report Error

View Answer Report Error Discuss

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

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

Organisms that depend only on raw plant products are said to be 

A) herbivorous B) vegetarian
C) carnivorous D) omnivorous
 
Answer & Explanation Answer: A) herbivorous

Explanation:

Herbivorous organisms are those that take for their food, plant parts like leaves raw in contrast to vegetarian, which means that plant products are taken raw or after being cooked.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2923
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:

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