Questions

Q:

'Agronomy' is the practice of raising ______________

A) Plants and Animals B) Crop plants
C) Agriculture D) Fruit plants only
 
Answer & Explanation Answer: A) Plants and Animals

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 2336
Q:

The outermost layer of the earth is called

A) Core B) Mantle
C) Crust D) Inner core
 
Answer & Explanation Answer: C) Crust

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2335
Q:

Which 6 banking entities of India became history on 1 April 2017 as they were merged with State Bank of India ?

Answer

Five associate banks of SBI – State Bank of Bikaner and Jaipur (SBBJ), State Bank of Hyderabad (SBH), State Bank of Mysore (SBM), State Bank of Patiala (SBP) and State Bank of Travancore (SBT), besides Bharatiya Mahila Bank (BMB) became part of the State Bank of India (SBI) on 1 April 2017. This merger catapulted SBI to among the top 50 banks in the world.


– With this six-way mega merger, the merged entity (SBI) will have a deposit base of more than Rs. 26 lakh crore and advances level of Rs. 18.50 lakh crore. It will have a total customer base of 37 crore with a branch network of around 24,000 and nearly 59,000 ATMs across the country.


– The government had in February 2017 approved the merger of these five associate banks with SBI. Later in March 2017, the Cabinet approved merger of BMB as well.


– SBI first merged State Bank of Saurashtra with itself in 2008. Two years later, State Bank of Indore was merged with it.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

3 2334
Q:

Who is appointed as the UNICEF India’s Youth Ambassador?

A) P.V. Sindhu B) Hima Das
C) Mithali Raj D) Harmanpreet Kaur
 
Answer & Explanation Answer: B) Hima Das

Explanation:

Hima Das, nicknamed the "Dhing Express", is an Indian sprint runner from the state of Assam is appointed as the UNICEF India’s Youth Ambassador.

 

She holds the current Indian national record in 400 metres with a timing of 50.79 s that she clocked at the 2018 Asian Games in Jakarta, Indonesia

Report Error

View Answer Report Error Discuss

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

2 2334
Q:

Which organelles are unique to plant cells?

A) Central vacuole B) Chlorophyll
C) Cell wall D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2334
Q:

To which class do honey bees bees belong?

A) Insecta B) Apidae
C) Arthropoda D) Hymenoptera
 
Answer & Explanation Answer: A) Insecta

Explanation:

Honey bees bees belong to the class insects or insecta.

Report Error

View Answer Report Error Discuss

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

11 2334
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 2333
Q:

Which type of bond is found in sodium bromide?

A) Ionic B) Covalent
C) Polar covalent D) None of the above
 
Answer & Explanation Answer: A) Ionic

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2333