Tip 1 : Start from basics.
Tip 2 : Practice real problems and Make notes.
Tip 3 : Be honest and consistent with your presentation.
Tip 1 : Simple and Full of Content rather than makeover.
Tip 2 : Focus on Internships, Projects and Hands on Experience.
What's Abstraction?
What are objects and classes?
Primary Key and foreign key?
Networking etc
Interview that consists of Technical Examination and HR discussion.
Technical Interview was testing about the concepts and how well I can explain them.
HR discussion went on to check the communication, corporate strength etc.
Explain difference between Primary and Foreign key and their need in DBMS
Tip 1 : answer to the point
Tip 2 : start with definitions
Tip 3 : do read the theoretical part of SQL



If any character is a ‘?’ we can replace that character with any other character.
If a character is a * we can replace * with any sequence of characters including the empty sequence.
Let str = “abc?" and pat= “abcd”
We return true as ‘?’ can be replaced with ‘d’ and this makes ‘str’ and ‘pat’ same.

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?