| Round | Section | Questions | Time |
|---|---|---|---|
| 1 | Behavioral Assessment (Psychometric) | 54 | 20 min |
| 1 | Cognitive Assessment (Gamified) | 3 | 20 min |
| 2 | Technical Assessment (Mixed IT MCQs) | 45 | 45 min |
| 2 | Coding Assessment (logic-only, language independent) | 3 | 60 min |
| 3 | Communication Assessment | 20 | 30 min |
| Total | 125 | 175 min |
Format: 3 questions — short logical/gamified puzzles
Time: 20 min
len([1, 2, 3, 4])?5 & 3 in bitwise AND operation?final keyword in Java?print(2 ** 3) in Python?int arr[] = new int[5];int arr = new int[5];array arr[5];int arr{};Description:
Given a string containing multiple words separated by spaces, write a function to reverse the order of words. The words themselves should not be reversed, only their positions.
Example:
Input: "Hello World from ChatGPT"
Output: "ChatGPT from World Hello"
Constraints:
Description:
You are given an array of n distinct integers ranging from 1 to n+1. One number is missing. Write a function to find the missing number.
Example:
Input: [3, 7, 1, 2, 8, 4, 5]
Output: 6
Constraints:
Description:
Given a string containing only '(' and ')', write a function to check if the parentheses are balanced.
Example:
Input: "(()())" → Output: True
Input: "((())" → Output: False
Constraints: