Additional Question Bank
Additional Question Bank
Probability
1. Conditional Probability
In a small town, there are two bakeries, Bakery A and Bakery B, that specialize in
artisan breads. Recent surveys have shown that 60% of the town's residents
prefer bread from Bakery A, while the rest prefer bread from Bakery B.
Additionally, it is known that 70% of Bakery A's customers are repeat customers,
whereas Bakery B has a repeat customer rate of 50%.
One day, a resident is selected at random, and it is learned that this person is a
repeat customer of one of the bakeries, but it's not known which bakery.
What is the probability that this repeat customer prefers Bakery A over Bakery B?
2. Independent Events
In a game show, there are two rounds that a contestant must pass to win the
grand prize.
In the first round, the contestant must choose the correct door out of three,
behind one of which is a key to the next round. The doors are identical, and the
key's location is randomly assigned each game.
In the second round, the contestant is presented with a set of four boxes, one of
which contains a ticket to the grand prize. Similar to the doors, the ticket's
location is randomly determined for each game and not influenced by the
contestant's choice in the first round.
What is the probability that the contestant wins the grand prize by choosing the
correct door and the correct box in their respective rounds?
3. Bayes’ Theorem
1. Basic Permutations
A high school is organizing a talent show and has 8 different acts prepared to perform.
However, due to time constraints, only 5 of these acts can be selected to perform on the
night of the show. Furthermore, the order in which these acts perform is crucial, as it will
affect the overall flow and audience engagement of the event.
In how many different ways can the selection and arrangement of the 5 acts from the
original 8 be made for the talent show?
3. Restricted Permutations
How many distinct permutations of the word MISSISSIPPI exist with all the same
characters appearing consecutively ?
4. Basic Combinations
In a community garden, there are 12 different types of flowers planted. A local artist
wants to create a new series of paintings, each featuring a unique combination of 5
different flowers from the garden to capture the essence of the community's floral
diversity.
How many unique combinations of flowers can the artist choose for a single painting,
given the variety available in the garden?
1. Arithmetic Progression
A certain sequence of numbers forms an arithmetic progression. The 5th term of the
sequence is 23, and the 12th term is 50.
2. Geometric Progression
A carpenter has a wooden log that is N units long. Every hour, he cuts the log into two
equal halves, discards one half and uses the other to continue cutting in the next hour.
How many hours will it take for him to have a log of length 1 unit left?
Number Theory
All these 40 switches are numbered from 1 to 40 and are placed in a straight line. In front
of the first switch there is a man and in front of the remaining 39 switches, there is a
monkey.
(ab) % c = (ba) % c
(a+b) % c = (b+a) % c
(a*b) % c = (a%c * b%c)%c
(ab * db) % c = (ad)b % c = (ad % c)b % c
Find out the value of 71024 % 13
5. Diophantine Equations
Find out all integer values of `x` that satisfy the following polynomial equation:
x3 + 3x2 - 6x - 18 = 0
Section 2: Learnability
Sample questions
The binary system works the same way as decimal. The only difference is that instead of
multiplying the digit by a power of 10, we multiply it by a power of 2.
For example, the binary number 110 can be converted to decimal by the following
calculation:
110 in binary = 0 * 20 + 1 * 21 + 1 * 22 = 6.
The decimal number is equal to the sum of binary digits (dn) times their power of 2 (2n):
decimal = d0×20 + d1×21 + d2×22 + …
How to convert decimal to binary
Conversion steps:
1. Divide the number by 2.
2. Get the integer quotient for the next iteration.
3. Get the remainder for the binary digit.
4. Repeat the steps until the quotient is equal to 0.
Example:
Let's take the example of 6.
Question 2:
Given a binary number X 11010101001011101, find the binary representation of X * 8 (X
multiplied by 8).
Question 3:
Given a binary number X = 10010101010101001111, find the binary representation of
the integer part of X / 2 (X divided by 2).
Question 4:
Given a binary number X = 11110110101010001111, find the binary representation of the
integer part of X / 8 (X divided by 8).
Reading Material
Binary Operators
A binary digit (0 or 1) is also called as bit.
There are certain operations you can do on a pair of bits, and one such operator is XOR
(represented by symbol ^).
If you are given 2 bits a and b, then the value of a^b comes as follows:
a b a^b
0 0 0
0 1 1
1 0 1
1 1 0
In other words, a^b = 1 if a and b are different, otherwise it is 0.
Given 2 binary numbers, you can do bitwise XOR (pad 0s to make them the same length
and then xor between corresponding bits).
Example 1: if I ask you what is XOR between 1010 and 11, then you follow the following
steps:
● Step 1: Make both numbers equal size by padding 0s. So, our numbers
become 1010 and 0011.
● Step 2: Now take XOR of corresponding bits like the following:
1010
^ 0011
--------
1001
Example 2: 3^4
3 in binary is 11
4 in binary is 100
011
^100
-----
111
Question 5
You can choose any 2 numbers in the range [1, 58] (1 and 58 included). You have to
choose them so that the resulting XOR of their binary representation is maximised.
Tell us the decimal number corresponding to the maximum XOR possible. Please make
sure the first digit of the decimal is not 0.
Section 3: Aptitude
Quantitative Ability
- Percentage
1. Out of 100 pitches made on Shark Tank, 30% of them receive investments. If
70% of the invested companies become successful, what is the number of
companies that become successful after getting an investment from Shark Tank?
2. A company's stock price increased by 20% in the first quarter, decreased by 10%
in the second quarter and increased by 10% in the third quarter. If the initial stock
price was 100, what is the final stock price after the third quarter?
3. In the IPL auction, Team A spent 30% of its budget on batsmen, 20% on bowlers,
25% on all-rounders, and the remaining on wicket-keepers. If Team A spent
5,00,00,000 rupees on all-rounders, how much did they spend on bowlers (in
rupees)?
1. A merchant sells an item with a profit margin of 20%. If he had sold it for 30
rupees higher, his profit margin would have been 30%. Determine the original
price of the item.
2. A company's profits increased by 15% this year, decreased by 10% next year,
and increased by 12% in the third year. What is the net percentage change in
profits over the three years?
- Remainder Theorem
Logical Reasoning
- Venn Diagrams
1. In a town, there are three types of public transportation: Bus, Train, and Metro. Of
the commuters, 60 use the bus, 50 use the train, 40 use the metro, 20 use both
the bus and train, 10 use both the train and metro, and 5 use all three modes of
transportation. How many commuters are there in total?
2. In a factory, there are three shifts: Morning, Afternoon, and Night. Of the workers,
40 work in the morning, 30 work in the afternoon, 20 work at night, 10 work both
morning and afternoon, 5 work both afternoon and night, and 3 work all three
shifts. How many workers are there in total?
2. Given 7 balls tagged as A, B, C, D, E, F & G. All look identical to each other but
only one of these 7 is made of real gold. If you start counting from first and wind
back and forth while counting (A, B, C, D, E, F, G, F, E, D, C, B, A, B, C …), then
the golden ball would be the 1100th one that you count. Which one is the golden
ball?
- Miscellaneous
1. A chemist has 6 chemicals each weighing 3, 4, 2, 10, 6 & 5 grams. The goal is to
combine these chemicals into a single mixture. The chemist can only combine two
chemicals at a time. The cost of combining the two chemicals is equal to the sum of
their weights. Calculate and provide the minimum cost required to mix all the
chemicals into a single mixture.