Filter interviews by
I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.
Priority is the importance of fixing a bug, severity is the impact of the bug on the system.
High priority, low severity: Spelling mistake in a button label
Low priority, high severity: Critical security vulnerability
APIs tested: RESTful, SOAP, GraphQL
GET: Retrieve data, POST: Create data, PUT: Update data
REST and SOAP APIs are two different types of web service protocols. @Before and @BeforeMethod are annotations used in TestNG for setup tasks.
REST API is lightweight and uses standard HTTP methods like GET, POST, PUT, DELETE. SOAP API is more rigid and uses XML for communication.
@Before annotation is used in TestNG to run setup tasks before each test method. @BeforeMethod is used to run setup tasks before each test met...
Javascript MCQ
AWS MCQ
Sliding window: smallest substring with unique characters
Code review involves checking for code quality, functionality, security, and adherence to coding standards.
Checking for code quality and readability
Ensuring the code functions as intended
Identifying and fixing security vulnerabilities
Verifying adherence to coding standards and best practices
Providing constructive feedback to the developer
App performance should consider factors like code optimization, network efficiency, memory management, and user experience.
Optimizing code for efficiency and speed
Minimizing network requests and optimizing data transfer
Efficient memory management to prevent crashes and slowdowns
Prioritizing user experience for smooth navigation and responsiveness
I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.
Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.
Lambda expressions allow you to pass functionality as an argument to a method.
Functional interfaces have a single abstract method and can be used with lambda expressions.
Streams provide a way to process collections of objects in a functional style.
Default methods allow interfaces to have method imple...
They give you assignment to complete in 1 hour.
Paxcom India interview questions for popular designations
I applied via campus placement at Jaypee University of Information Technology, Solan and was interviewed in May 2022. There were 4 interview rounds.
Test was on Hackerrank, 150 min duration, questions were easy to medium difficulty from topics such as Binary search, Doubly Linked list and Array manipulation.
An Enum is a data type that consists of a set of named values.
Enums are used to define a set of constants that can be used throughout the code.
Each value in an Enum is assigned an integer value by default, starting from 0.
Enums can also be assigned specific integer values or even string values.
Enums can be used in switch statements to handle different cases.
Example: enum Color { RED, GREEN, BLUE };
Example: enum Status
The most efficient way to reverse a String of characters is to use StringBuilder's reverse() method.
Create a StringBuilder object with the given String as parameter
Call the reverse() method on the StringBuilder object
Convert the StringBuilder object back to a String using toString() method
Find the odd occurring number from an array of numbers, including even occurring numbers.
Iterate through the array and count the frequency of each number using a hash map.
Iterate through the hash map and return the number with an odd frequency.
If no number has an odd frequency, return 'No odd occurring number found.'
The double XOR method is used to find two odd occurring numbers in an array.
Iterate through the array and perform XOR operation on all elements
The result will be the XOR of the two odd occurring numbers
Find the rightmost set bit in the result
Divide the array into two groups based on whether the corresponding bit is set or not
Perform XOR on each group separately to find the two odd occurring numbers
Get interview-ready with Top Paxcom India Interview Questions
I applied via Company Website and was interviewed in Jul 2022. There were 2 interview rounds.
2 problems in Microsoft Excel where they'll see your problem solving skills
I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.
To build a classifier given complex dataset
I was interviewed in Jan 2021.
Round duration - 125 minutes
Round difficulty - Easy
This round consist of coding questions and they were of good level based on strings and dynamic programming.
This round was the online coding test conducted on the platform Amcat. The languages allowed were C, C++, Java and Python.
Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.
The first line contains an integer 'T...
The idea is to sort the elements and return the kth largest element among them.
The steps are as follows:
O(1), no extra space required.
As we are not using any extra space. Hence, the overall space complexity is O(1).
Time Complexity: O(nlogn)Explanation:O(N*logN), where ‘N’ is the total number...
Given an arithmetic expression EXP
containing integer values separated by any of the operators ‘+’, ‘-’, and ‘*’, your task is to place parentheses such that the value of the exp...
The basic idea to solve this problem is to recursively place parentheses at all possible positions and find the maximum value obtained among all.
We can divide the input expression into smaller expressions recursively and find the maximum value.
If the input expression is ( EXP[ 0 ] opr EXP[ 1 ] opr EXP[ 2 ].............opr EXP[ n-1 ] ), then we can divide this expression into two as -
( EXP[ 0 ] opr…...
Round duration - 45 minutes
Round difficulty - Easy
The interview took place in the morning and the interviewer was very friendly.
You are given a connected undirected weighted graph. Your task is to determine the weight of the minimum spanning tree of this graph.
A minimum...
The basic idea of Kruskal’s algorithm is to sort the edges of the graph in non-decreasing order by its weight. And place all the nodes of the original graph isolated from each other, to form a forest of single node trees. Then, at each step of the algorithm, we will try to merge the trees by an edge of the original graph. The idea here is to choose the edges greedily. At each iteration, choose the ed...
Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...
The approach is very simple and can be achieved using the tree Depth First traversal approach.
Divide the tasks into two parts.
You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...
The idea is to use preorder traversal and for each level of the binary tree include the leftmost node in the answer. In the preorder traversal, we will traverse the left subtree of any node before the right subtree so that all nodes to the left of the current node are visited before the nodes which are on the right of the current node. Hence for any level, we will reach the leftmost node befo...
Tip 1 : Just be confident during interview and if you are stuck in between any question, then ask for a hint from the interviewer. The practice is key for success, so practice hard for Data Structures and Algorithms coding problems on Coding ninjas as it is the best platform for coding. Also you may practice on Geeks For Geeks or any other interview portal.
Tip 2 : Try to do as much as Data structures related questions as practice made a man perfect.
Tip 3 : If you have already done similar types of questions then you will get a solution approach very fastly during the interview.
Tip 1 : Mention all internships which you have done, as it increases your chances of shortlisting your resume.
Tip 2 : Keep resume short and up to the point and try to keep it on a single page.
Tip 3 : Also just write that skills which you are pretty confident about.
I was interviewed before May 2021.
Round duration - 50 Minutes
Round difficulty - Easy
50 questions - 1 hour
You are provided with a non-empty grid consisting of only 0s and 1s. Your task is to determine the maximum area of an island within the given grid.
An island consists of a...
Round duration - 60 Minutes
Round difficulty - Easy
2 question of coding - 1 hour
You have a robot currently positioned at the origin (0, 0) on a two-dimensional grid, facing the north direction. You are given a sequence of moves in the form of a string ...
You are given a string 'S' of length 'N'. Your task is to find the frequency of each character from 'a' to 'z' in the string.
S : abcdg
1...
Round duration - 20 Minutes
Round difficulty - Easy
Introduction
Projects
DBMS
Oops
Given an integer K
, and two numbers A
and B
, count the occurrences of the digit K
in the range [A, B].
Include both the lower and upper limits in the count.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Round duration - 40 Minutes
Round difficulty - Easy
Introduction
Projects (describe all mention in resume)
Polymorphism (definition, types and real world example)
Joins (left & right)
Use of groupby
JVM (JDK & JRE)
You are provided with an array named BINARYNUMS
consisting of N
unique strings. Each string represents an integer in binary, covering every integer from 0 to N except for ...
Given an array of unique integers where each element is in the range [1, N], and the size of the array is (N - 2), there are two numbers missing from this array....
Tip 1 : Main focus on DS algo
Tip 2 : Do Subject also (dbms, os, etc)
Tip 3 : Do some good projects
Tip 1 : Highlight your strong points
Tip 2 : Change resume according to required skills by comapny
I was interviewed in Nov 2020.
Round duration - 50 minutes
Round difficulty - Easy
Round duration - 50 Minutes
Round difficulty - Easy
Create a program to print a numeric pattern based on the given input integer N
which specifies the number of rows.
N = 4
1
23
345
4567
Ea...
Round duration - 10 Minutes
Round difficulty - Easy
Tip 1 : Conduct a Mock Interview
Tip 2 : Do Extensive Research on the Company
Tip 1 : Make Your Contact Info Prominent
Tip 2 : Design for Skimmability
Top trending discussions
based on 7 interviews
Interview experience
based on 61 reviews
Rating in categories
Software Engineer
77
salaries
| ₹5 L/yr - ₹13.2 L/yr |
E-Commerce Analyst
35
salaries
| ₹4 L/yr - ₹7 L/yr |
Senior Software Engineer
35
salaries
| ₹8 L/yr - ₹20.5 L/yr |
Business Analyst
18
salaries
| ₹2.5 L/yr - ₹10 L/yr |
QA Engineer
17
salaries
| ₹4 L/yr - ₹8 L/yr |
TCS
Infosys
Wipro
HCLTech