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.
This was a technical interview round with questions on C, C++ and Windows.
Difference between C and C++
1. The C programming language is a procedural language type while C++ is an object-oriented programming language type.
2. C programming follows a top to down programming approach that focuses on the steps rather than the data. C++ follows a bottom-to-top approach that focuses on data rather than the overall procedure.
3. Since C is a structured programming language the program is divided into separate blocks known as functions. Since C++ is an object-oriented programming language, the code is divided into Objects and Classes.
What are access specifiers in C++?
An access specifier is used to implement the principle of information hiding. This principle states that irrelevant and sensitive information should be kept hidden, as much as possible, outside of a class.
The three access specifiers in C++, in ascending order of accessibility, are:
1. private
All private variables and functions can only be accessed from inside the class or friend class. When no specifier is written, the members in a class are considered private by default.
2. protected
The protected members of a class are only accessible within that class and its child classes.
3. public
public members can be accessed from anywhere outside the class. They provide an interface for interacting with an object of the class. A common example is a constructor that is declared public so that an object of that class can be created.
How do you open Device Manager In windows ?
Device Manager is accessible in Control Panel.
First, open Control Panel by clicking the “Start” menu, typing “control panel,” and clicking the “Control Panel” icon. In Control Panel, click the “Hardware and Sound” category, then select “Device Manager.”
How do you open command prompt in Windows ?
Click the Windows Start Button.
In the search box type cmd.
In the search results, Right-Click on cmd and select Run as administrator
This will open the Command Prompt window
To change to the Root directory type cd\ and hit Enter
HR interview can be a bit tricky. They will try to see your creativity in your answers so just be yourself and be confident.
1. What is the one most creative thing you have done ?
Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3: Talk about a relevant incident that made you keen on the profession you are pursuing and follow up by discussing your education.

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?