Tip 1: Be consistent in the learning process.
Tip 2: Be confident in what you have learned so far.
Tip 3: Work hard on your resume and be truthful about it.
Tip 1: Work on projects, and ensure the project links are available on your resume.
Tip 2: Show numerical impact in your resume and highlight notable achievements in academics, sports, etc.
This round was an Online Assessment round in which we were given allocated seats where we had to sit and open the test form link provided in the email by the Bureau Veritas hiring team. The form contained 30 questions, and we had to write the answers in the given space. The questions were based on Mental Ability, Operating Systems, OOP, DBMS, etc.
A database table named Loan_Records is given below:
| Borrower | Bank_Manager | Loan_Amount |
|---|---|---|
| Ramesh | Sunderajan | 10000.00 |
| Suresh | Ramgopal | 5000.00 |
| Mahesh | Sunderajan | 7000.00 |
What is the output of the following SQL query?
SELECT COUNT(*)
FROM (
(SELECT Borrower, Bank_Manager FROM Loan_Records) AS S
NATURAL JOIN
(SELECT Bank_Manager, Loan_Amount FROM Loan_Records) AS T
);Tip 1: Read the question very carefully.
Tip 2: Be quick in answering, as the time limit for each question is around 2 minutes.
Tip 3: Be thorough with topics like OOP, DBMS, etc.
This round was a one-on-one, face-to-face interview with an engineer from the same company who had 8–10 years of experience. The round started with a general discussion on my resume and projects, and then moved on to some DSA questions and system design problems. The round went well, and the interviewer was very calm and relaxed.



1. There are no 2 adjacent elements having same value (as mentioned in the constraints).
2. Do not print anything, just return the index of the peak element (0 - indexed).
3. 'True'/'False' will be printed depending on whether your answer is correct or not.
Input: 'arr' = [1, 8, 1, 5, 3]
Output: 3
Explanation: There are two possible answers. Both 8 and 5 are peak elements, so the correct answers are their positions, 1 and 3.
First of all, stay calm and confident. Read the problem carefully and think of the best possible solution that comes to your mind instantly. Dry run the test cases.



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Read the problem carefully and think of the best possible solution that comes to your mind instantly. Dry run the test cases.
This round was a face-to-face interview with the HR of the company. The selected candidates were called to the company premises for the HR round in the morning at 10 a.m.
The questions covered your strengths and weaknesses, college academics, growth-related topics, salary, and other benefits.
Tip 1: Be confident in front of HR.
Tip 2: Work on speaking calmly and clearly.
Tip 3: Think properly before answering anything.

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?