i
NICE
Filter interviews by
I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.
Java program to reverse string and check if it is a palindrome.
Create a function to reverse the input string.
Compare the reversed string with the original string to check if it is a palindrome.
Use built-in functions like StringBuilder or StringBuffer for string manipulation.
Handle cases where input is null or empty.
Selenium questions covering list vs set, findelement vs findelements, Actions class, implicit wait, and explicit wait.
List vs Set: List allows duplicate elements and maintains insertion order, while Set does not allow duplicates.
findElement vs findElements: findElement returns the first matching element, findElements returns a list of all matching elements.
Actions class: Used for performing complex user interactions li...
API testing involves checking various response codes to ensure the API functions correctly.
Test for common response codes like 200 (OK), 400 (Bad Request), 401 (Unauthorized), 404 (Not Found), 500 (Internal Server Error)
Verify the response code matches the expected result based on the API request
Use tools like Postman or RestAssured to automate API testing and check response codes
Check for edge cases where the API may
User story is a description of a feature from an end-user perspective, and sprint is a time-boxed iteration in Agile development.
User story is a short, simple description of a feature told from the perspective of the person who desires the new capability.
Sprint is a time-boxed iteration in Agile development, usually lasting 1-4 weeks, where a team works on a set of user stories.
User stories are written in a specific fo...
posted on 4 Oct 2024
Reverse the characters of words in a string
Split the string into an array of words
Reverse each word in the array
Join the reversed words back into a single string
I have worked on projects involving automation testing of web applications using Selenium and API testing using Postman.
Automation testing of web applications
API testing using Postman
Experience with Selenium
Integration testing
Regression testing
posted on 20 Jun 2022
I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.
posted on 30 Apr 2023
I applied via Company Website and was interviewed before Apr 2022. There were 4 interview rounds.
1 hr test, simple aptitude questions
Simple coding questions
Reverse a given string
Iterate through the string from end to start and append each character to a new string
Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java
Convert the string to an array, reverse the array, and convert it back to a string
posted on 11 Jan 2023
I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 4 interview rounds.
2 questions Based on arrays level of medium
posted on 2 Sep 2024
I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.
MCQ and essay writing
Oops concepts are the principles of Object Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Polymorphism: Ability to present the same interface for different data types.
Abstraction: Hiding the complex implementatio...
Join is used to combine rows from two or more tables based on a related column between them.
Types of joins include inner join, outer join (left, right, full), cross join, self join.
Inner join returns rows when there is at least one match in both tables.
Outer join returns all rows from one table and matching rows from the other table.
Cross join returns the Cartesian product of the two tables.
Self join is used to join a
I am a recent graduate with a degree in Computer Science and a passion for software development.
Recent graduate with a degree in Computer Science
Passionate about software development
Experience with programming languages like Java and Python
My hobbies include playing guitar, hiking, and reading science fiction novels.
Playing guitar: I enjoy learning new songs and practicing different techniques.
Hiking: I love exploring nature trails and challenging myself with long hikes.
Reading science fiction novels: I find it fascinating to immerse myself in futuristic worlds and imaginative stories.
posted on 27 Mar 2025
I appeared for an interview in Feb 2025, where I was asked the following questions.
Binary search is an efficient algorithm for finding an item from a sorted list of items.
Requires a sorted array to function correctly.
Divides the search interval in half with each iteration.
Time complexity is O(log n), making it faster than linear search.
Example: Searching for '5' in [1, 2, 3, 4, 5, 6] results in index 4.
Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory.
Divides memory into fixed-size blocks called pages.
Pages are mapped to physical memory frames, allowing non-contiguous allocation.
Improves memory utilization and reduces fragmentation.
Example: A process with 4 pages can be loaded into any 4 available frames in memory.
Paging allows for virtual memory, enabling proc...
posted on 17 May 2022
I appeared for an interview before May 2021.
Round duration - 60 minutes
Round difficulty - Easy
Timing - flexible 12 hours window to take the test. (9AM - 9PM)
Test was proctored
Given three integers X
, Y
, and Z
, calculate the sum of all numbers that can be formed using the digits 3, 4, and 5. Each digit can be used up to a maximum of X
, Y
, and Z
...
Calculate the sum of all numbers that can be formed using the digits 3, 4, and 5 with given constraints.
Iterate through all possible combinations of 3, 4, and 5 based on the given constraints.
Calculate the sum of each combination and add them up.
Return the final sum modulo 10^9 + 7.
Given a Weighted Directed Acyclic Graph (DAG) comprising 'N' nodes and 'E' directed edges, where nodes are numbered from 0 to N-1, and a source node 'Src'....
The task is to find the longest distances from a source node to all nodes in a weighted directed acyclic graph.
Implement a function that takes the number of nodes, edges, source node, and edge weights as input.
Use a topological sorting algorithm to traverse the graph and calculate the longest distances.
Return an array of integers where each element represents the longest distance from the source node to the correspondi
Round duration - 40 minutes
Round difficulty - Easy
Timing - 9:00 AM - 9:40 AM
You are provided with a positive integer N. Your goal is to determine the smallest number whose factorial has at least N trailing zeros.
N = 1
Find the smallest number whose factorial has at least N trailing zeros.
Calculate the number of 5's in the prime factorization of the factorial to determine the trailing zeros.
Use binary search to find the smallest number with at least N trailing zeros.
Consider edge cases like N = 0 or N = 1 for factorial trailing zeros problem.
Given a singly linked list of integers, your task is to return the head of the reversed linked list.
The given linked list is 1 -> 2 -> 3 -&g...
To reverse a singly linked list of integers, return the head of the reversed linked list.
Iterate through the linked list, reversing the pointers to point to the previous node instead of the next node.
Keep track of the previous, current, and next nodes while traversing the list.
Update the head of the reversed linked list to be the last element of the original list.
Round duration - 40 minutes
Round difficulty - Easy
Timing - 12:00 Pm to 12:40 PM
Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing for a tournament and has requested yo...
Implement a priority queue using a heap data structure by completing the provided functions: push(), pop(), getMaxElement(), and isEmpty().
Understand the operations: push() to insert element, pop() to remove largest element, getMaxElement() to return largest element, and isEmpty() to check if queue is empty.
Implement a heap data structure to maintain the priority queue.
Handle different types of queries based on the inp...
Given a binary tree with 'N' nodes, determine the size of the largest subtree that is also a BST (Binary Search Tree).
The first line contains an integer 'T', represen...
The problem involves finding the size of the largest subtree that is also a Binary Search Tree in a given binary tree.
Traverse the binary tree in a bottom-up manner to check if each subtree is a BST.
Keep track of the size of the largest BST subtree encountered so far.
Use recursion to solve the problem efficiently.
Consider edge cases like empty tree or single node tree.
Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1
Round duration - 40 minutes
Round difficulty - Medium
Timing - 6:00 PM - 6:30 PM
Design a system similar to Splitwise and suggest three features for improvement.
Implement a real-time notification system for updates on shared expenses
Integrate a feature for automatic currency conversion for international transactions
Enhance the user interface with data visualization tools for better expense tracking
Tip 1 : For fresher role, System design is not very important.
Tip 2 : Do at least 1-2 good quality projects.
Tip 1 : Have 1-2 good engaging projects in resume.
Tip 2 : Internships are helpful.
posted on 15 Oct 2023
I applied via Campus Placement and was interviewed in Apr 2023. There were 4 interview rounds.
Consists of basic coding questions from trees and arrays
posted on 15 Jan 2024
I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.
General Aptitude Question
based on 1 interview
Interview experience
Software Engineer
265
salaries
| ₹6.5 L/yr - ₹20.5 L/yr |
Senior Software Engineer
171
salaries
| ₹11.4 L/yr - ₹30 L/yr |
Technical Lead
167
salaries
| ₹8.2 L/yr - ₹35 L/yr |
Software Engineering Specialist
130
salaries
| ₹19.1 L/yr - ₹44 L/yr |
Software Engineer and Technical Lead
124
salaries
| ₹9 L/yr - ₹27.1 L/yr |
Oracle
KPIT Technologies
Intellect Design Arena
Thomson Reuters