Questions

Q:

What is a Product Roadmap?

Answer

A Product Roadmap is a plan that matches short-term and long-term business goals with specific technology solutions to help meet those goals. It is a high-level visual summary that maps out the vision and direction of your product offering over time.


1. A product roadmap communicates the why and what behind what you're building.


2. It's a guiding strategic document as well as a plan for executing the strategy.


3. Roadmapping is the exercise of building a product roadmap. Roadmaps can apply to new products or services or existing offerings.

Report Error

View answer Workspace Report Error Discuss

4 2346
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 2346
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 2345
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 2345
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 2345
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:

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:

Glass is made of the mixture of

A) sand and silicates B) quartz and sand
C) mica and quartz D) mica and silicates
 
Answer & Explanation Answer: A) sand and silicates

Explanation:

A glass is made of liquid sand. You can make glass by heating ordinary sand and made into a liquid and mix with silicates to form a glass.

Report Error

View Answer Report Error Discuss

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

6 2343