Questions

Q:

The West Bengal government has rolled out a scheme, in an attempt to combat human trafficking. What is the name of the scheme?

A) Swayangsiddha B) Swablamban
C) Annpurna D) Ayushman Bengal
 
Answer & Explanation Answer: A) Swayangsiddha

Explanation:

Swayangsiddha which means self-reliance is the scheme that has been started by the West Bengal police in all districts in an attempt to combat human trafficking.

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:

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:

Systems biology is mainly an attempt to

A) Understand the behavior of entire biological systems B) Speed up the technological application of scientific knowledge
C) Analyze genomes from different species. D) None of the above
 
Answer & Explanation Answer: A) Understand the behavior of entire biological systems

Explanation:

An approach to studying biology that aims to model the dynamic behavior of whole biological systems based on a study of the interactions among the system's parts.

Report Error

View Answer Report Error Discuss

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

1 2333
Q:

Which amongst the following is not a component of monetary policy in India?

A) Repo rate B) Moral suasion
C) Credit Rationing D) Public Debt
 
Answer & Explanation Answer: D) Public Debt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 2333
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:

Independent is the newspaper founded by

A) B.R. Ambedkar B) Jawaharlal Nehru
C) Mothilal Nehru D) Bipin Chandra Pal
 
Answer & Explanation Answer: C) Mothilal Nehru

Explanation:
Report Error

View Answer Report Error Discuss

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

7 2333
Q:

Menstruation is triggered by a drop in the levels of

A) progesterone B) relaxin
C) FSH D) LH
 
Answer & Explanation Answer: A) progesterone

Explanation:

The principal hormone secreted by the corpus luteum is progesterone. Menstruation is triggered by a drop in the levels of progesterone.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

4 2332
Q:

Increasing the Alveolar ventilation rate will

A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli B) Decrease the partial pressure of oxygen in the alveoli
C) Increase the partial pressure of carbon dioxide in the alveoli D) Have no effect on either partial pressure or diffusion rate of gases
 
Answer & Explanation Answer: A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli

Explanation:

Increasing the Alveolar ventilation rate will increase the rate of carbon dioxide diffusion from the blood to the alveoli.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2331