Questions

Q:

What qualities does a person need to be successful in the field of advertising?

Answer

The following are the qualities required to be successful in the field of advertising:


 - Creativity
 - Strategic focus
 - Knowledge and expertise in the field of advertising
 - Holding a relevant qualification in the field of advertising
 - Market research orientation
 - People skills etc.

Report Error

View answer Workspace Report Error Discuss

6 2329
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 2329
Q:

What element behaves most like magnesium?

A) Sr B) S
C) Si D) Sn
 
Answer & Explanation Answer: A) Sr

Explanation:

We know that, elements in the same group of the periodic table have similar characteristics. Here magnesium and strontium are the same 2nd group elements and have same behavior. 

Therefore, strontium behaves same as magnesium. 

Report Error

View Answer Report Error Discuss

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

5 2328
Q:

Pick up the most effective word from the given words to fill in the blanks to make the sentence meaningfully complete.

The villagers ______ the murder of their leader by burning the police van.

A) Protested B) Avenged
C) Mourned D) Consoled
 
Answer & Explanation Answer: A) Protested

Explanation:

Protested is used because here the villagers express their feeling by making an objection to what has been done.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2328
Q:

Evergreen trees lose their leaves steadily all year.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Trees that lose all of their leaves for part of the year are known as deciduous trees. Those that don't are called evergreen trees.

Report Error

View Answer Workspace Report Error Discuss

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

1 2328
Q:

In India, planning commission was replaced by

A) UPSC B) NITI Aayog
C) National Development Council D) NMDC
 
Answer & Explanation Answer: B) NITI Aayog

Explanation:

The Planning Commission was an institution in the Government of India started by Jawaharlal Nehru, The First Prime Minister of Independent India, in the year 1950. Later, this was replaced by NITI Aayog in 2015 by now and than Prime Minister Narendra Modi to ensure implementation of the Sustainable Development Goals by fostering the involvement of State Governments of India in the economic policy-making process.

 

NITI Aayog means National Institute for Transforming India. Narendra Modi is the Chairman of NITI Aayog.

Report Error

View Answer Report Error Discuss

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

5 2327
Q:

The reverse effect of X-ray emission is

A) Raman effect B) Compton effect
C) Zeeman effect D) Photo-electric effect
 
Answer & Explanation Answer: D) Photo-electric effect

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2327
Q:

Who is the author of the book ' The Last Word'

Answer

Hanif Qureishi

Report Error

View answer Workspace Report Error Discuss

2 2327