Tip 1 : C programming basics
Tip 2 : Archives from online sources
Tip 1 : explain all the projects clearly
Tip 2 : expectation is more of close to hardware type work eg...compilers, C language, assembly level how it happens, how memory and pointers behave.
Computer based test.



Input: Consider the following Binary Tree:
Output:
Following is the level-order traversal of the given Binary Tree: [1, 2, 3, 5, 6, 4]
1. gave the brute force approach.
2. using level order traversal explained the approach.


‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.
reverse the given sentence normally and then reverse each word seperately.
F2f interview



Sieve of Eratosthenes approach was used by me for this problem
Bridge crossing problem min time to cross 4 ppl across the bridge.
HR round
Explain: Scheduling algorithm, Paging algorithm, Synchronization

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?