Filter interviews by
I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.
To find unique characters from a string, we can iterate through the string and store each character in a set to check for uniqueness.
Iterate through the string and store each character in a set
Check if the character already exists in the set, if not add it
Return the set of unique characters
Find the second largest element in an array of strings.
Convert the strings to integers for comparison.
Sort the array in descending order.
Return the second element in the sorted array.
Count the occurrences of consecutive characters in a given string.
Iterate through the string and compare each character with the next one
Keep track of the count when consecutive characters are found
Store the consecutive characters and their counts in an array of strings
Top trending discussions
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
To configure a VPN, you need to set up a VPN server, create user accounts, configure client devices, and establish secure connections.
Set up a VPN server using software like OpenVPN or Windows Server
Create user accounts with unique credentials for accessing the VPN
Configure client devices to connect to the VPN server using the provided credentials
Establish secure connections by encrypting data transmitted over the VPN
To resolve system slowness, check for hardware issues, optimize software, update drivers, and monitor resource usage.
Check for hardware issues such as low memory or CPU usage
Optimize software by removing unnecessary programs or services
Update drivers for hardware components
Monitor resource usage to identify bottlenecks
I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.
posted on 19 Nov 2021
I applied via LinkedIn and was interviewed before Nov 2020. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.
Overloading in OOP allows multiple methods with same name but different parameters.
Overloading is achieved by changing the number, type or order of parameters
Return type of the methods does not matter in overloading
Example: void print(int a), void print(int a, int b), void print(String s)
Program to add two numbers in c#
Declare two variables to store the numbers
Take input from user for both variables
Add the variables and store the result in a third variable
Display the result
Xpath can use AND and OR conditions to locate elements based on multiple criteria.
To use AND, simply chain multiple conditions together with no operator in between.
To use OR, use the 'or' keyword between conditions.
Example: //div[@class='class1' and @id='id1'] or //div[@class='class2']
Protected internal access modifier allows access to members within the same assembly or derived classes.
Can be applied to methods, properties, fields, and events
Access is limited to the current assembly or derived classes
Used when you want to restrict access to certain members within the same assembly or derived classes
Example: protected internal int age = 25; // can be accessed within the same assembly or derived clas
I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.
posted on 31 May 2022
I appeared for an interview before May 2021.
Round duration - 90 minutes
Round difficulty - Easy
Timing - 10AM-11:30AM
Online proctored test
Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible when the tree is viewed from the righ...
The task is to print the right view of a binary tree, representing nodes visible from the right side in top-to-bottom order.
Traverse the tree level by level and keep track of the rightmost node at each level
Print the rightmost node of each level to get the right view of the tree
Use a queue for level order traversal and a map to store the rightmost nodes
A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...
Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).
Use a 1D array to store the maximum value that can be stolen for each weight from 0 to W.
Iterate through each item and update the array based on whether including the item would increase the total value.
The final value in the array at index W will be the maximum value that can be stolen.
Round duration - 45 minutes
Round difficulty - Medium
Timing : 4PM-5PM
Environment - Online
There was a panel of 3 interviewers
You can find the size of an array in C or C++ by dividing the total size of the array by the size of one element.
Calculate the total size of the array by multiplying the number of elements by the size of each element.
Divide the total size by the size of one element to get the size of the array.
For example, if you have an array of strings arr[] = {'hello', 'world', 'example'}, you can find the size by dividing the total
B+ trees are used for indexing in databases to efficiently search and retrieve data.
B+ trees are balanced trees where each node can have multiple keys and child pointers.
Data is stored in leaf nodes, while non-leaf nodes are used for navigation.
B+ trees are commonly used in databases because of their ability to efficiently search and retrieve data.
Example: In a database table with an index on a specific column, B+ tree...
Round duration - 45 mintues
Round difficulty - Easy
Timing - 11AM-12:15PM
Environment - online video call
Again there was a panel of 2 senior engineers
You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.
For the giv...
Find the maximum sum of the path from the root to any leaf node in an n-ary tree.
Traverse the tree from root to leaf nodes while keeping track of the sum of each path.
At each node, calculate the sum of the path from the root to that node and update the maximum sum found so far.
Consider using depth-first search (DFS) or breadth-first search (BFS) for tree traversal.
Handle cases where nodes have negative values or where
Tip 1 : Brush Up on Computer Science Fundamentals
Tip 2 : Prepare a Brief Self-Introduction
Tip 1 : Do not put fake resume
Tip 2 : Writing internship project helps.
I applied via Walk-in and was interviewed before Nov 2019. There were 3 interview rounds.
There are numerous genres of games, each offering unique gameplay experiences and targeting different player preferences.
There are over 30 main genres of games, including action, adventure, role-playing, strategy, sports, puzzle, and simulation.
Each genre has its own characteristics, gameplay mechanics, and objectives.
Examples of popular game genres include first-person shooters like Call of Duty, open-world action-adv...
Old generation video game consoles faced various problems.
Limited processing power and memory
Low-quality graphics and sound
Limited game storage capacity
Lack of online connectivity
Compatibility issues with newer TVs
Limited multiplayer options
The latest video game console is the PlayStation 5.
The PlayStation 5 (PS5) is the latest console released by Sony.
It features advanced graphics, fast loading times, and a new DualSense controller.
Some popular games for the PS5 include Demon's Souls, Spider-Man: Miles Morales, and Ratchet & Clank: Rift Apart.
A game story about a group of adventurers on a quest to save the world from an ancient evil.
Group of adventurers
Quest to save the world
Ancient evil as the main antagonist
Yes, as a test engineer, I have found bugs in games.
As a test engineer, it is my responsibility to identify and report bugs in games.
I have experience in testing various game genres such as action, puzzle, and simulation.
Examples of bugs I have found include graphical glitches, gameplay inconsistencies, and crashes.
I use a combination of manual testing and automated tools to ensure thorough bug detection.
Collaborating ...
Game testing differs from software testing in terms of scope, complexity, and user experience.
Game testing involves testing the functionality, performance, and usability of video games.
Software testing focuses on testing the functionality and performance of software applications.
Game testing requires specialized knowledge of game mechanics, graphics, audio, and user interactions.
Software testing typically involves test...
based on 1 interview
Interview experience
Product Developer
91
salaries
| ₹8.5 L/yr - ₹23.8 L/yr |
Technical Application Specialist
81
salaries
| ₹5.6 L/yr - ₹12 L/yr |
Senior Associate
71
salaries
| ₹8.1 L/yr - ₹25.5 L/yr |
Senior Product Developer
63
salaries
| ₹14.7 L/yr - ₹36.8 L/yr |
Senior Software Engineer
50
salaries
| ₹12.1 L/yr - ₹30 L/yr |
Apisero
Actalent Services
Cyber Infrastructure
TestingXperts