Questions

Q:

Tides in the sea are caused by 

A) Effect of Sun B) Effect of Moon
C) Combined effect of Moon and Sun D) Gravitational Force of Earth and Sun
 
Answer & Explanation Answer: C) Combined effect of Moon and Sun

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2269
Q:

What is a deep valley between cliffs often carved from the landscape by a river?

Answer

Canyon

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2269
Q:

Which among the following type of soil has the largest area covered in India?

A) Laterite B) Alluvial
C) Black D) Red
 
Answer & Explanation Answer: B) Alluvial

Explanation:

Alluvial type of soil has the largest area covered in India. Alluvial soils are fine-grained fertile soil deposited by water flowing over flood plains or in river beds. Most of the soil is Sandy and clayey soils are not uncommon.

Report Error

View Answer Report Error Discuss

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

7 2268
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 2267
Q:

Where is the headquaters of the Universal postal Union

A) Switzerland B) UK
C) Iran D) India
 
Answer & Explanation Answer: A) Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2267
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 2267
Q:

Which of the following is a World Bank group of five institutions

A) IMF B) IDA
C) ILO D) ITU
 
Answer & Explanation Answer: B) IDA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2266
Q:

Select the antonym of
horrify

A) affright B) petrify
C) appall D) soothe
 
Answer & Explanation Answer: D) soothe

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

0 2266