Questions

Q:

Math Logic Challenge

18582095_1309614185812349_1823149961450714717_n1499156071.jpg image

A) 23 B) 26
C) 13 D) 29
 
Answer & Explanation Answer: B) 26

Explanation:

Let the integer be x. Then,

 x2-20x = 156

 

(x + 6)(x - 26) = 0

 

x = 26

 

The integer is 26.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

12 4047
Q:

Managing advertising, sales promotion and public relations :

what is public relations in marketing?

Answer

Public relations includes promotional activities that work to create a strong public image of the company. Public relations activities include helping the public to understand the company and its products. Public relations if done right can reach a large audience without the expensive cost of traditional advertising and marketing.

Report Error

View answer Workspace Report Error Discuss

0 4046
Q:

Who won the US Open 2018?

A) Brooks Koepka B) Tommy Fleetwood
C) T. Finau D) D. Johnson
 
Answer & Explanation Answer: A) Brooks Koepka

Explanation:

Brooks Koepka shot a final round 68 for 281 (+1) to win his second straight U.S. Open, one stroke ahead of runner-up Tommy Fleetwood, who closed with the sixth round of 63 in U.S. Open history.

Report Error

View Answer Report Error Discuss

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

2 4046
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4045
Q:

A bond formed by the transfer of electrons between atoms of the elements is called

A) Ionic bond B) Covalent bond
C) Co-ordinate bond D) Hydrogen bond
 
Answer & Explanation Answer: A) Ionic bond

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4044
Q:

4 mat-weavers can weave 4 mats in 4 days. At the same rate, how many mats would be woven by 8 mat-weavers in 8 days?

A) 4 B) 8
C) 12 D) 16
 
Answer & Explanation Answer: D) 16

Explanation:

Let the required number of bottles be x.

 

 

 

More weavers, More mats (Direct Proportion)

 

 

 

More days, More mats (Direct Proportion)

 

 

 

Wavers   4:8Days       4:8  :: 4:x

 

 

 

 4 x 4 x x = 8 x 8 x 4

 

 

 

=> x= 8*8*44*4

 

 

 

=>  x = 16.

Report Error

View Answer Report Error Discuss

2 4043
Q:

Diameter of a Ping Pong Ball?

A) 37 mm B) 38 mm
C) 40 mm D) 42 mm
 
Answer & Explanation Answer: C) 40 mm

Explanation:

The ball with which Table Tennis is played is called Ping Pong Ball.

According to the International rules, the diameter of the ping pong ball must be not less than 39.5 millimeters and not greater than 40.5  millimeters having a mass of 2.7 grams.

Report Error

View Answer Report Error Discuss

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

14 4041
Q:

I am a 6 letter word. 2,5,6 used by people to move from one place to another. 4,3,2 is also used by people to move from one place to another. 4,5,2 is the young one of carnivorous animal. If u remve my 1st, 2nd, 3rd and 4th letters its everybody. What am I?

Answer

It is ABACUS.


Words formed are as below 


BUS
CAB
CUB
US

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams

28 4041