Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cyntexa Team. If you also belong to the team, you can get access from here

Cyntexa Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 156 Reviews

Filter interviews by

Cyntexa Associate Software Developer Interview Questions and Answers for Freshers

Updated 19 Sep 2024

Cyntexa Associate Software Developer Interview Experiences for Freshers

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

String , array,recursion.pattern question

Round 2 - Technical 

(3 Questions)

  • Q1. Array string recursion
  • Q2. Sort the o 1 2 0
  • Ans. 

    The numbers should be sorted in ascending order: 0 1 2

    • Use a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each number with the next one and swap if necessary

    • Repeat the process until the array is sorted

  • Answered by AI
  • Q3. Pattern question

Interview Preparation Tips

Interview preparation tips for other job seekers - good at dsa.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Only basic dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic dsa questions pattern , array, string related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via campus placement at Poornima College of Engineering, Jaipur and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Only Coding test :
First Coding Test : Pattern, Math 30min (2 out of 3)
Coding Test : Arrays, String, Matrix (5 Questions need to attempt out of 7)

Round 3 - Advance 

(1 Question)

  • Q1. Arrays, String, Matrix

I applied via Walk-in and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Round one was basic coding text and as the process was moving forward it became rigorous.

Round 2 - Coding Test 

Some good coding problems were there and consisted collection frameworks too.

Round 3 - Coding Test 

It was the pI round where they gave us some hard problems and checked instantly our approach of solving them

Round 4 - HR 

(1 Question)

  • Q1. Simple introduction and few other things about an individual.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well as it was a rigorous process and yeah you should have a good knowledge of patterns, arrays, strings, loops and few other data structures and no need for trees and graphs but the more knowledge you have the better it will help you ace the interview.

Cyntexa interview questions for designations

 Software Developer

 (1)

 Associate Software Engineer

 (3)

 Salesforce Developer

 (1)

 Salesforce Developer Trainee

 (1)

 React Js Frontend Developer

 (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Print unique numbers in list
  • Ans. 

    Print unique numbers in list

    • Iterate through the list and store each number in a set to keep track of unique numbers

    • Print out the numbers in the set to display the unique numbers

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

I applied via Cocubes and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most rounds were regarding English proficiency and 1 round regarding logical reasoning

Round 2 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and humble in the interview. Prepare well for the interview and aptitude tests

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning around 9:00Am-9:30AM. Platform used for this round was hacerrank. Questions were of moderate to difficult level.

  • Q1. Count subarrays with Given XOR

    Given an array of integers ‘ARR’ and an integer ‘X’, you are supposed to find the number of subarrays of 'ARR' which have bitwise XOR of the elements equal to 'X&...

  • Ans. Brute Force

    A simple method is to traverse through each subarray to find the total number of subarrays with the XOR of all elements present in the subarray equal to X.

     

    To obtain the total number of rounds after each operation, we will maintain a variable ans, which stores the total number of subarrays. We will iterate the variable index from 0 to N - 1 and in each iteration, we will iterate pos from index to N - 1....

  • Answered by CodingNinjas
  • Q2. Distinct Characters

    Given a string “STR”, you need to return all the possible non-empty subsequences with distinct characters. You can return the strings in any order.

    Note:
    If the same string can be gen...
  • Ans. Brute Force

    We can generate all possible subsequences of the string, and for each subsequence check if it contains any character multiple times. If it doesn’t contain any character multiple times, append it into our result.

     

    Algorithm:

     

    • Create a variable “mask”, and iterate from 0 till 2 ^ |STR| - 1.
      • For each value of “mask”, if the ith bit in “mask” is set, it means we are including the ith character of “STR” in...
  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

It was in the night around 8:00PM-8:20PM. Interviewer was very calm in questioning. Platform used for this round was Skype and the questions focused more on personality rather than total.

  • Q1. Basic HR Questions

    What do you know about our company?

    Who is your role model?

  • Ans. 

    Tip 1 : Your answer has to be short, crisp and to the point. Here are some possible high-impact answers to help you leave a great impression.
    Tip 2 : Don’t fall into the interviewer’s trap. This question is shot at you to check your confidence level.
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude questions a lot.
Tip 2 : Do some projects
Tip 3 : Research about company thoroughly

Application resume tips for other job seekers

Tip 1 : It should be in proper format.
Tip 2 : Each skills should be mentioned properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Cyntexa Interview FAQs

How many rounds are there in Cyntexa Associate Software Developer interview for freshers?
Cyntexa interview process for freshers usually has 2-3 rounds. The most common rounds in the Cyntexa interview process for freshers are Coding Test, HR and Resume Shortlist.
How to prepare for Cyntexa Associate Software Developer interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cyntexa. The most common topics and skills that interviewers at Cyntexa expect are C++, Javascript, Python, Salesforce and Analytical.
What are the top questions asked in Cyntexa Associate Software Developer interview for freshers?

Some of the top questions asked at the Cyntexa Associate Software Developer interview for freshers -

  1. sort the o 1 ...read more
  2. In technical round they ask array and string manipulation questions. Give you f...read more
  3. Leetcode: Stock buy and sell 2 Pattern String manipulat...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Cyntexa interviews
WalkIn
Campus Placement
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Cyntexa Associate Software Developer Salary
based on 71 salaries
₹3 L/yr - ₹5.5 L/yr
23% less than the average Associate Software Developer Salary in India
View more details

Cyntexa Associate Software Developer Reviews and Ratings

based on 25 reviews

3.5/5

Rating in categories

3.7

Skill development

3.6

Work-Life balance

3.4

Salary & Benefits

3.4

Job Security

3.5

Company culture

3.4

Promotions/Appraisal

3.5

Work Satisfaction

Explore 25 Reviews and Ratings
Salesforce Developer
87 salaries
unlock blur

₹2.6 L/yr - ₹9.2 L/yr

Associate Software Developer
71 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Developer
21 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Business Analyst
18 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Associate Software Engineer
13 salaries
unlock blur

₹3.8 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Cyntexa with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview