Tip 1 : Do practice coding question regularly on platform like leetcode, gfg.
Tip 2 : Before going interview. Check the interview experience on GFG. You will get some idea.
Tip 3 : Maintain your consistency
Tip 1 : Don't write false information in your resume.
Tip 2 : Be prepared with your resume
There were 15 questions and 2 coding question, basically questions were based on computer fundamental and some question were based on output question.
Which of the following is the property of transaction that protects data from system failure?
Which normalization form is based on the transitive dependency?
During transaction before commit which of the following statement is done automatically in case of shutdown?
Which of the following is known as minimal super key?
How many levels are there in architecture of database?


Input: Linked List: 1 <-> 2 <-> 3 <-> 4 <-> 9 and 'k' = 5
Output: (1, 4) and (2, 3)
Explanation: There are 2 pairs in the linked list having sum 'k' = 5.



If the string is: “abccba”, then the first repeated character is ‘c’, but the repeated character that is present first in the string is ‘a’. You need to print ‘a’.
Keep in mind that you need to print the repeated character that is present first in the string and not the first repeating character.
There were two easy coding questions. I was able to solve both question



fib(0) = 0
fib(1) = 1
fib(n) = fib(n-1) + fib(n-2), n >= 2, where fib(n) represents the nth fibonacci number.



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.

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?