Tip 1 : Focus on basic they will ask very basic question like in which memory a variable created
Tip 2 : Prepare your project at good level
Tip 3 : prepare above than basic sql and also good practice of live coding
Tip 1 : Have some good projects at least 2
Tip 2 : Add only thing you know completely
There was 2 rounds of online test in that one for your aptitude and reasoning.
Which data structure allows deleting data elements from and inserting at rear?
This round is based on technical based question.
How do we measure forty-five minutes using two identical wires, each of which takes an hour to burn? We have matchsticks with us. The wires burn non-uniformly. So, for example, the two halves of wire might burn in 10 minutes and 50 minutes respectively
This was a coding round which consist of 3 questions that has basic to medium level questions.



The start time of one chosen meeting can’t be equal to the end time of the other chosen meeting.
'N' = 3, Start = [1, 3, 6], End = [4, 8, 7].
You can organize a maximum of 2 meetings. Meeting number 1 from 1 to 4, Meeting number 3 from 6 to 7.
The first line contains an integer 'T' denoting the number of test cases or queries to be run. The first line of each test case or query contains a single integers 'N' denoting the number of meetings. The second line of each test case contains N single space-separated integers denoting the start time of N meetings respectively. The third line of each test case contains N single space-separated integers denoting the end time of N meetings respectively.



Input:
3
3
4 6 8
3
2 5 7
2
1 9
Output:
1 2 4 5 6 7 8 9
Explanation:
First list is: 4 -> 6 -> 8 -> NULL
Second list is: 2 -> 5 -> 7 -> NULL
Third list is: 1 -> 9 -> NULL
The final list would be: 1 -> 2 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9 -> NULL
The first line of input contains an integer 'T' denoting the number of queries or test cases. The first line of each test case consists of an integer 'K' denoting the number of lists. Next 'K' lines for each test case will have space separated integers and ith line will have elements of the ith linked list separated by a single space and terminated by -1.
That was completely based on technical based questions.



Given 'S' : abcdg
Then output will be : 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
I had given him a ans in which he want me to optimize it and i had did it again.
That was a basic communication round.
What are your internships experiences and were they internships paid?

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?