Tip 1 : Make notes for os and dbms and revise them regularly
Tip 2 : Regularly practice all dsa topics and give contests
Tip 1 : Have good internships on resume
Tip 2 : Have good development or ml projects
Round was conducted in evening
It was a virtual round with two sections one for programming questions and one section for mcq with total duration of 75 minutes
Average level MCQs related to programming, OS, DBMS , computer architecture and OOPS.
Number Of MCQs - 60



For arr[ ] = { 10, 20, 30, 40}, matrix A1 = [10 * 20], A2 = [20 * 30], A3 = [30 * 40]
Scalar multiplication of matrix with dimension 10 * 20 is equal to 200.
It was a simple 2d dynamic programming problem which i coded in online assessment
Round was conducted in morning. It was conducted virtually and interviewer was an experienced person.



1. INSERT(key, value): Inserts an integer value to the data structure against a string type key if not already present. If already present, it updates the value of the key with the new one. This function will not return anything.
2. DELETE(key): Removes the key from the data structure if present. It doesn't return anything.
3. SEARCH(key): It searches for the key in the data structure. In case it is present, return true. Otherwise, return false.
4. GET(key): It returns the integer value stored against the given key. If the key is not present, return -1.
5. GET_SIZE(): It returns an integer value denoting the size of the data structure.
6. IS_EMPTY(): It returns a boolean value, denoting whether the data structure is empty or not.
1. Key is always a string value.
2. Value can never be -1.
First(Denoted by integer value 1): Insertion to the Data Structure. It is done in a pair of (key, value).
Second(Denoted by integer value 2): Deletion of a key from the Data Structure.
Third(Denoted by integer value 3): Search a given key in the Data Structure.
Fourth(Denoted by integer value 4): Retrieve the value for a given key from the Data Structure.
Fifth(Denoted by integer value 5): Retrieve the size of the Data Structure.
Sixth(Denoted by integer value 6): Retrieve whether the Data Structure is empty or not.
There is a room with a door (closed) and three light bulbs. Outside the room, there are three switches, connected to the bulbs. You may manipulate the switches as you wish, but once you open the door you can’t change them. Identify each switch with its bulb. All bulbs are in working condition.
What do you mean by an it hub.?
What are different components of it hub?
Tip 1 : This is a general knowledge question which you might have studied in your course
Tip 2 : You can talk about it industry in general and how different tech companies are dependent on each other for different services.

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?