Faster and better experience!
i
nCircle Tech
Filter interviews by
I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.
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
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
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.
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
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
I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.
It covered the basics, focusing on concepts like boat speed and different types.
Based on leetcodes bacis questionsa
I applied via Company Website and was interviewed in Jan 2023. There was 1 interview round.
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
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 }
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...
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...
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
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
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.
I applied via Referral and was interviewed before Jan 2024. There was 1 interview round.
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
nCircle Tech interview questions for designations
Top trending discussions
I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.
Aptitude test
Current affairs
I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.
Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring-based applications.
Spring provides a comprehensive framework for building Java applications, while Spring Boot is a tool that simplifies and accelerates the process of creating Spring-based applications.
Spring requires more configuration and setup, while Spring Boot provides a pre-configured environment that re...
A program to check if two strings are anagrams of each other.
Create two character arrays from the input strings
Sort the arrays
Compare the sorted arrays to check if they are equal
Using Streams API to filter and map an array of strings
Create a stream from the array using Arrays.stream()
Use filter() to select elements that meet a certain condition
Use map() to transform each element into a new value
Use toArray() to convert the stream back into an array
REST API is a web service that uses HTTP requests to access and manipulate data.
REST stands for Representational State Transfer
It is an architectural style for building web services
It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources
It is stateless and can be cached
It returns data in various formats like JSON, XML, etc.
I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.
Mcq + dsa JavaScript questions
posted on 31 May 2022
I appeared for an interview in Sep 2021.
Round duration - 150 Minutes
Round difficulty - Medium
3 coding question + 50 dsa
Given an array/list 'ARR' consisting of 'N' integers, your task is to find the majority element in the array. If there is no majority element present, return -1.
Find the majority element in an array, return -1 if no majority element exists.
Iterate through the array and keep track of the count of each element using a hashmap.
Check if any element's count is greater than floor(N/2) to determine the majority element.
Return the majority element or -1 if no majority element exists.
You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determine the height of the tree.
Calculate the height of a binary tree given its level order traversal.
Traverse the binary tree level by level and keep track of the height as you go down the tree.
Use a queue data structure to perform level order traversal efficiently.
The height of a binary tree is the maximum number of edges from the root to any leaf node.
Handle NULL nodes represented by -1 in the input.
Return the height of the binary tree as a single
You are provided with a 2-dimensional matrix having N
rows and M
columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...
Count the number of islands in a 2D matrix of 1s and 0s.
Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and count the number of connected components.
Maintain a visited array to keep track of visited cells to avoid counting the same island multiple times.
Iterate through each cell in the matrix and if it is a land (1) and not visited, perform DFS/BFS to explore the connected land cells.
I...
Round duration - 60 Minutes
Round difficulty - Hard
2 coding questions
You are given 'N' pairs of integers where the first number is always smaller than the second number, i.e., in pair (a, b) -> a < b always. A pair chain is...
Find the length of the longest pair chain that can be formed using the given pairs.
Sort the pairs based on the second element in ascending order.
Iterate through the sorted pairs and keep track of the maximum chain length.
Update the chain length if the current pair can be added to the chain.
Return the maximum chain length at the end.
You are given an array prices
, representing stock prices over N consecutive days. Your goal is to compute the maximum profit achievable by performing multiple transactions (i...
Find maximum profit by buying and selling stocks multiple times.
Iterate through the array and find all increasing sequences of stock prices.
Calculate profit by buying at the start and selling at the end of each increasing sequence.
Sum up all profits to get the maximum profit achievable.
Round duration - 45 minutes
Round difficulty - Medium
Data structures,java script,web dev related questions,dbms questions
Designing a web crawler involves defining the scope, selecting a crawling strategy, implementing the crawler, handling data storage, and ensuring politeness.
Define the scope of the web crawler by determining the websites to crawl and the depth of the crawl.
Select a crawling strategy such as breadth-first or depth-first search based on the requirements.
Implement the web crawler using a programming language like Python o...
Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
Tip 3 : practice basics of dsa
Tip 1 : show your projects
Tip 2 : highlight your skills
posted on 5 Apr 2023
I applied via Campus Placement and was interviewed in Oct 2022. There were 3 interview rounds.
They would ask searching sorting , binary search in first round
Delete a node from a binary tree.
Find the node to be deleted
If the node has no children, simply delete it
If the node has one child, replace it with its child
If the node has two children, find the minimum value in its right subtree, replace the node with that value, and delete the minimum value node
Some of the top questions asked at the nCircle Tech Software Developer interview -
based on 4 interviews
Interview experience
based on 17 reviews
Rating in categories
Software Developer
67
salaries
| ₹3.9 L/yr - ₹14.7 L/yr |
Senior Software Developer
42
salaries
| ₹5.1 L/yr - ₹17 L/yr |
Member Technical Staff
35
salaries
| ₹3 L/yr - ₹7 L/yr |
BIM Modeller
19
salaries
| ₹3 L/yr - ₹6.5 L/yr |
BIM Engineer
17
salaries
| ₹4.1 L/yr - ₹7.5 L/yr |
Maxgen Technologies
Cyfuture
Value Point Systems
JoulestoWatts Business Solutions