Questions

Q:

What goes Up and Down without Moving ?

A) Balloon B) Temperature
C) Lift D) Rain
 
Answer & Explanation Answer: B) Temperature

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Word Puzzles
Exam Prep: Bank Exams

19 2445
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:

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:

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:

Who can participate in the proceedings of both the houses without even being a member ?

A) Solicitor General B) Attorney General
C) Comptroller & Auditor General D) All of the above
 
Answer & Explanation Answer: B) Attorney General

Explanation:

Attorney General can participate in the proceedings of both the houses without even being a member.

Report Error

View Answer Report Error Discuss

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

2 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
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 expansion of the rail networks led to

A) Growth in trading between parts of the country B) Growth in Steel industry
C) Both A & B D) Decline in textile industry
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The expansion of the rail networks led to better transport system for trading between many parts of the nation and the steel is the main component in making the rails and the locomotive itself resulting in the growth of the steel industry.

Report Error

View Answer Report Error Discuss

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

1 2443