Questions

Q:

What is fingerprint powder made of?

A) Rosin B) Black ferric oxide
C) Lamp black D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2344
Q:

Which company is nicknamed Big Blue?

A) Infosys B) IBM
C) Oracle D) Accenture
 
Answer & Explanation Answer: B) IBM

Explanation:

IBM - International Business Machines Corporation has a nickname as Big Blue.

Report Error

View Answer Report Error Discuss

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

0 2344
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 2344
Q:

Gametes are produced by the process of

A) Mitosis B) Meiosis
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Meiosis

Explanation:

A gametes are haploid cells as they have only one set of chromosomes. Meiosis is a process of cellular reproduction in which both male and female gametes are formed. During meiosis, the DNA is only replicated or copied one time.

Gametes_are_produced_by_the_process_of1560944987.png image

Report Error

View Answer Report Error Discuss

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

3 2344
Q:

Mina is the tribe of

A) Assam B) Rajasthan
C) Bihar D) Tripura
 
Answer & Explanation Answer: B) Rajasthan

Explanation:
Report Error

View Answer Report Error Discuss

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

19 2344
Q:

How long is a term in the house of representatives?

A) 5 B) 2
C) 4 D) 6
 
Answer & Explanation Answer: B) 2

Explanation:

Members of the House of Representatives serve two-year terms and are considered for reelection every even year.

Report Error

View Answer Report Error Discuss

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

2 2343
Q:

What document is the supreme law of the land?

A) The constitution B) The senate
C) The bill D) All of the above
 
Answer & Explanation Answer: A) The constitution

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2343
Q:

Planning Process Group

What are the Project Management Processes included in the Planning Process Group?

Answer



      • Develop Project Management Plan

      • Scope Planning

      • Scope Definition

      • Create WBS

      • Activity Definition

      • Activity Sequencing

      • Activity Resource Estimating

      • Activity Duration Estimating

      • Schedule Development

      • Cost Estimating

      • Cost Budgeting

      • Quality Planning

      • Human Resource Planning

      • Communications Planning

      • Risk Management Planning

      • Risk Identification

      • Qualitative Risk Analysis

      • Quantitative Risk Analysis

      • Risk Response Planning

      • Plan purchases and Acquisitions

      • Plan Contracting



Report Error

View answer Workspace Report Error Discuss

0 2343