In a town of 10000 families, it was found that 40% families buy product A, 20% buy product B

DAVV MBA PYQIn a town of 10000 families, it was found that 40% families buy product A, 20% buy product B and 10% buy product C, 5% buy product A and product B, 3% buy product B and product C and 4% buy product A and product C. If 2% families buy product A, B, C all. Then find the number of the families...
Share:

In a managers club, 45 play polo, out of which 30 play Polo only

DAVV MBA PYQIn a managers club, 45 play polo, out of which 30 play Polo only 28 play Snookers. 25 play Tennis  of which 11 play Tennis only, 7 play Tennis and Polo, but not Snooker. 5 play Polo and Snooker, but not Tennisi) How many play all the thre sports?ii) How many play Snookers only?iii)...
Share:

In a survey of 500 T.V. viewers, 285 watched KBC, 195 watch cricket, 115 watch hockey, 45 watch KBC and hockey

DAVV MBA PYQIn a survey of 500 T.V. viewers, 285 watched KBC, 195 watch cricket, 115 watch hockey, 45 watch KBC and hockey, 70 watch KBC and cricket, 50 watch cricket and hockey, 50 do not watch any of three games. How many watch all 3 and how many watch exactly one of three ?Solution:K for KBCH for...
Share:

In a city there are 100000 people, 64% of them speak Greek, 55% people speak Latin, 43% p

DAVV MBA PYQIn a city there are 100000 people, 64% of them speak Greek, 55% people speak Latin, 43% people speak French, 21% people speak both Greek and Latin, 31% people speak both Greek and French, and 41% people speak both Latin and French. Determine the number of people speak all the three languages.Solution:G for GreekL for LatinF for FrenchFormula: n(G U L U F) = n(G)+n(L)+n(F)-n(G ∩ L)-n(G...
Share:

A company studies the product preferences of 20,000 consumers. It was found that each

DAVV MBA PYQ  A company studies the product preferences of 20,000 consumers. It was found that each of the products A, B and C was liked by 7020, 6230 and 5980 respectively. All products were liked by 1500. Products A and B were liked by 2580, products A and C were liked by 1200 and products...
Share:

C Program GATE 2018 -8

Consider the following C code. Assume that unsigned long int type length is 64 bits.unsigned long int fun(unsigned long int n){    unsigned long int i, j = 0, sum = 0;    for (i = n; i > 1; i = i/2) j++;    for&...
Share:

C Program GATE 2018 -7

Consider the following C program:#include<stdio.h> void fun1(char *s1, char *s2){     char *tmp;     tmp = s1;     s1 = s2;     s2 = tm...
Share:

TCS Coding Q-01

TCS NQTQ. An automobile company manufactures both a two wheeler (TW) and a four wheeler (FW). A company manager wants to make the production of both types of vehicle according to the given data below:1st data, Total number of vehicle (two-wheeler + four-wheeler)=v2nd data, Total number of wheels = WThe task is to find how many two-wheelers as well as four-wheelers need to manufacture as per the given...
Share:

C Program GATE 2019 -4

C Program : GATE 2019Consider the following C program:#include <stdio.h> int main(){float sum = 0.0, j = 1.0, i = 2.0; while (i/j > 0.0625){j = j + j;sum = sum + i/j;printf("%f\n", sum);}return 0;}The number of times the variable sum will be printed, when the above...
Share:

C Program GATE 2019-1

C Program : GATE 2019Consider the following C program #include <stdio.h>int main(){ int arr[]={1,2,3,4,5,6,7,8,9,0,1,2,5}, *ip=arr...
Share:

Explain the concepts of Generalization and Aggregation with appropriate examples.

Explain the concepts of Generalization and Aggregation with appropriate examples. (RGPV 2019)Ans. Generalization:Entities with common attributes can be merged into a generic or super type entity by generalisation. For example, the entity EMPLOYEE is a super type of Professor, Conductor, and Engine...
Share: