Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing.
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 6 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 8 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 9 : Be in formals with the properly ironed dress, and try to join 5 minutes early than the joining time. It will have a positive affect.
Tip 1 : Make sure your resume fits everything into a single page.
Tip 2 : Have at least 2 projects on your resume.
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume.
Tip 4 : Mention the work you have done during your internships.
Tip 5 : Include an objective in your resume.
The complete test will be Audio and Video Proctored, Please be available in front of the camera throughout the test duration. Assessment login details will be sent to the candidate’s registered email id prior to assessment. The Aptitude 25 questions - 35 Minutes, English 25 questions - 30 Minutes, Technical 25 questions - 35 Minutes. Those who clear the first test would have a second test of Psychometric duration 60 Mins on the same day of the test. Shortlisted candidates would have interviews post that.
This section consists of 25 questions from the topics like algebra, probability, permutation & combination, time & work, time, speed & distance, arithmetic, percentages, profit & loss, HCF, LCM, geometry, etc. The technical section involved questions from Computer Programs, DS & Basic algorithms, and C programming.
This round consisted of various technical questions such as questions on web technologies, databases, OOPS concepts, and coding questions.
Client-Server Architecture is a computing model in which the server hosts, delivers, and manages most of the resources and services to be consumed by the client. This type of architecture has one or more client computers connected to a central server over a network or internet connection. This system shares computing resources. Client/server architecture is also known as a networking computing model or client/server network because all the requests and services are delivered over a network.
Functions running in parallel with other functions are called asynchronous
A good example is JavaScript setTimeout().
Give an example of an Asynchronous function.
setTimeout(myFunction, 3000);
function myFunction() {
document.getElementById("demo").innerHTML = "Newgen !!";
}
Tip 1 : Also do topics such as promises, Callbacks, async/await
A JOIN clause is used to combine rows from two or more tables, based on a related column between them.
1.) INNER JOIN: Returns records that have matching values in both tables
2.) LEFT (OUTER) JOIN: Returns all records from the left table, and the matched records from the right table
3.) RIGHT (OUTER) JOIN: Returns all records from the right table, and the matched records from the left table
4.) FULL (OUTER) JOIN: Returns all records when there is a match in either left or right table



I was asked to introduce myself and about my hobbies. They were very general questions. They asked me about my strengths and weakness. In the end, they asked me would I re-locate.
Introduce yourself.
Tell about yourself and not your family information as they would be interested in your information.
Tip 1 : Go through your resume.
Tip 2 : Mention the technologies in the second half, that you want the interviewer to ask questions.
Tip 1 : Go through a few hr questions from gfg, glass door, and a few other websites.
My answers:
Strengths:
The strongest asset is my work ethic and willingness to step In when needed. I am not afraid to take on any client or any project.
Weaknesses:
Whenever I complete, I can't help but feel that I could have done more even if I received a positive response

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