I applied online. I interviewed at Cyntexa (Jaipur, Rajasthan) in Jun 2026
Interview
I appeared for the Cyntexa Jaipur drive on 6 June 2026. The selection process started with a pen-and-paper coding test consisting of two rounds. Questions were focused on patterns, strings, arrays, matrices, and logical problem-solving. The overall difficulty level was easy to medium, and basic programming knowledge was sufficient to attempt most questions.
Given a string containing both characters and numbers (e.g., A1B2C3D4E5), separate the integers and store them into lists. Each list can contain only 2 values. If more numbers are present, create another list.
Example:
Input: A1B2C3D4E5
Output: [[1,2],[3,4],[5]]
Given a sentence, find the length of each word. If a word's length is odd, reverse only that word.
Example:
Input: "Hello I am Cyntexa"
Output: "olleH I am axetnyC"
Matrix question involving '*' characters. We had to modify or move the position of '*' and print the updated matrix. I don't remember the exact input/output format.
Array question involving positive and negative numbers. We had to process the array using an alternating sign pattern (+, -, +, -, ...).
Example:
Input: [10, -20, 30, -40, 50]
Calculation:
10 - (-20) + 30 - (-40) + 50
Output:
150
(Note: This is a similar example based on my recollection. I don't remember the exact input/output given in the test.)
Good, question were of moderate level and can be done easily if you have done striver a2z sheet and yes the important topics are or I must say the gurantee all question will be from array and strings so prepare well accordingly
4 round, basic coding then advance then tech interview and then hr interview , need to qualify each round to proceed to the next. The first coding round is of 30 mins and the advance one is of 90 mins.