Questions

Q:

What was India's rank in the latest ICC One Day International Rankings?

A) 1st B) 2nd
C) 3rd D) 4th
 
Answer & Explanation Answer: B) 2nd

Explanation:

India's rank in the latest ICC One Day International Rankings is Second. England tops the list followed by India, South Africa, New Zealand, Pakistan, Australia in the list.

 

Whereas India's rank in the latest ICC Test International Rankings is First followed by South Africa and England in 2nd and 3rd places.

Report Error

View Answer Report Error Discuss

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

1 2351
Q:

Which of the following is UN special agency and not programme

A) UNDP B) UNIFEM
C) IBRD D) UNFPA
 
Answer & Explanation Answer: A) UNDP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

3 2350
Q:

Which of these birds cannot fly?

A) Kiwi B) Penguin
C) Ostrich D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

9 2350
Q:

Write a program for matrix multiplication in c

Answer

#include <stdio.h>


int main() {


  int a[5][5], b[5][5], c[5][5], i, j, k, sum = 0, m, n, o, p;


  printf( "\nEnter the row and column of first matrix" );


  scanf( "%d %d", &m, &n );


  printf( "\nEnter the row and column of second matrix" );


  scanf( "%d %d", &o, &p );


  if(n!=o) {


      printf( "Matrix mutiplication is not possible" );


      printf( "\nColumn of first matrix must be same as row of second matrix" );


  }


  else {


      printf( "\nEnter the First matrix" );


      for( i=0; i<m; i++ )


      for( j=0; j<n; j++ )


           scanf( "%d", &a[i][j] );


      printf( "\nEnter the Second matrix" );


      for( i=0; i<o; i++ )


      for( j=0; j<p; j++ )


           scanf( "%d", &b[i][j] );


      printf( "\nThe First matrix is\n" );


      for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<n; j++ ) {


           printf( "%d\t", a[i][j] );


      }


      }


      printf( "\nThe Second matrix is\n" );


      for( i=0; i<o; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", b[i][j] );


      }       


      }


      for( i=0; i<m; i++ )


      for( j=0; j<p;j++ )


           c[i][j] = 0;


      for( i=0; i<m; i++ ) { //row of first matrix


      for( j=0; j<p; j++ )  {  //column of second matrix


           sum = 0;


           for( k=0; k<n; k++ )


               sum = sum + a[i][k]*b[k][j];


           c[i][j] = sum;


      }


      }


  }


  printf( "\nThe multiplication of two matrix is\n" );


  for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", c[i][j] );


      }


  }


  return 0;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2350
Q:

Which railway station became the first of South Central Railway zone to hoist a tricolour flag (100ft)?

A) Secunderabad B) Chennai
C) Bengaluru D) Panaji
 
Answer & Explanation Answer: A) Secunderabad

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2350
Q:

Who becomes 1st player to win all 3 top ICC Awards?

A) Rohit Sharma B) Virat Kohli
C) M S Dhoni D) Shaun Marsh
 
Answer & Explanation Answer: B) Virat Kohli

Explanation:

who_becomes_1st_player_to_win_all_3_top_ICC_Awards1548139116.jpg image

 

Virat Kohli becomes 1st player to win all 3 top ICC Awards :-

1. Sir Garfield Sobers Trophy for ICC Cricketer of the Year,

2. ICC Men’s Test Player of the Year &

3. ICC ODI Player of the Year for 2018.

Report Error

View Answer Report Error Discuss

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

1 2350
Q:

The 8th World CSR Congress 2019 in?

A) Mumbai B) Hyderabad
C) Kolkata D) Pune
 
Answer & Explanation Answer: A) Mumbai

Explanation:

The 8th World CSR Congress 2019 in Mumbai.

Report Error

View Answer Report Error Discuss

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

1 2349
Q:

Glass is made of the mixture of

A) sand and silicates B) quartz and sand
C) mica and quartz D) mica and silicates
 
Answer & Explanation Answer: A) sand and silicates

Explanation:

A glass is made of liquid sand. You can make glass by heating ordinary sand and made into a liquid and mix with silicates to form a glass.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

6 2349