Upload Button Icon Add office photos
Engaged Employer

i

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

nCircle Tech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

nCircle Tech Software Developer Interview Questions and Answers

Updated 20 Jan 2025

10 Interview questions

A Software Developer was asked 9mo ago
Q. Is JavaScript an asynchronous language?
Ans. 

Yes, JavaScript is an asynchronous language.

  • JavaScript uses callbacks and promises to handle asynchronous operations.

  • Asynchronous functions allow other code to run while waiting for a response.

  • Example: setTimeout() function in JavaScript is asynchronous.

A Software Developer was asked 9mo ago
Q. How do you project a point onto a line?
Ans. 

To project a point on a line, calculate the perpendicular distance from the point to the line and find the point on the line that is closest to the given point.

  • Calculate the slope of the line

  • Find the equation of the line

  • Calculate the perpendicular distance from the point to the line using the formula |Ax + By + C| / sqrt(A^2 + B^2)

  • Find the point on the line that is closest to the given point by moving along the pe...

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. What is function overriding?
Ans. 

Function overriding is a feature in object-oriented programming where a subclass provides a different implementation of a method that is already defined in its superclass.

  • It allows a subclass to provide its own implementation of a method that is already defined in its superclass.

  • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

  • The method in the subclas...

A Software Developer was asked
Q. What is a copy constructor?
Ans. 

Copy constructor is a special constructor that creates a new object by copying an existing object.

  • It is used to create a new object with the same values as an existing object.

  • It takes an object of the same class as a parameter.

  • It is used to avoid shallow copy issues.

  • Example: MyClass(const MyClass& obj) { //copy constructor code }

A Software Developer was asked
Q. Explain the basic pillars of OOP.
Ans. 

OOP's pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Abstraction: Hiding implementation details and showing only necessary information.

  • Encapsulation: Binding data and functions together and restricting access to them.

  • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

  • Polymorphism: Ability of objects to take on many forms and perform different actions base...

A Software Developer was asked
Q. Which containers have you used in STL?
Ans. 

I have used vector, deque, list, stack, queue, and priority_queue containers in STL.

  • Vector is used for dynamic arrays.

  • Deque is used for double-ended queues.

  • List is used for doubly linked lists.

  • Stack is used for LIFO data structure.

  • Queue is used for FIFO data structure.

  • Priority_queue is used for priority queues.

A Software Developer was asked 9mo ago
Q. What is matrix multiplication and how to do it ?
Ans. 

Matrix multiplication is a mathematical operation that combines two matrices to produce a third matrix.

  • Matrix multiplication involves multiplying the rows of the first matrix by the columns of the second matrix.

  • The number of columns in the first matrix must equal the number of rows in the second matrix.

  • The resulting matrix will have the same number of rows as the first matrix and the same number of columns as the ...

Are these interview questions helpful?
A Software Developer was asked
Q. Write program to reverse string without extra space Now convert it into recursion
Ans. 

Program to reverse string without extra space using recursion

  • Use a recursive function to swap the first and last characters of the string

  • Recursively call the function on the remaining substring

  • Base case: when the string length is 0 or 1, return the string itself

A Software Developer was asked
Q. Difference between reference and pointer. L-value and R-value
Ans. 

Reference is an alias to an existing variable while pointer is a variable that stores the memory address of another variable.

  • References cannot be null while pointers can be null

  • References cannot be re-assigned while pointers can be re-assigned

  • L-value refers to the memory location of a variable while R-value refers to the value stored in that memory location

A Software Developer was asked
Q. What's Shallow copy and deep copy? How can you make deep copy?
Ans. 

Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.

  • Shallow copy only copies the reference of the original object, while deep copy creates a new object with a new reference and copies the values of the original object.

  • In Python, shallow copy can be made using the copy() method, while deep copy can be made using the deepcopy() method f...

nCircle Tech Software Developer Interview Experiences

4 interviews found

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is vector? How to use it ?
  • Ans. 

    A vector is a dynamic array that can resize itself automatically when elements are added or removed.

    • Vectors are part of the C++ Standard Template Library (STL).

    • They provide similar functionality to arrays but with additional features like automatic resizing.

    • Vectors can be accessed using index notation and have methods for adding, removing, and accessing elements.

    • Example: vector numbers = {1, 2, 3}; numbers.push_back(4)...

  • Answered by AI
  • Q2. How to project point on line ?
  • Ans. 

    To project a point on a line, calculate the perpendicular distance from the point to the line and find the point on the line that is closest to the given point.

    • Calculate the slope of the line

    • Find the equation of the line

    • Calculate the perpendicular distance from the point to the line using the formula |Ax + By + C| / sqrt(A^2 + B^2)

    • Find the point on the line that is closest to the given point by moving along the perpend...

  • Answered by AI
  • Q3. Is JavaScript asynchronous language?
  • Ans. 

    Yes, JavaScript is an asynchronous language.

    • JavaScript uses callbacks and promises to handle asynchronous operations.

    • Asynchronous functions allow other code to run while waiting for a response.

    • Example: setTimeout() function in JavaScript is asynchronous.

  • Answered by AI
  • Q4. What is matrix multiplication and how to do it ?
  • Ans. 

    Matrix multiplication is a mathematical operation that combines two matrices to produce a third matrix.

    • Matrix multiplication involves multiplying the rows of the first matrix by the columns of the second matrix.

    • The number of columns in the first matrix must equal the number of rows in the second matrix.

    • The resulting matrix will have the same number of rows as the first matrix and the same number of columns as the secon...

  • Answered by AI
  • Q5. Write a program to create Fibonacci sequence pyramid
  • Ans. 

    Program to create Fibonacci sequence pyramid

    • Start by defining the number of rows for the pyramid

    • Use nested loops to generate Fibonacci numbers for each row

    • Print the Fibonacci numbers in pyramid format

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They asked random coding questions like create Fibonacci sequence pyramid. And time is like 20 minutes. So prepare accordingly

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It covered the basics, focusing on concepts like boat speed and different types.

Round 2 - Coding Test 

Based on leetcodes bacis questionsa

Interview Preparation Tips

Topics to prepare for nCircle Tech Software Developer interview:
  • CPP
  • Javascript
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2023. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Explain Basic OOP's Pillers
  • Ans. 

    OOP's pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together and restricting access to them.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on many forms and perform different actions based on ...

  • Answered by AI
  • Q2. What's Copy Constructor
  • Ans. 

    Copy constructor is a special constructor that creates a new object by copying an existing object.

    • It is used to create a new object with the same values as an existing object.

    • It takes an object of the same class as a parameter.

    • It is used to avoid shallow copy issues.

    • Example: MyClass(const MyClass& obj) { //copy constructor code }

  • Answered by AI
  • Q3. What's Shallow copy and deep copy? How can you make deep copy?
  • Ans. 

    Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.

    • Shallow copy only copies the reference of the original object, while deep copy creates a new object with a new reference and copies the values of the original object.

    • In Python, shallow copy can be made using the copy() method, while deep copy can be made using the deepcopy() method from t...

  • Answered by AI
  • Q4. What's function overriding
  • Ans. 

    Function overriding is a feature in object-oriented programming where a subclass provides a different implementation of a method that is already defined in its superclass.

    • It allows a subclass to provide its own implementation of a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • The method in the subclass can...

  • Answered by AI
  • Q5. Difference between reference and pointer. L-value and R-value
  • Ans. 

    Reference is an alias to an existing variable while pointer is a variable that stores the memory address of another variable.

    • References cannot be null while pointers can be null

    • References cannot be re-assigned while pointers can be re-assigned

    • L-value refers to the memory location of a variable while R-value refers to the value stored in that memory location

  • Answered by AI
  • Q6. Write program to reverse string without extra space Now convert it into recursion
  • Ans. 

    Program to reverse string without extra space using recursion

    • Use a recursive function to swap the first and last characters of the string

    • Recursively call the function on the remaining substring

    • Base case: when the string length is 0 or 1, return the string itself

  • Answered by AI
  • Q7. Which containers have you used in STL?
  • Ans. 

    I have used vector, deque, list, stack, queue, and priority_queue containers in STL.

    • Vector is used for dynamic arrays.

    • Deque is used for double-ended queues.

    • List is used for doubly linked lists.

    • Stack is used for LIFO data structure.

    • Queue is used for FIFO data structure.

    • Priority_queue is used for priority queues.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for nCircle Tech Software Developer interview:
  • C++
  • STL
Interview preparation tips for other job seekers - Keep Basics clear and read about STL and OOPS in C++ in as much depth as you can

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Sudhansu Pati

posted on 20 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find the occurrence of character in the string in javascript?
  • Ans. 

    Use the JavaScript method 'split' to split the string into an array and then count the occurrences of the desired character.

    • Use the 'split' method to split the string into an array of characters

    • Use the 'filter' method to filter out the desired character

    • Get the length of the filtered array to find the occurrence count

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
5d (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 nCircle Tech?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic programming concepts, OOPs & logical questions
  • Q2. Particular technology related and basic array programming

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process was very smooth

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Job Fair and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

In this round, we have questions from time relation, blood relation, programming questions. Around 45 questions in 30 minutes,

Round 2 - Coding Test 

In this round, we have two programming questions. Both are hacker rank easy to medium level.

Round 3 - Technical 

(1 Question)

  • Q1. In this round, we have questions from the core java and a famous scooter tire question.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions are at a medium level. Always keep your confidence high.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Basic questions like OOPS, Nodejs Working, map, forEach
  • Q2. Question like how reractJS works
  • Ans. 

    ReactJS is a JavaScript library for building user interfaces using components and a virtual DOM for efficient rendering.

    • React uses a component-based architecture, allowing developers to create reusable UI components.

    • It employs a virtual DOM to optimize rendering; changes are first made to the virtual DOM, then efficiently updated in the real DOM.

    • React's unidirectional data flow simplifies data management, making it eas...

  • Answered by AI

I applied via Campus Placement and was interviewed in Jul 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 

It was done on hackerrank the first question was related to array and second was on linked list and last was on sql

Round 3 - Technical 

(1 Question)

  • Q1. Oops concept stack program SQL basics
Round 4 - HR 

(1 Question)

  • Q1. Normal question related to me and job

Interview Preparation Tips

Topics to prepare for Cyfuture Software Developer interview:
  • Linked list
  • Data Structures
Interview preparation tips for other job seekers - Just do practise of programming and interview is easy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked some general Quantitative and logical questions and code snippets.

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse and Two Sum
  • Q2. Related to my projects and Tech Stacks
Round 3 - Technical 

(2 Questions)

  • Q1. This is the Second technical round. The interviewer asked about everything from my project.
  • Q2. Asked some sql queries like joins and set operation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Understand the business idea of your Project and Tech Stacks

nCircle Tech Interview FAQs

How many rounds are there in nCircle Tech Software Developer interview?
nCircle Tech interview process usually has 1-2 rounds. The most common rounds in the nCircle Tech interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for nCircle Tech 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 nCircle Tech. The most common topics and skills that interviewers at nCircle Tech expect are C++, Software Development, CAD, MFC and Opengl.
What are the top questions asked in nCircle Tech Software Developer interview?

Some of the top questions asked at the nCircle Tech Software Developer interview -

  1. What's Shallow copy and deep copy? How can you make deep co...read more
  2. Write program to reverse string without extra space Now convert it into recursi...read more
  3. Difference between reference and pointer. L-value and R-va...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 4 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
nCircle Tech Software Developer Salary
based on 78 salaries
₹3.8 L/yr - ₹9.7 L/yr
36% less than the average Software Developer Salary in India
View more details

nCircle Tech Software Developer Reviews and Ratings

based on 18 reviews

4.1/5

Rating in categories

4.0

Skill development

4.2

Work-life balance

3.8

Salary

3.9

Job security

4.3

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 18 Reviews and Ratings
Software Developer
78 salaries
unlock blur

₹3.8 L/yr - ₹9.6 L/yr

Senior Software Developer
47 salaries
unlock blur

₹9.6 L/yr - ₹17 L/yr

Member Technical Staff
39 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

BIM Engineer
21 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

BIM Modeller
19 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare nCircle Tech with

Cyfuture

2.9
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare
write
Share an Interview