Questions

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 2354
Q:

Eight States have achieved more than 99% household electrification prior to the launch of 'Saubhagya Scheme'. Which one of the following is not among them?

A) Kerala B) Punjab
C) Himachal Pradesh D) Madhya Pradesh
 
Answer & Explanation Answer: D) Madhya Pradesh

Explanation:

Saubhagya –‘Pradhan Mantri Sahaj Bijli Har Ghar Yojana’ was launched in September2017 with the aim to provide access to electricity to all remaining households in the country.Eight States which have already achieved more than 99 percent household electrification prior to launch of Saubhagya scheme are ineligible for participation under the award scheme. These eight states are Andhra Pradesh, Gujarat, Goa, Haryana, Himachal Pradesh, Kerala, Punjab and Tamil Nadu.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2354
Q:

Which of the following is a renewable resource of energy?

A) Hydrogen fuel B) Wind energy
C) Solar energy D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Renewable energy is energy that is collected from renewable resources, which are naturally replenished on a human timescale, such as sunlight, wind, rain, tides, waves, and geothermal heat.

Report Error

View Answer Report Error Discuss

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

5 2354
Q:

Which of the following is a micro nutrient?

A) Mg B) Cl
C) P D) Ca
 
Answer & Explanation Answer: B) Cl

Explanation:

The micronutrients (or trace minerals): boron (B), chlorine (Cl), manganese (Mn), iron (Fe), zinc (Zn), copper (Cu), molybdenum (Mo), nickel (Ni). and cobalt (Co).

Report Error

View Answer Report Error Discuss

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

1 2353
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 2352
Q:

A persistent infection is one in which

A) viral replication is unusually slow B) the disease process occurs gradually over a long period
C) the virus remains in equilibrium with the host without causing a disease D) All of the above
 
Answer & Explanation Answer: B) the disease process occurs gradually over a long period

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2352
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 2352
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 2352