Questions

Q:

India has successfully test-fired the BrahMos supersonic cruise missile from Indian Air Force ___________ fighter aircraft for the first time.

A) Sukhoi-29 MKI B) Sukhoi-32 MKI
C) Sukhoi-31 MKI D) Sukhoi-30 MKI
 
Answer & Explanation Answer: D) Sukhoi-30 MKI

Explanation:

Brahmos, the world’s fastest supersonic cruise missile created history on today after it was successfully flight- tested for the first time from the IAF’s frontline fighter aircraft Sukhoi-30MKI against a sea-based target in the Bay of Bengal.


The armed forces are now capable of launching the Brahmos, which has a strike range of around 290 km and is described as the world’s fastest supersonic cruise missile, from land, sea and air, completing the tactical cruise missile triad for the country.

Report Error

View Answer Report Error Discuss

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

5 2459
Q:

A boy is swinging a ball attached to a string in a horizotal circle. If the string snaps 

A) the ball will travel towards the center of the circle and fall down B) it will continue to travel along a tangent to the circle at the point the ball was at the time of snapping and finally fall down
C) it will fall down at the same place where the string breaks D) None of these
 
Answer & Explanation Answer: B) it will continue to travel along a tangent to the circle at the point the ball was at the time of snapping and finally fall down

Explanation:

The centripetal force having been removed the body cannot  execute the curved path

Report Error

View Answer Report Error Discuss

Filed Under: Physics

2 2458
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 2458
Q:

Which of the statements given below are correct?

 

A) Roger Federer won the Tennis 2017 French Open Men's Singles.

B) In 2018 IPL auctions, Rajasthan Royals retained Steve Smith.

C) Serena Williams won the Tennis 2017 French Open Women's Singles.

 

A) Only B B) B and C
C) A and B D) A, B and C
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 2458
Q:

Who was the first to sail round the world ?

A) Francis Drake B) Columbus
C) Magellan D) Vasco da Gama
 
Answer & Explanation Answer: C) Magellan

Explanation:

Magellan was a Portuguese sailor who was the first to sail round the world.

Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2457
Q:

Which of the following pairs is mismatched?

A) Pila globosa - pearl B) Kenia lacca - lac
C) Apis indica - honey D) Bombyx mori - silk
 
Answer & Explanation Answer: A) Pila globosa - pearl

Explanation:

Pinctada vulgaris is a bivalve from which pearl is obtained.

Report Error

View Answer Report Error Discuss

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

0 2456
Q:

Stars are held together by

A) Gravitational forces B) Electrical forces
C) Ionic forces D) Magnetic forces
 
Answer & Explanation Answer: A) Gravitational forces

Explanation:

A star is a self luminous astronomical object and shines due to internal radiation from the enrgy sources. All stars are held together by their own gravity called Gravitational force.

Stars_are_held_together_by1560151249.jpg image

Report Error

View Answer Report Error Discuss

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

5 2455
Q:

When was the demand for a separate Telangana hit a turning point on?

Answer

The demand for a seperate Telangana hit a turning point on December 16,2010 when around 12-15 lakh attended the 'Telangana Maha Garjana' at Warangal in Andhra pradesh. The rally ste off a chain of events that culminated in the Centre agreeing to form a Telangana state.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics

6 2453