Upload Button Icon Add office photos
Engaged Employer

i

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

Concentrix Corporation Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Concentrix Corporation DOT NET Developer Interview Questions and Answers

Updated 22 Mar 2024

Concentrix Corporation DOT NET Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All technology questions on topics mentioned in resume

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Concentrix Corporation?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops concept and MSSQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview with OOPS concept and SQL queries. Questions are not tough.

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
Q2. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?

I applied via Job Fair and was interviewed before Dec 2021. 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 

Strictly know about advanced coding languages like python.

Round 3 - Aptitude Test 

Be focus on aptitude and reasoning too....

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have more knowledge in testing also you will benefited at least.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. About DOT NET
  • Q2. About Sql server
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Palindrome code
  • Ans. 

    A palindrome is a word, phrase, or sequence that reads the same backward as forward.

    • A simple example is the word 'radar'.

    • Phrases like 'A man, a plan, a canal, Panama!' are also palindromes when ignoring spaces and punctuation.

    • To check if a string is a palindrome, compare it to its reverse.

    • In programming, you can use loops or built-in functions to reverse a string.

  • Answered by AI
  • Q2. Delete all the distinct records
  • Ans. 

    To delete all distinct records, use a query to identify and remove duplicate entries.

    • Identify distinct records using a query

    • Delete duplicate entries from the database

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Nov 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. Which anti virous we use ?
  • Ans. 

    We use multiple antivirus software depending on the specific needs and requirements.

    • We have a combination of commercial antivirus software like Norton and McAfee.

    • We also utilize open-source antivirus solutions like ClamAV.

    • In addition, we have developed our own proprietary antivirus software tailored to our organization's needs.

    • The choice of antivirus software depends on factors such as effectiveness, compatibility, and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good communication is key of job getting

I appeared for an interview in May 2022.

Round 1 - Coding Test 

Coding interviews test candidates' technical knowledge, coding ability, problem solving skills, and creativity, typically on a whiteboard.

Round 2 - Assignment 

A detail assignment is the temporary placement of a career employee in another established position that is vacant or from which the incumbent is absent.

Round 3 - Aptitude Test 

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes problem-solving, prioritisation and numerical skills, amongst other things.

Round 4 - Technical 

(3 Questions)

  • Q1. Consider the tools and skills necessary for the role. Think about the basic requirements of the job. ...
  • Q2. Study helpful books and digital publications. .
  • Ans. For books about studying productively, I think you'd be hard-pressed to find better than Eat That Frog – For Students by Brian Tracy and Anna Leinberger, The Productivity Project and Hyperfocus by Chris Bailey, The Procrastination Equation by Dr Piers Steel and Deep Work by Cal Newport.
  • Answered Anonymously
  • Q3. Take the time you need
  • Ans. Said to mean that you can spend as much time as you need in doing something, or that you should slow down
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - tips for a successful job interview
1) Be punctual at your interview. It is mandatory to be on time at a job interview. ...
2) Do your research on the company. ...
3) Don't forget about nonverbal communication. ...
4) Be polite with everyone. ...
5) Be prepared for your interview.
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Company details

Interview Preparation Tips

Interview preparation tips for other job seekers - Asking about company details and asking about herself as in resumes
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

The coding round consisted of one easy and one medium LC problem.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the difference between final and finally
  • Q2. What is the use of @valid in springboot.
  • Ans. 

    @Valid is used in Spring Boot to validate Java objects, ensuring they meet specified constraints before processing.

    • @Valid is an annotation from the Java Bean Validation framework.

    • It is commonly used in Spring MVC controllers to validate request bodies.

    • Example: @PostMapping public ResponseEntity<?> createUser(@Valid @RequestBody User user) {...}

    • It checks constraints like @NotNull, @Size, @Email, etc., on the field...

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Mar 2022. 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 

C and java

Round 3 - HR 

(2 Questions)

  • Q1. Self introduction and what about this company
  • Q2. Why should hire you and what did you for current work

Interview Preparation Tips

Topics to prepare for Infosys BPM Software Developer interview:
  • MS Office
  • Communication Skills
  • Javascript
Interview preparation tips for other job seekers - First having a aptitude test and set to the interview process for well good performance by all

Concentrix Corporation Interview FAQs

How many rounds are there in Concentrix Corporation DOT NET Developer interview?
Concentrix Corporation interview process usually has 1 rounds. The most common rounds in the Concentrix Corporation interview process are Technical.
How to prepare for Concentrix Corporation DOT NET Developer interview?
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 Concentrix Corporation. The most common topics and skills that interviewers at Concentrix Corporation expect are .Net, SQL, Backend, Data Analytics and HTML.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 2k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Infosys BPM Interview Questions
3.5
 • 1k Interviews
iEnergizer Interview Questions
4.7
 • 799 Interviews
Startek Interview Questions
3.1
 • 539 Interviews
Omega Healthcare Interview Questions
3.7
 • 482 Interviews
R1 RCM Interview Questions
3.8
 • 321 Interviews
View all
Concentrix Corporation DOT NET Developer Salary
based on 7 salaries
₹3 L/yr - ₹6.3 L/yr
18% less than the average DOT NET Developer Salary in India
View more details
Dot NET Developer (AI-Integrated Systems)

Gurgaon / Gurugram

10-15 Yrs

Not Disclosed

Python+.Net Developer

Remote

0-4 Yrs

Not Disclosed

Explore more jobs
Customer Service Executive
4.1k salaries
unlock blur

₹1.9 L/yr - ₹5.1 L/yr

Advisor
3.6k salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Assistant Manager
3.5k salaries
unlock blur

₹4.1 L/yr - ₹9 L/yr

Senior Representative
3.4k salaries
unlock blur

₹2.2 L/yr - ₹6.5 L/yr

Content Moderator
3.3k salaries
unlock blur

₹2.2 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Concentrix Corporation with

Teleperformance

3.9
Compare

iEnergizer

4.7
Compare

WNS

3.3
Compare

Infosys BPM

3.5
Compare
write
Share an Interview