Upload Button Icon Add office photos
Engaged Employer

i

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

Centizen Verified Tick

Compare button icon Compare button icon Compare
4.4

based on 46 Reviews

Filter interviews by

Centizen Software Developer Interview Questions and Answers

Updated 27 Aug 2024

Centizen Software Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Problems based on strings, arrays

Round 2 - Technical 

(2 Questions)

  • Q1. Topics mentioned in the resume
  • Q2. Simple coding problems based on patterns, arrays and strings
Round 3 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Onboarding details

Software Developer Interview Questions & Answers

user image Nandhu Mugesh

posted on 18 Jun 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Knowledge of coding well prepared

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

I applied via Campus Placement and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. String,array,function,numbers..based questions

Interview Preparation Tips

Topics to prepare for Centizen Software Developer interview:
  • array
  • string
  • numbers
  • sorting
Interview preparation tips for other job seekers - best company for who wants to learn more in technical side...

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you read the job description
  • Q2. What you know about Vision India Services Pvt Ltd and Why do you wish to join us
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Q2. Get me 2 best reason we should hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic from language
  • Q2. Question from project if have done any
Round 2 - Coding Test 

For designer have to create page
And for coder simple coding questions

Round 3 - HR 

(1 Question)

  • Q1. Ready to work with low salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Before joining ask for job type will they are going to hire you as IC role or on company role because if u will go as IC(freelance) role so in future tcs like company not consider your experience
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Group Discussion 

About web development

I applied via Naukri.com

Round 1 - Aptitude Test 

Logical, quantity, basic

Round 2 - Coding Test 

Check the candidate skills

Round 3 - HR 

(2 Questions)

  • Q1. Based on hr mind set
  • Q2. Relevant to the job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Give me a one chance from me.i will to the job

I was interviewed in Jan 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 105 minutes
Round difficulty - Medium

Yes, here comes the technical Round. Like other casual Interviews, it started with my introduction. and then the Interviewer asked me about OOPs Concepts and for every concept he asked for an example code. it took around 20 mins for this round and next he started asking questions from my project ( in which I mentioned ML Project ). From this he has asked Like why do you choose this algorithm and why did you learned ML. After That he moved to the problem solving part. He asked 6 questions on Problem solving. this took me around 30 mins to solve. I'll mention those problems in the below section. And he started asking me about tree's implementation. I answered him the theoretical part for the questions asked. and furtherly he asked me 6-7 SQL queries which took me around 20mins I remember. And from there he started asking questions about CN and OS. As I don't know about them- I replied Like i didn't have much Knowledge In these Sessions but I have Learned Some new technologies that are trending in the market. So, the key point for every Interview is like- we need not to be know everything it is up to us to in which area we are having interest and finally you should be able to show that you are expert in that and one more thing- Any job role is not expecting to be good at only one area of tech- So you should be able to convince the Interviewer that you are capable of understanding, learning new tech and to be have good team working skills.

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered by CodingNinjas
  • Q2. Merge Sort Linked List

    You are given a Singly Linked List of integers. Sort the Linked List using merge sort.

    Merge Sort is a Divide and Conquer algorithm. It divides the input into two halves, calls its...

  • Ans. Merge Sort

    We will use the ‘Merge Sort’ algorithm to sort the given linked list. Merge Sort is a Divide and Conquer algorithm. In this algorithm, we will divide the list into two parts, recursively sort the two parts and finally merge them such that the resultant list will be sorted.

     

    Algorithm:

     

    1. If the list contains only one node, return the head of the list.
    2. Else, divide the list into two sublists. For this, we...
  • Answered by CodingNinjas
  • Q3. Matrix Is Symmetric

    You are given a square matrix, return true if the matrix is symmetric otherwise return false.

    A symmetric matrix is that matrix whose transpose is equal to the matrix itself.

    Exampl...

  • Ans. Brute Force
    • Create another matrix ‘TRANSPOSE’ of the same size initially having all zeros.
    • Now replace ‘TRANSPOSE’ (i,j) with ‘MATRIX’ (j,i).
    • And now traverse both matrixes element by element if anywhere there is inequality return false, else continue.
    • In the end, return true as you traverse.
    Space Complexity: O(1)Explanation:

     O(N ^ 2), Where ‘N’ is the size of the square matrix.

     

    Since an extra matrix of size ‘N’...

  • Answered by CodingNinjas
  • Q4. Spiral Matrix

    You are given a N x M matrix of integers, return the spiral path of the matrix

    Example Of Spiral Path

    Input Format:
    The first line contains an integer 'T' which denotes the numb...

  • Ans. Spiral Matrix

    Divide the matrix into loops. Print all the elements in the clockwise order from the first-outer layer, followed by the elements from the second outer layer, and so on. Use four loops to print all the elements. Every ‘for’ loop defines a single direction movement along with the matrix. The first loop represents the movement from left to right, the second loop represents the movement from top to bottom, the...

  • Answered by CodingNinjas
  • Q5. Technical Questions

    A program using most of the OOPs Concepts.

    find the second highest salary in sql.

    Write an SQL query to fetch all the Employees who are also managers from the EmployeeDetails table.

    Write a...

  • Q6. Height of the Binary Tree

    You have been given the Inorder Traversal and Level Order Traversal of a Binary Tree of integers. Your task is to calculate the height of the Binary tree without constructing it.

    ...
  • Ans. Queue Solution
    • The first element of the Level order Traversal is necessarily the root of the binary tree.
    • The nodes which appear left of the root in the inorder traversal are necessarily in the left subtree, and those which appear in the right are in the right subtree of the right subtree.
    • We can make use of the fact that the nodes of a subtree of the binary tree will form a continuous segment in the inorder array.
    • We can ...
  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

In this round Company Director for India team and HR has joined.
I started with my Introduction and he has asked what I know about the Company. I started saying everything from google and Wikipedia and from their official site. As this is a off campus recruitment he started explaining about the company what they do and the job role I have applied for. He said that the job was very challenging one and we'll be closely dealing with clients and meeting their expectations is quite challenging for the role. and then he started asking some real HR questions. for which I have answered in a cool way

  • Q1. Basic HR Questions

    Can you describe your time management skills? 

    What’s your absenteeism record like? 

    Can I trust you with responsibilities?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaBachelor’s degree in Engineering or a relevant fieldSymphony Talent, LLC interview preparation:Topics to prepare for the interview - Java, DBMS, SQL, HTML, CSS, JS, Standards and FrameWorks of JSP, Maven, Junit, Log4j, Collections.Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics of technology you know and work proof ( can be projects or events you have conducted ) for that particular technology is must.
Tip 2 : Even if you are not good at a particular technology, try to be best at some other technology.
Tip 3 : Never show of your weakness. and never in technology. There must be some, be you good at a particular thing. so find it out and become expertise in that.

Application resume tips for other job seekers

Tip 1 : Hide some interesting facts about you in the resume, So that you can impress the recruiter during the interview.
Tip 2 : Don't try online resumes, Instead you can make your own resume in MS Word to stand out from others. For me it took 2-3 hours to learn making resume in word and to complete it.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How many numbers consulting in this year?

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction your self. project. skills
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is your basic knowledge of Web Forms, ASP.NET, .NET Core, and SQL Server?

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.

Centizen Interview FAQs

How many rounds are there in Centizen Software Developer interview?
Centizen interview process usually has 1-2 rounds. The most common rounds in the Centizen interview process are Technical, Coding Test and HR.
What are the top questions asked in Centizen Software Developer interview?

Some of the top questions asked at the Centizen Software Developer interview -

  1. string,array,function,numbers..based questi...read more
  2. Simple coding problems based on patterns, arrays and stri...read more
  3. Onboarding deta...read more

Tell us how to improve this page.

People are getting interviews through

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

Centizen Software Developer Reviews and Ratings

based on 17 reviews

4.6/5

Rating in categories

4.5

Skill development

4.2

Work-Life balance

4.3

Salary & Benefits

4.7

Job Security

4.2

Company culture

4.2

Promotions/Appraisal

4.3

Work Satisfaction

Explore 17 Reviews and Ratings
Software Developer
57 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Software Engineer
10 salaries
unlock blur

₹3 L/yr - ₹5.7 L/yr

Technical Recruiter
10 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Full Stack Developer
7 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Devops Engineer
5 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Explore more salaries
Compare Centizen with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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