Tip 1: Prepare for common interview questions.
Tip 2: Practice, practice, practice.
It's one thing to come prepared with a mental answer to a question like, 'Why should we hire you?' It's another challenge entirely to say it out loud in a confident and convincing way.
Tip 1 : Should have different projects.
Tip 2 : Internships in good companies.
it was around 9 :30 am, and interviewer was friendly
1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then (2, -3, 1), (-3, 2, 1) etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Binary search implementation. (Learn)
Applied Trie DS. (Learn)
1
/ \
2 3
The root to leaf path 1->2 represents the number 12.
The root to leaf path 1->3 represents the number 13.
The total sum of all the possible root to leaf paths is 12+13 = 25
The output may be very large, return the answer after taking modulus with (10^9+7).
Solved using preorder traversal. (Learn)
What are the different operating systems? (Learn)
Batched operating systems
Distributed operating systems
Timesharing operating systems
Multi-programmed operating systems
Real-time operating systems
Write an SQL query to fetch records that are present in one table but not in another table.
SELECT * FROM EmployeeSalary
MINUS
SELECT * FROM ManagerSalary;
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which keyword is used for inheritance?