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 Interview Questions and Answers

Updated 12 Jun 2025
Popular Designations

13 Interview questions

A Senior Software Test Engineer was asked 2w ago
Q. What are the key concepts of Object-Oriented Programming (OOP)?
Ans. 

Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction, which enhance code reusability and maintainability.

  • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class from an existing class, inheriting its attributes and ...

View all Senior Software Test Engineer 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.

View all Software Developer interview questions
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...

View all Software Developer interview questions
A Software Development Engineer Intern was asked
Q. What is the time complexity of binary search?
Ans. 

Binary search has a time complexity of O(log n).

  • Binary search is a divide and conquer algorithm.

  • It works by repeatedly dividing the search space in half.

  • The time complexity is logarithmic because each comparison reduces the search space by half.

  • It is efficient for sorted arrays or lists.

View all Software Development Engineer Intern interview questions
A Senior HR was asked
Q. If you have to complete a target on the weekend and at the same time you have to attend a family function, what would be your preference?
Ans. 

Balancing work commitments and family obligations requires prioritization and effective communication.

  • Assess the urgency of the work target: If it's a critical deadline, I may prioritize work.

  • Communicate with family: I would explain the situation to my family and see if I can attend part of the function.

  • Consider delegation: If possible, I would delegate some work tasks to ensure both responsibilities are managed.

  • P...

View all Senior HR interview questions
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...

View all Software Developer interview questions
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 }

View all Software Developer interview questions
Are these interview questions helpful?
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...

View all Software Developer interview questions
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.

View all Software Developer interview questions
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 ...

View all Software Developer interview questions

nCircle Tech Interview Experiences

14 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

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

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 were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is STLC,defect life cycle
  • Ans. 

    STLC stands for Software Testing Life Cycle, which is a series of steps performed to ensure the quality of a software product. Defect life cycle refers to the stages a defect goes through from identification to resolution.

    • STLC involves phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Defect life cycle includes stages like New, Assigned, Open, Fixed, Retest, Reopen, and Clos...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question

Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Geometry related Questions, Revit based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare C# Basics and concentrate on geometry related questions
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Total 5 coding question and few mcqs

Round 2 - Coding Test 

Basic to medium questions from leetcode

Round 3 - One-on-one 

(3 Questions)

  • Q1. Basic details about candidate
  • Q2. Time complexity
  • Q3. Binary search time complexity
  • Ans. 

    Binary search has a time complexity of O(log n).

    • Binary search is a divide and conquer algorithm.

    • It works by repeatedly dividing the search space in half.

    • The time complexity is logarithmic because each comparison reduces the search space by half.

    • It is efficient for sorted arrays or lists.

  • Answered by AI

Skills evaluated in this interview

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

Standard questions that you find on hackerrank

Round 2 - Technical 

(1 Question)

  • Q1. Questions about project in college. Geometry. C++
Round 3 - Technical 

(1 Question)

  • Q1. Question about project in college. Geometry. C++ - Oops, pointers Puzzle - cube cutting
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself. Hobbies.
  • Q2. How would you plan a hackathon event in company

C Developer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Javascript and mathematical aptitude

Round 2 - Coding Test 

Do leetcode....practice besic oops questions

Interview Preparation Tips

Interview preparation tips for other job seekers - technical interview ...oops projects....and see look at resume before giving interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Based on
1.Technical mcq c,cpp
2.Geometry questions
3. Quant
Time :1:30

Round 2 - Coding Test 

5 coding questions
easy to medium
Time:1:30

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

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

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

  • Q1. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction, which enhance code reusability and maintainability.

    • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class from an existing class, inheriting its attributes and metho...

  • Answered by AI
  • Q2. Write a Java program that identifies prime numbers from an array.
  • Ans. 

    This Java program identifies and prints prime numbers from a given array of integers.

    • Define a method to check if a number is prime.

    • Iterate through the array and use the prime-checking method.

    • Store and print the prime numbers found in the array.

    • Example input: [2, 3, 4, 5, 6, 7]; Output: [2, 3, 5, 7]

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about nCircle Tech?
Ask anonymously on communities.

nCircle Tech Interview FAQs

How many rounds are there in nCircle Tech interview?
nCircle Tech interview process usually has 2-3 rounds. The most common rounds in the nCircle Tech interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for nCircle Tech 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 IT Services, CAD, Javascript, CRM and C++.
What are the top questions asked in nCircle Tech interview?

Some of the top questions asked at the nCircle Tech 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
How long is the nCircle Tech interview process?

The duration of nCircle Tech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 14 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 70%
2-4 weeks 30%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
Cyfuture Interview Questions
3.0
 • 46 Interviews
View all

nCircle Tech Reviews and Ratings

based on 59 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.7

Salary

3.8

Job security

4.1

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 59 Reviews and Ratings
C++ Developer

Pune

4-5 Yrs

Not Disclosed

BIM Engineer (Arch)

Pune

5-6 Yrs

Not Disclosed

Teamcenter Developer (C++)

Pune

3-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
79 salaries
unlock blur

₹4 L/yr - ₹15.6 L/yr

Senior Software Developer
56 salaries
unlock blur

₹5.1 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.1 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

3.0
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare
write
Share an Interview