Questions

Q:

Missing letters puzzle

Answer

Answer :  Y


Explanation:    Start on the left hand of the diagram, and move clockwise. Letters are written in alphabetical order, in steps of 10 letters at a time.

Report Error

View answer Workspace Report Error Discuss

4 2381
Q:

The ratio of volume of a cone to that of a cylinder if cylinder radius is reduced by 4 times and its height increased by 8 times of that of the cone, is - 

A) 3:2 B) 2:3
C) 5:7 D) 7:5
 
Answer & Explanation Answer: B) 2:3

Explanation:

Ans. Let radius of the base and height of the cone be ‘r’ & ‘h’ respectively.

Then volume of cone = πr2h/3 For cylinder, radius is reduced by 4 times = r/4 And,  height is increased by 8 folds = 8h Volume of cylinder = πR2H = π(r/4)2 (8h) = (16/8)πr2h = πr2h/2 Ratio of volume of cone to volume of cylinder = (πr2h/3) : (πr2h/2) Or, Ratio = 2 : 3.

Report Error

View Answer Report Error Discuss

1 2381
Q:

Select the antonym of
mishmash

A) potpourri B) medley
C) organized D) haphazard
 
Answer & Explanation Answer: C) organized

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2381
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Integrated Change Control Phase?

Answer

I. Inputs



  • Project management plan

  • Requested changes

  • Work performance information

  • Recommended preventive actions

  • Recommended corrective actions

  • Recommended defect repair

  • Deliverables


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Approved change requests

  • Rejected change requests

  • Project management plan(updates)

  • Project scope statement (updates)

  • Approved corrective actions

  • Approved preventive actions

  • Approved defect repair

  • Validated defect repair

  • Deliverables 

Report Error

View answer Workspace Report Error Discuss

0 2380
Q:

The first Finance Minister of India?

A) RK Shanmukham Chetty B) P Chidambaram
C) Jawaharlal Nehru D) Vallabhai Patel
 
Answer & Explanation Answer: A) RK Shanmukham Chetty

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

2 2380
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 2379
Q:

The best - paid player in the world playing with Barcelona team

Answer

Lionel Messi

Report Error

View answer Workspace Report Error Discuss

Subject: Sports

2 2379
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

The Alaska pipeline starts at the frozen edge of the Arctic Ocean. It stretches southward across the largest and northernmost state in the United States, ending at a remote ice-free seaport village nearly 800 miles from where it begins. It is massive in size and extremely complicated to operate. The steel pipe crosses windswept plains and endless miles of delicate tundra that tops the frozen ground. It weaves through crooked canyons, climbs sheer mountains, plunges over rocky crags, makes its way through thick forests, and passes over or under hundreds of rivers and streams. The pipe is 4 feet in diameter, and up to 2 million barrels (or 84 million gallons) of crude oil can be pumped through it daily. Resting on H-shaped steel racks called "bents", long sections of the pipeline follow a zigzag course high above the frozen earth. Other long sections drop out of sight beneath spongy or rocky ground and return to the surface later on. The pattern of the pipeline's up-and-down route is determined by the often harsh demands of the arctic and subarctic climate, the tortuous lay of the land, and the varied compositions of soil, rock, or permafrost (permanently frozen ground). A little more than half of the pipeline is elevated above the ground. The remainder is buried anywhere from 3 to 12 feet, depending largely upon the type of terrain and the properties of the soil. One of the largest in the world, the pipeline cost approximately $8 billion and is by far the biggest and most expensive construction project ever undertaken by private industry. In fact, no single business could raise that much money, so 8 major oil companies formed a consortium in order to share the costs. Each company controlled oil rights to particular shares of land in the oil fields and paid into the pipeline-construction fund according to the size of its holdings. Today, despite enormous problems of climate, supply shortage, equipment breakdowns, labour disagreements, treacherous terrain, a certain amount of mismanagement, and even theft, the Alaska pipeline has been completed and is operating.


What is the capacity of the Alaskan pipeline?

A) 2 million gallons of crude oil B) 4 million barrels of crude oil
C) 84 million gallons of crude oil D) 84 billion barrels of crude oil
 
Answer & Explanation Answer: C) 84 million gallons of crude oil

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2379