Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I shared my screen and typed the problems they gave to me on notepad related to DSA.



1. push(data) :
This function should take one argument of type integer. It pushes the element into the stack and returns nothing.
2. pop() :
It pops the element from the top of the stack and returns nothing.
3. top() :
It returns the element being kept at the top of the stack.
4. getMin() :
It returns the smallest element present in the stack.
Query-1(Denoted by an integer 1): Pushes integer data to the stack. (push function)
Query-2(Denoted by an integer 2): Pops the data kept at the top of the stack. (pop function)
Query-3(Denoted by an integer 3): Fetches and returns the data being kept at the top of the stack. (top function)
Query-4(Denoted by an integer 4): Returns the smallest element present in the stack. (getMin() function)
This round had questions mainly from .NET and ASP .NET Core.
What is a delegate in .NET?
What are the types of memories supported in the .NET framework?
Explain the Middleware in ASP.NET Core
What is Host in ASP.NET Core?
This was a typical HR round with some standard Behavioral questions.
Tell me something about yourself.
Tip 1 : Prepare the points that you will speak in your introduction prior to the interview
Tip 2 : Tell about your current CGPA, achievements and authenticated certification
Tip 3 : I told about my role in current internship and what all I do

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?