Tip 1 : Don't leave any DSA topic; you may get questions from any topic
Tip 2 : Focus on fundamentals of core CS subjects like OS, CN, DBMS, OOP, as they are very important
Tip 3 : You must be aware of every detail about the projects you have mentioned in your resume
Tip 1 : Do not put false things on your resume
Tip 2 : You must be aware of every detail about the projects you have mentioned in your resume
‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
This was the first Technical Round.
1) Why did I use a particular Tech Stack and not other?
2) Coding challenges faced during the implementation?
3) Given some more time, how would I improve the project.
4) Future scope of the project.
5) How did you resolve conflicts within your team?
6) What was your role in the team?
7) How were the project tasks divided within the team?
Example For ‘N’ = 4
Pattern:
4444
3444
2344
1234
Step 1 : Outer for loop to control each row
Step 2 : Inner for loop to control what is being printed in each row
This was a Managerial+Technical round. I was asked about the projects I had done during my M.Tech in detail with regards to coding implementation. The interviewer then asked about my technical interests and what projects/courses I had done in my domain of interest. I was then given two coding problems to solve. He was expecting a pseudo-code and not necessarily a running code.
1. Choose an index i (1 <= i <= N - 1) and swap A[i] and A[i+1].
2. Choose an index i (1 <= i <= N - K + 1) and if A[i], A[i+1],. . . . , A[i+K-1] all are equal to some character x (x != ‘z’), then you can replace each one with the next character (x + 1) , i.e. ‘a’ is replaced by ‘b’, ‘b’ is replaced by ‘c’ and so on.
You are allowed to perform any operation any number of times(possibly zero) only on string 'A'.
If the given strings are A = ‘xbbx’ and B = ‘xddx’ and K is given as 2. Then it is possible to convert string A into B by applying the second operation two times on index 2 (1 based indexing).
Step 1 : Create map for storing the corresponding number:word mappings for the essential numbers
Step 2 : Create an empty vector V, which will store the final result
Step 3 : Start traversing the input from right to left
Step 4 : Fetch the value for the key obtained in Step 2 and push-back into V
Step 5 : Repeat steps 3-4 until the input has been traversed completely
Step 6 : Reverse the vector V and return the result
A = “bc”, B = “abcddbc”.
String “A” is present at index 1, and 5(0-based index), but we will return 1 as it is the first occurrence of “A” in string “B”.
Can you solve this in linear time and space complexity?
1) Introduce yourself .
2) Describe your college life.
3) Do you know the details about the compensation and the role?
4) How were your previous interview rounds?
5) Why do you want to join Dell?
6) Are you fine with relocation?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you select an element by class name in CSS?