Questions

Q:

Diameter of a Ping Pong Ball?

A) 37 mm B) 38 mm
C) 40 mm D) 42 mm
 
Answer & Explanation Answer: C) 40 mm

Explanation:

The ball with which Table Tennis is played is called Ping Pong Ball.

According to the International rules, the diameter of the ping pong ball must be not less than 39.5 millimeters and not greater than 40.5  millimeters having a mass of 2.7 grams.

Report Error

View Answer Report Error Discuss

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

14 4037
Q:

' Ashoka Chakra ' is awarded for 

A) Outstanding contribution to literature B) Gallantry by children
C) Acts of gallantry in the presence of the enemy D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy
 
Answer & Explanation Answer: D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4037
Q:

Who won the US Open 2018?

A) Brooks Koepka B) Tommy Fleetwood
C) T. Finau D) D. Johnson
 
Answer & Explanation Answer: A) Brooks Koepka

Explanation:

Brooks Koepka shot a final round 68 for 281 (+1) to win his second straight U.S. Open, one stroke ahead of runner-up Tommy Fleetwood, who closed with the sixth round of 63 in U.S. Open history.

Report Error

View Answer Report Error Discuss

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

2 4035
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4033
Q:

A bond formed by the transfer of electrons between atoms of the elements is called

A) Ionic bond B) Covalent bond
C) Co-ordinate bond D) Hydrogen bond
 
Answer & Explanation Answer: A) Ionic bond

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4033
Q:

In a vacuum, all electromagnetic waves have the same

A) Velocity B) Wavelenth
C) Frequency D) All the above
 
Answer & Explanation Answer: A) Velocity

Explanation:

When traveling in a vacuum, electronic waves from the electromagnetic spectrum all travel at the same speed. Velocity is speed with direction, so they would all travel at the same velocity, realtively speaking. But frequency and wavelength are quite different.

Report Error

View Answer Report Error Discuss

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

8 4032
Q:

I am a 6 letter word. 2,5,6 used by people to move from one place to another. 4,3,2 is also used by people to move from one place to another. 4,5,2 is the young one of carnivorous animal. If u remve my 1st, 2nd, 3rd and 4th letters its everybody. What am I?

Answer

It is ABACUS.


Words formed are as below 


BUS
CAB
CUB
US

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams

28 4031
Q:

Is Air a Mixture?

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, Air is a Mixture.


Air is considered as mixture for the following reasons ;


1. Air can be separated into its components like N2, O2 , Argon and CO2 by the process of fractional distillation of liquid air.


2. Air shows the properties of all the gases present in the atmosphere.
For example : Oxygen is good Supporter of combustion. Hence air also is good supporter of combustion.


3. Air does not have a fixed formula.


4. Air has a variable composition because air at different places contains different amount of gases.


5. Heat or Light energy is neither absorbed nor released when air is prepared physical by mixing required amount of gases .


6. Mixture does have fixed boiling Point. It holds good in case of liquid air.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank PO , Database Administration , IT Trainer

7 4030