Tip 1: Spend more time on mastering the basics; don't feel pressured to pick up a stack and speed run the syntax.
Tip 2: Spend extra time on data structures and algorithms if you want a good package at the start of your career.
Tip 3: Spend good amount of time in improving your communication in English and ability to think and speak your mind in interviews.
Tip 1: Avoid listing skills on your resume that are irrelevant or not tech-related.
Tip 2: Have a few projects on your resume, clearly mention their tech stack, and add a brief description of each.
It was held in the afternoon around 3 PM. All the students were seated in batches across different computer labs, and the test was conducted entirely on campus. The Safe Exam Browser (SEB) was used for the assessment, and each student had to log in using their registered email ID. The test was monitored online through the SEB platform, with members from the Josh team along with our college faculty present as invigilators.
The test consisted of 55 MCQs on Aptitude, English and software testing.
If the ratio of A to B is 3:5 and their sum is 64, what is the value of A?
A) 18
B) 24
C) 30
D) 36
Tip 1: Always convert ratio into total parts first (3+5 = 8 parts).
Tip 2: Practice ratio & proportion problems regularly to improve speed.
A train travels 150 km in 3 hours. What is its average speed?
A) 45 km/h
B) 50 km/h
C) 55 km/h
D) 60 km/h
Tip 1: Remember basic formula: Speed = Distance / Time.
Tip 2: Revise Speed–Distance–Time shortcuts for quick calculations.
Choose the correct synonym of “Precise”:
A) Vague
B) Exact
C) Rough
D) Wrong
Tip 1: Improve vocabulary by learning 5–10 new words daily.
Tip 2: Revise synonyms and antonyms from placement preparation books.
Identify the correct sentence:
A) She have completed the task.
B) She has completed the task.
C) She had completes the task.
D) She completing the task.
Tip 1: Focus on subject-verb agreement rules.
Tip 2: Practice grammar-based MCQs regularly.
Which testing ensures new code changes do not affect existing features?
A) Unit Testing
B) Regression Testing
C) Smoke Testing
D) Alpha Testing
What does STLC stand for?
A) Software Testing Life Cycle
B) System Testing Logic Cycle
C) Software Technical Level Code
D) System Technical Life Code
(Learn) You are testing a registration system. Write a function to validate whether a given email ID is valid based on the following conditions:
It must contain exactly one @ symbol.
It must contain at least one . after the @.
The @ should not be the first or last character.
There should be at least 2 characters after the last .
Input:
A string representing an email address.
Output:
Return "Valid" if the email follows all rules, otherwise return "Invalid".
Step 1: I first understood all the validation rules like checking exactly one @, at least one . after @, and minimum two characters after the last dot.
Step 2: I checked the count and position of @ to ensure it was valid.
Step 3: Then I verified that a . exists after @ and that the domain part has at least two characters after the last dot.
Step 4: I also considered edge cases like multiple @, missing dot, or invalid domain length before returning "Valid" or "Invalid".
It was in the morning around 11 am. We were seated in company office rooms and we used our own laptops. No invigilator, only HR and assistants were present.
A person invests ₹10,000 at 10% simple interest per annum. What will be the total amount after 2 years?
A) ₹11,000
B) ₹12,000
C) ₹13,000
D) ₹14,000
Tip 1: Revise the Simple Interest formula: SI = (P × R × T) / 100.
Tip 2: Practice percentage calculations to improve speed.
If 8 workers can complete a task in 6 days, how many days will 12 workers take?
A) 3
B) 4
C) 5
D) 6
Tip 1: Use the concept: Men × Days = Constant.
Tip 2: Practice Time & Work problems regularly from placement papers.
Which of the following is the most complete set of test cases for login functionality?
A)
Login with valid credentials
Login with invalid password
B)
Login with valid credentials
Login with invalid username
Login with invalid password
Login with empty username
Login with empty password
Login with both fields empty
Check “Forgot Password” link
Verify account lock after multiple failed attempts
C)
Login with valid credentials
Logout
D)
Login with invalid credentials
While testing Google OAuth login, which scenario must be validated?
A) Successful login with valid Google account
B) User denies permission on consent screen
C) Expired session token handling
D) All of the above
Tip 1: Understand OAuth flow before writing test cases.
Tip 2: Always test token expiration, permission denial, and session handling scenarios.
It happened approximately 1 hr after the first round, shortlisted students were made to sit in a closed room and test details were shared over email. Questions were based on there internal HRMS Tool.
Carefully analyse the platform.
It happened approx. 1.5 hr after the third round, shortlisted students were made to sit in a closed room and HR took the round.
Topic of group discussion was suggest improvements and changes as developers and quality analysts.
I tried to initiate the conversation but couldn't take the lead and I added a few points in the discussion from my experience in previous round.

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?