Questions

Q:

Select the antonym of
Humdrum

A) tedious B) trite
C) drab D) fascinating
 
Answer & Explanation Answer: D) fascinating

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams

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

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:

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:

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

Which describes how Africa was divided into countries?

A) Ethnic groups were each given their own country B) Artificial political unity was attempted
C) Boundaries were made according to language similarities D) Nomadic peoples were given control of their lands
 
Answer & Explanation Answer: A) Ethnic groups were each given their own country

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2443