Upload Button Icon Add office photos
Engaged Employer

i

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

FCI CCM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

FCI CCM Software Developer Interview Questions and Answers

Updated 9 Dec 2024

FCI CCM Software Developer Interview Experiences

4 interviews found

Software Developer Interview Questions & Answers

user image Aryan Katiyar

posted on 9 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is spring boot
  • Q2. What is oops ?
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 Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Html,css, javascript MCQ

Round 2 - Assignment 

Assignment based on front end

Round 3 - HR 

(2 Questions)

  • Q1. Basic question asked by HR
  • Q2. Your Career, education, profile you interested

Interview Preparation Tips

Topics to prepare for FCI CCM Software Developer interview:
  • HTML
  • CSS

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more

Software Developer Interview Questions & Answers

user image Sangam Barnawal

posted on 5 Oct 2023

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

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

Basic English Question, and Mathematics questions.

Round 3 - Coding Test 

Basic DSA sorting algorithm, and some of Projects Questions

Round 4 - HR 

(2 Questions)

  • Q1. Basic details about yourself, and Education details, and about Experience that you have.
  • Q2. What about future plane, aducation details.
  • Ans. 

    Future plans and education details are important for career growth and development.

    • Continuously updating skills through courses and certifications

    • Setting career goals and working towards achieving them

    • Considering advanced degrees for career advancement

    • Networking with professionals in the field for opportunities

    • Staying informed about industry trends and technologies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic at time of interview, Be confident,

Software Developer Interview Questions & Answers

user image Pallavi jaiswal

posted on 5 Oct 2023

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

I applied via Campus Placement and was interviewed before Oct 2022. 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 - Coding Test 

You have Multiple choice questions regarding queries,sql, JavaScript, etc. and there was a time to complete the test

Round 3 - One-on-one 

(1 Question)

  • Q1. It's a second round and you have to answer the questions regarding your project on which you discuss in resume, and some other questions regarding your specific language.
Round 4 - HR 

(1 Question)

  • Q1. It's a normal hr round where you can discuss overall procedure like salary, location, hybrid, or whatever you want to know about company.

Interview Preparation Tips

Topics to prepare for FCI CCM Software Developer interview:
  • Front End
  • C
  • SQL
  • HTML
Interview preparation tips for other job seekers - You have to prepare with your project or any specific language in which you are interested have knowledge about it. And be confident.

FCI CCM interview questions for designations

 Associate Software Developer

 (1)

 Senior Software Developer

 (1)

 Senior Java Developer

 (1)

 Software Java Engineer

 (1)

 Technical Solution Architect

 (1)

 QA Engineer

 (1)

 Production Support Engineer

 (1)

Interview questions from similar companies

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. OOPS concepts, array functions of php and js, string functions of php and js
  • Q2. Sql, trigger, indexes,
  • Q3. Logical thinking, problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication and presentation will work even if you are lacking a bit in technical. Be confident
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 Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Given 5 coding questions to be solved in an hour

Round 2 - Technical 

(1 Question)

  • Q1. Asked questions on coding, machine learning, deep learning, Natural language processing and LLMs

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans. 

    Calculate total area covered by a list of rectangles on a plane.

    • Iterate through each rectangle and calculate its area

    • Check for overlapping areas between rectangles

    • Sum up the total area covered by all rectangles

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. 

    Identify the first repeating digit in a given string of digits.

    • Iterate through the string and keep track of seen digits using a set.

    • Return the first digit that repeats, or -1 if no digit repeats.

    • Time complexity: O(n), where n is the length of the input string.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Generate and print all possible permutations of a given input string.

    • Use recursion to generate all permutations by swapping characters in the string.

    • Maintain a visited array to keep track of characters already used in a particular permutation.

    • Print each permutation as it is generated.

    • Handle duplicate characters by skipping swapping if the character is already in the current position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

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 before Feb 2022. 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 - One-on-one 

(1 Question)

  • Q1. The interviewer asked Basic SQL and Linux OS-related questions.
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer asked questions regarding projects and experience.
  • Q2. The interviewer asked some aptitude and logical reasoning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization for freshers and people with no/limited experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

As usual interview with an aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Two coding questions
  • Q2. Two puzzle and iq
Round 3 - One-on-one 

(2 Questions)

  • Q1. Subject and project
  • Q2. Puzzle and iq test

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s a fresher interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Nov 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Maths, logical question & some related to programming

Round 3 - Coding Test 

One problem statement to write a program.

Round 4 - Technical 

(1 Question)

  • Q1. Technical question related PHP, SQL, etc.
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion

FCI CCM Interview FAQs

How many rounds are there in FCI CCM Software Developer interview?
FCI CCM interview process usually has 3 rounds. The most common rounds in the FCI CCM interview process are HR, Resume Shortlist and Aptitude Test.
How to prepare for FCI CCM Software 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 FCI CCM. The most common topics and skills that interviewers at FCI CCM expect are Analytical Chemistry, Automation Testing, CRM, Computer Science and Document Management.
What are the top questions asked in FCI CCM Software Developer interview?

Some of the top questions asked at the FCI CCM Software Developer interview -

  1. What about future plane, aducation detai...read more
  2. It's a second round and you have to answer the questions regarding your project...read more
  3. what is oop...read more

Tell us how to improve this page.

FCI CCM Software Developer Interview Process

based on 4 interviews

Interview experience

5
  
Excellent
View more

Fast track your campus placements

View all
FCI CCM Software Developer Salary
based on 36 salaries
₹3.2 L/yr - ₹10 L/yr
22% less than the average Software Developer Salary in India
View more details

FCI CCM Software Developer Reviews and Ratings

based on 29 reviews

3.9/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

3.6

Salary

4.0

Job security

4.1

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 29 Reviews and Ratings
Software Developer
36 salaries
unlock blur

₹3.2 L/yr - ₹10 L/yr

Software Engineer
25 salaries
unlock blur

₹3 L/yr - ₹10.9 L/yr

QA Engineer
19 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Associate Software Developer
15 salaries
unlock blur

₹3 L/yr - ₹4.3 L/yr

Senior Technical Lead
13 salaries
unlock blur

₹19 L/yr - ₹33 L/yr

Explore more salaries
Compare FCI CCM with

Duck Creek Technologies

4.4
Compare

Ascent HR Technologies Private Limited

3.7
Compare

FinThrive

3.7
Compare

Entrata

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview