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, Process, and Tips

Updated 20 Jan 2025

Top nCircle Tech Interview Questions and Answers

View all 15 questions

nCircle Tech Interview Experiences

Popular Designations

12 interviews found

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

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
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

Top nCircle Tech Software Developer Interview Questions and Answers

Q1. What's Shallow copy and deep copy? How can you make deep copy?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

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

nCircle Tech interview questions for popular designations

 Software Developer

 (4)

 C Developer

 (1)

 Software Engineer

 (1)

 Senior HR

 (1)

 Senior Software Developer

 (1)

 Software Development Engineer Intern

 (1)

 QA Engineer

 (1)

 Engineer Trainee

 (1)

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

Top nCircle Tech Software Developer Interview Questions and Answers

Q1. What's Shallow copy and deep copy? How can you make deep copy?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

Jobs at nCircle Tech

View all

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

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)
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

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
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

Top nCircle Tech Software Developer Interview Questions and Answers

Q1. What's Shallow copy and deep copy? How can you make deep copy?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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 nCircle Tech Software Developer Interview Questions and Answers

Q1. What's Shallow copy and deep copy? How can you make deep copy?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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 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 - Technical 

(1 Question)

  • Q1. Conceptual questions on Flutter StreamBuilder Fat arrow notation async & async*
Round 3 - HR 

(1 Question)

  • Q1. Basic Personal details Questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (199)

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 Coding Test, Technical and Aptitude Test.
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, CRM, C++ and SAN.
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.

nCircle Tech Interview Process

based on 12 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
View all

nCircle Tech Reviews and Ratings

based on 54 reviews

4.1/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

3.7

Salary

4.0

Job security

4.1

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 54 Reviews and Ratings
React Js Developer

Pune

3-5 Yrs

Not Disclosed

Senior Manager Business Development

Pune

15-20 Yrs

Not Disclosed

Content Writer

Pune

2-3 Yrs

Not Disclosed

Explore more jobs
Software Developer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

BIM Modeller
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

BIM Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare nCircle Tech with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

L&T Technology Services

3.3
Compare

Cyient

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