Jobs By Batch
Jobs By Location
Jobs By Degree
Jobs By Branch
IT Jobs
Internships
Govt. Jobs
Admissions










Placement Updates





Study Material







Q #6
:

Find the number of ways of selecting five numbers from 1 to 50, so that no selection contains five consecutive numbers.

Warning: Undefined array key 4 in /home/illumina/public_html/TyariOnline/pncp/easy/index.php on line 278
+


Q #7
:

A child has 4 pockets & 3 marbles. In how many can the child put marbles in its pockets?

Warning: Undefined array key 4 in /home/illumina/public_html/TyariOnline/pncp/easy/index.php on line 536
+

The first marble can go in any of the four pockets and so can the second and third marble.

Hence the total number of ways that three marbles can go in four pockets is 4 × 4 × 4 = 64 .


Q #8
:

Find the total number of integers n between 20 and 40 such that (n – 1)! is not divisible by n.

Warning: Undefined array key 4 in /home/illumina/public_html/TyariOnline/pncp/easy/index.php on line 791
+

(n – 1) ! will not be divisible by n only if n is a prime number so the prime numbers between 20 and 40 are23, 29, 31, 37 total value of n = 4.


Q #9
:

There are 20 points in a plane. 5 of them are collinear. How many straight lines can be drawn passing through at least two of these points.

Warning: Undefined array key 4 in /home/illumina/public_html/TyariOnline/pncp/easy/index.php on line 1047
+

A line can be drawn by joining any two of the points so

20C2

But 5 colinear points will only give one line

total number of lines will be 20C2 5C2 + 1.


Q #10
:

How many odd numbers less than 10,000 and using the digits 0, 2, 5, 9 exist? (Repetition of digits is allowed)

Warning: Undefined array key 4 in /home/illumina/public_html/TyariOnline/pncp/easy/index.php on line 1302
+

Single-Digit Nos. = 2; 

2-Digit Nos. = 2 (Ways of selecting unit’s digit) x 3 (Ways of selecting ten’s digit as zero cannot be used) = 6; 3-digit Nos. = 2 (Ways of selecting unit’s digit) x 4 (Ways of selecting ten’s digit) x 3 (Ways of selecting hundred’s digit as zero cannot be used) = 24;

4-digit Nos. = 2 (Ways of selecting unit’s digit) x 4 (Ways of selecting ten’s digit) x 4 (Ways of selecting hundred’s digit) x 3 (Ways of selecting thousand’s digit as zero cannot be used) = 96;

Total = 2 + 6 + 24 + 96 = 128