Questions

Q:

Which city has become the first Indian city to have its own logo?

A) Bengaluru B) Hyderabad
C) New Delhi D) Gujarat
 
Answer & Explanation Answer: A) Bengaluru

Explanation:

Bengaluru becomes the first Indian city to get its very own logo

    • Much like New York and Singapore, Bengaluru is set to get its own logo, becoming the first Indian city to do so.

 

Report Error

View Answer Report Error Discuss

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

7 2726
Q:

Which elements are most abundant in living organisms?

A) oxygen, nitrogen, carbon, hydrogen, sulfur, and phosphorus B) carbon, potassium, iron, magnesium, hydrogen, and nitrogen
C) hydrogen, carbon, calcium, potassium, oxygen, and phosphorus D) oxygen, calcium, phosphorus, sodium, hydrogen, and carbon
 
Answer & Explanation Answer: A) oxygen, nitrogen, carbon, hydrogen, sulfur, and phosphorus

Explanation:

Living organisms often contain trace amounts of several elements, but the most abundant ones are oxygen, carbon, hydrogen, nitrogen, calcium, sulphur and phosphorus.

Report Error

View Answer Report Error Discuss

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

5 2726
Q:

CFS Scheme means

A) Concessional Financing Scheme B) Controversial Fylum Scheme
C) Country Federation Scheme D) None of the above
 
Answer & Explanation Answer: A) Concessional Financing Scheme

Explanation:

CFS Scheme means Concessional Financing Scheme. 

Under the CFS, the Govt. of India has been supporting Indian Entities bidding for strategically important infrastructure projects abroad since 2015-16.

 

The Union Cabinet has recently approved Extension of Concessional Financing Scheme (CFS) to support Indian Entities bidding for strategically important infrastructure projects abroad.

Report Error

View Answer Report Error Discuss

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

3 2725
Q:

What literary period is the beat generation aligned with?

A) Postmodernism B) Naturalism
C) Modernism D) Realism
 
Answer & Explanation Answer: A) Postmodernism

Explanation:

Postmodernism is the literary period, the beat generation aligned with. Postmodernism refers to mid to late 20th century.

Report Error

View Answer Report Error Discuss

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

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

IQTA system abolished by

A) Illtumish B) Bin Tughluq
C) Alauddin Khalji D) None of the above
 
Answer & Explanation Answer: C) Alauddin Khalji

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2724
Q:

Fat is completely digested in the

A) small intestine B) mouth
C) large intestine D) stomach
 
Answer & Explanation Answer: A) small intestine

Explanation:

Fat is completely digested in the small intestine of the body.

Report Error

View Answer Report Error Discuss

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

4 2724
Q:

Nucleotides are attached by bonds between the

A) phosphates and sugars B) nitrates and sugars
C) nitrates and phosphates D) sugars and hydrates
 
Answer & Explanation Answer: A) phosphates and sugars

Explanation:

In DNA, adjacent nucleotides are linked by a phosphodiester bond: a covalent bond is formed between the 5' phosphate group of one nucleotide and the 3'-OH group of another.

 

Hence, in this manner, each strand of DNA has a "backbone" of phosphate-sugar-phosphate-sugar-phosphate.

Report Error

View Answer Report Error Discuss

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

1 2723