Tip 1 : Prepare computer networks
Tip 2 : Must know at least one programming language
Tip 1 : Mention Projects
Tip 2 : Add coding profiles (if any)



1. When N is odd consider the middle element to be part of 1st half.
2. The sum should not contain any leading zero, except the number 0 itself.
Given Linked List: 1-2-3-4-5-5-6
First half: 1-2-3-4
Second half: 5-5-6
Output Linked List: 1-7-9-0 = (1234 + 556 = 1790)
Can you add both halves without finding the length of Linked List and in O(1) space?



1. When N is odd consider the middle element to be part of 1st half.
2. The sum should not contain any leading zero, except the number 0 itself.
Given Linked List: 1-2-3-4-5-5-6
First half: 1-2-3-4
Second half: 5-5-6
Output Linked List: 1-7-9-0 = (1234 + 556 = 1790)
Can you add both halves without finding the length of Linked List and in O(1) space?
SQL query to remove duplicate entry.
White SQL query to get last 20 students who scored greater than 40.
How will you design a system to transfer records from one server to other server such that no records is missing.
What is OOP? What are pillars of OOP?
Define solid priciples
What is abstraction?



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Introduce yourself
what do you know about company
what are your 2 strengths (give some incidents to support you strengths)?
What are the areas you need to improve.

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?