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
4.1

based on 43 Reviews

Filter interviews by

nCircle Tech Software Developer Interview Questions, Process, and Tips

Updated 25 Dec 2024

Top nCircle Tech Software Developer Interview Questions and Answers

  • Q1. What's Shallow copy and deep copy? How can you make deep copy?
  • Q2. Write program to reverse string without extra space Now convert it into recursion
  • Q3. Difference between reference and pointer. L-value and R-value
View all 12 questions

nCircle Tech Software Developer Interview Experiences

3 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

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
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 questions from similar companies

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

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida 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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

It is very impressive work on Josh technology assessment because we learn many new skills.

Round 2 - Technical 

(2 Questions)

  • Q1. What is api and how it is work ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access services provided by other software applications, such as retrieving data from a database or sending notifications.

    • Examples of APIs ...

  • Answered by AI
  • Q2. What is software development life cycle and which steps are following?
  • Ans. 

    Software development life cycle (SDLC) is a process used by software developers to design, develop, and test software.

    • 1. Planning: Define the project scope, requirements, and objectives.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design of the software.

    • 4. Implementation: Develop the software based on the design.

    • 5. Testing: Test the software for bugs and issues.

    • 6. Deployment: Release t...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It was ok. I was not able to solve all the questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove the last element from a linkedlist
  • Ans. 

    To remove the last element from a linked list, iterate to the second last node and update its next pointer to null.

    • Iterate through the linked list to find the second last node

    • Update the next pointer of the second last node to null

  • Answered by AI
  • Q2. Some basic questions on oops dbms and os

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

The interviewer asked about javascript basics and DSA questions and some typescript questions

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

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

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 Resume Shortlist, Technical 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.

People are getting interviews through

based on 3 nCircle Tech interviews
Company Website
Job Portal
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
nCircle Tech Software Developer Salary
based on 52 salaries
₹3.6 L/yr - ₹15 L/yr
8% more than the average Software Developer Salary in India
View more details

nCircle Tech Software Developer Reviews and Ratings

based on 15 reviews

4.0/5

Rating in categories

3.8

Skill development

4.0

Work-Life balance

3.8

Salary & Benefits

3.8

Job Security

4.2

Company culture

3.6

Promotions/Appraisal

3.8

Work Satisfaction

Explore 15 Reviews and Ratings
Software Developer
52 salaries
unlock blur

₹3.6 L/yr - ₹15 L/yr

Member Technical Staff
34 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Software Developer
31 salaries
unlock blur

₹6.8 L/yr - ₹19.7 L/yr

BIM Modeller
18 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

BIM Engineer
16 salaries
unlock blur

₹4.1 L/yr - ₹7.5 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.7
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