Tip 1 : while studying prepare notes ,its best for quick revision before interview day
Tip 2 : practice general codes for patterns and data structures
Tip 3 : Prepare good introduction, mention minimum 4 of your projects and be ready for any questions regarding that
Tip 1 : Should be 1 page,refer good examples on net for format
Tip 2 : Update your resume according to job profile and company
We had 2 days time to give the exam,it was online,no camera, difficulty level was medium.It had 2 coding questions and about 15 mcqs.
For example: Consider an empty matrix of size 'N'*'N' where 'N' = 3.
[[ 'NULL', 'NULL', 'NULL']
[ 'NULL', 'NULL', 'NULL']
[ 'NULL', 'NULL', 'NULL']]
Suppose the value of 'K' is 2, which means we have to perform 2 tasks.
Task 1: (0, 0)
Matrix after placing 0 in each cell of 0th row and 0th column:
[[0, 0, 0]
[ 0, 'NULL', 'NULL']
[ 0, 'NULL', 'NULL']]
The number of empty cells now: 4
Task 2: (1,0)
Matrix after placing 0 in each cell of 1st row and 0th column:
[[0, 0, 0]
[ 0, 0, 0]
[ 0, 'NULL', 'NULL']]
The number of empty cells now: 2
Return the array [4,2]
1. We call a cell empty only if it does not contain any value.
2. Indexing is 0-based.
the United Kingdom the currency is made up of pound (£) and pence (p). There are eight coins in general circulation:
1p, 2p, 5p, 10p, 20p, 50p, £1 (100p), and £2 (200p).
It is possible to make £2 in the following way:
1×£1 + 1×50p + 2×20p + 1×5p + 1×2p + 3×1p
How many different ways can £2 be made using any number of coins?
Tip 1 : build the logic
Tip 2 : solve using language you are comfortable to explain
Tip 3 : even if you don't have complete solution try to explain your thought process
Introduction, explain projects in resume, explain work done in internship,java based questions,OS based questions,dbms queries,some technical scenarios were asked. For frontend angular based questions were asked
Find 2nd highest salary using 2 tables
Tip 1 : prepare all queries
Tip 2 : explain the logic
Tip 3 : and you should be able to answer the question completely
Solve the code
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?