Questions

Q:

Which is the only snake that builds nests?

A) Python B) Anaconda
C) Viper D) King Cobra
 
Answer & Explanation Answer: D) King Cobra

Explanation:

Which_is_the_only_snake_that_builds_nests1537938937.jpg image

 

The longest venomous snake The King Cobra is the only snake that build nests for its eggs.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

4 2641
Q:

Who has been elected as Chairman and CEO of KPMG India in 2017 ?

A) Richard Rekhy B) John Veihmeyer
C) Subir Moitra D) Arun M Kumar
 
Answer & Explanation Answer: D) Arun M Kumar

Explanation:

KPMG in India announced the election of Arun M. Kumar as Chairman and Chief Executive Officer of the firm for a five-year term, on February 5, 2017.
Arun Kumar succeeds Richard Rekhy, who led the firm as CEO for over four years. Arun Kumar was elected by the KPMG India Board and ratified by the India Partners. The firm executed a well-defined governance process for the selection of the CEO that aligns with the objective of building on its success as well as attracting the best talent available for this role. Arun Kumar brings a wealth of international leadership experience to KPMG India, including his tenure in public service in the United States for the last three years as Assistant Secretary of Commerce for Global Markets and Director General of US and Foreign Commercial Service in the Obama Administration.

Report Error

View Answer Report Error Discuss

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

5 2641
Q:

Which article describes the importance of Free & Compulsory Education for children between 6-14 years in India?

A) 21A B) 21B
C) 21C D) 21D
 
Answer & Explanation Answer: A) 21A

Explanation:

The Right of Children to Free and Compulsory Education Act or Right to Education Act (RTE) which describes the importance of free and compulsory education for children between 6 and 14 in India is enacted under Article 21A of the Indian Constitution.

Report Error

View Answer Report Error Discuss

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

24 2640
Q:

How fast do satellites orbit the earth?

A) 28,000 kmph B) 26,000 kmph
C) 17,500 kmph D) 22,500 kmph
 
Answer & Explanation Answer: A) 28,000 kmph

Explanation:

Satellites orbit the earth at a speed of 28,000 kmph.

Satellites that are further away actually travel slower. The International Space Station has a Low Earth Orbit, about 400 kilometers (250 miles) above the earth's surface. Objects orbiting at that altitude travel about 28,000 kilometers per hour (17,500 miles per hour).

Report Error

View Answer Report Error Discuss

5 2640
Q:

What is the term used in tennis when the score is 40-40?

A) Ace B) Led
C) Deuce D) Tie
 
Answer & Explanation Answer: C) Deuce

Explanation:

When both sides have won the same number of points then: when each side has won one, or two, points, the score is described as "15-all" and "30-all" (or "15-up" and "30-up"), respectively.

However, if each player has won three points, the score is called as "deuce", not "40–all". From that point on in the game, whenever the score is tied, it is described as "deuce", regardless of how many points have been played.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

4 2640
Q:

Which of the following civilization is associated with 'Achaemenid Empire'?

A) Chinese Civilization B) Iranian Civilization
C) Egyptian Civilization D) Arab Civilization
 
Answer & Explanation Answer: B) Iranian Civilization

Explanation:

In the middle of the 6th centuryB.C, a powerful empire was established in Iran this empire which lasted over two centuries is known as the Achaemenid Empire. The founder of this Empire was Cyrus with his capital at pasargadae. In 539 B.C, cyrus defeated the Babylonians and extended his empire over a vast territory up to Asia Miner. His successor was Darius I (522-486 B.C).

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2639
Q:

Which of these is not related to the great depression?

A) Drop in profits B) Drop in income
C) Drop in tax revunes D) Drop in health
 
Answer & Explanation Answer: D) Drop in health

Explanation:

The Great Depression was a severe worldwide economic depression that took place mostly during the 1930s, beginning in the U.S. The timing of the Great Depression varied across nations; in most countries it started in 1929 and lasted until the late-1930s. It was the longest, deepest, and most widespread depression of the 20th century. In the 21st century, the Great Depression is commonly used as an example of how far the world's economy can decline.

Report Error

View Answer Report Error Discuss

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

2 2639
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2638