Tip 1 : Atleast 2 projects and the in depth knowledge about projects.
Tip 2 : Practice 100 questions.(Both begineer and intermediate level)
Tip 3 : Prepare the resume on the basis of what you actually know. Don't write too many things.
Tip 1 : Resume should be simple and clear, no extra things should me mentioned.
Tip 2 : Put atleast 2 - 3 certifications. It boosts your resume.
I was enough prepared for the exam. There was a provision to give exam within 24 hours of the given time. I started the exam in the morning around 9 am. I faced some internet issues as I was giving assessment from my personal laptop my somehow I managed and given the exam.



Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ]
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]
If the given string is "CODE", below are all its occurrences in the matrix:
'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
I was asked about the tables and the queries that have been used in the project.
How to remove the deadlock?
What is normalization?
Tip 1 : Must know about DML, DDL.
Tip 2 : Conditions of having deadlock.
What is the optimal way to use those tables to remove redundancy etc.
Tip 1:
What are joins?
Write an SQL query for finding employess with 2nd highest salary
What is virtual memory?

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?