Tip 1: Stick to a DSA sheet. Start with basic questions and gradually increase the level with practice.
Tip 2: Use competitive coding platforms for practice. Participate in contests that will help you build your logic and boost your confidence.
Tip 3: Ensure strong conceptual knowledge.
Tip 4: Have at least two projects on your resume, and make sure you can answer basic questions related to them.
Tip 1: Include some projects on your resume.
Tip 2: Do not include false information on your resume.
1. English and Technical MCQ - Cognitive Assessment
The technical assessment consists of questions on data structures, algorithms, database fundamentals, cloud, and networking. For roles specific to your stream, the technical assessment will include stream-specific topics. Details will be shared with your placement office.
Candidate assessment clearance depends on the scores of each module. Each round will be mandatory and an elimination round.
2. Spoken English Assessment
This round is mandatory but not an elimination round.
3. Coding Assessment
The coding or Level 2 technical assessment is a mandatory round, applicable for students eligible for higher package roles. Eligibility will be based on a combination of the student’s academic performance and Capgemini Exceller assessments.
*For roles specific to your stream, the technical assessment will include stream-specific topics. Details will be shared with your placement office.*
Consider the array be 1,6,4,6,2,4,2
The integers 2, 4, 6 occur twice and only the integer 1 occurs once.
You can store all the elements in a map, where the key represents the element and the value represents the frequency of that element. Then, you can traverse the hashmap and print all the keys with a value greater than one.
Write a query to find the manager ID and the salary of the lowest-paid employee for that manager.
SELECT manager_id, MIN(salary)
FROM employees
WHERE manager_id IS NOT NULL
GROUP BY manager_id
ORDER BY MIN(salary) DESC;
If we are given a string ‘aabb’.Then we can see the frequency of a=2 and b=2. The position of ‘a’ in alphabets is 1 and the position of ‘b’ is 2. So ‘a’ has an even frequency but its position is odd, so it will not contribute to M. As ‘b’ has an even frequency and its position is also even, so M=1. Now M =1 which is odd, so we have to return “ODD”.
count = 0;
for(int ele : arr){
if(ele%2 == 0) count++;
}
print(count);
I was shortlisted for the analyst position based on my performance in the assessment. The interviewer asked me very basic questions about OOP, software engineering, and DSA.
Let ‘N’ = 4, ‘Arr’ be [1, 2, 5, 4] and ‘K’ = 3.
then the elements of this array in ascending order is [1, 2, 4, 5]. Clearly, the 3rd smallest and largest element of this array is 4 and 2 respectively.
Explain Waterfall model in SDLC. (Learn)
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?