Tip 1 : Evaluate job description
Tip 2 : Practice Mock interviews
Tip 3 : Do atleast 2 projects
Tip 1 : Keep Your Experience Recent and Relevant
Tip 2 : Skills are Equally as Important to mention
- In Morning
- Environment was good.
- No other activity
- Interviewer was good
Q-
Section (sect name, wing, expenses) and Student (student_ID, name, sect name, fees).
Here in both of these relations, the sect_name attribute appears commonly. In this case, using common attributes in the relation schema is a way in which we can relate the ___________ relations.
a. Tuple of common
b. Attributes of common
c. Attributes of distinct
d. Tuple of distinct
Tip 1 : Practice Normalization
Tip 2 : Practice Basic concepts
Answer- d(Tuple of distinct)
The operating system maintains a ______ table that keeps track of how many frames have been allocated, how many are there, and how many are available.
a) memory
b) mapping
c) page
d) frame
Tip 1 : Practice memory
Tip 2 : Practice mapping by Galvin Book
Ans - d(Frame)



If the given rectangle is [1, 1, 3, 2]. It means the bottom left corner is at [1, 1] and the top right corner is at [3, 2]. Hence, the top left corner is at [1, 2] and the bottom right corner is at [3, 1].

Two integers are used to represent Point - x and y coordinates.
Two points are used to represent a Rectangle - Bottom left corner and top right corner.



Input: ‘R’ = 3, ‘C’ = 4
‘GRID’ = [[2, 3, 1, 2], [3, 4, 2, 2], [5, 6, 3, 5]]
Output: 21
Initially Alice is at the position (0,0) he can follow the path (0,0) -> (1,1) -> (2,1) and will collect 2 + 4 + 6 = 12 chocolates.
Initially Bob is at the position (0, 3) and he can follow the path (0, 3) -> (1,3) -> (2, 3) and will colllect 2 + 2 + 5 = 9 chocolates.
Hence the total number of chocolates collected will be 12 + 9 = 21. there is no other possible way to collect a greater number of chocolates than 21.






a) Both players play in alternate turns and they can remove only one coin in their turn.
b) Any player can remove coins only from either of the two ends of ‘ARR’.
There can be more than one set of coins with maximum value.
a) Consider 3 coins are placed with values [10, 20, 30]: Wong removes 30, then Strange removes 20, then Wong removes 10. Now all coins are taken, and Wong has coins with value 40 and he wins.
b) Consider 1 coin is placed with value [100]: Wong removes the coin and no other coin is left. So, Wong wins with value 100.
a) The game only ends when NO MORE COIN IS LEFT to play with.
b) If a game ends in a draw, Wong is declared the winner.
- Morning time
- Environment was good.
- No
- Interviewer was good
- Tell me about yourself
- What did you like most about the job description?
- What experience do you have that would be relevant to this role?
- What experience do you have that would be relevant to this role?
- What experience do you have that would be relevant to this role?
Tip 1 : Practice communication
Tip 2 : Hands on vocabulary
Tip 3 : Should know the services provided by company

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?