Paxcom interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Paxcom
upvote
share-icon
2 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: Data Structures - Arrays, Strings, Linked List, Machine Learning, Basics of Database Management System and Operating System, Aptitude, Trees, Binary Search Tree, Graph, Tries, Fenwick Trees, Segment Trees, Hash-map. Algorithms - Recursion, Ad Hoc, Dynamic Programming, Greedy, Binary Search, Breadth-first search, Depth-first search, Sorting
Tip
Tip

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.

Application process
Where: Campus
Eligibility: No criteria
Resume Tip
Resume tip

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.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration125 minutes
Interview date1 Dec 2020
Coding problem2

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.

1. Kth largest element

Moderate
0/80
Asked in companies
WalmartMakeMyTripOracle

Ninja loves playing with numbers. One day Alice gives him some numbers and asks him to find the Kth largest value among them.

Try solving now

2. Arithmetic Operators

Moderate
30m average time
70% success
0/80
Asked in companies
WalmartHCL TechnologiesPaxcom

Given an arithmetic expression ‘EXP’ containing integer values separated by any of the three operators ‘ + ’, ‘ - ’ and ‘ * ’. You need to place parentheses in the given expression such that the value of expression gets maximized. Your task is to return the maximum value obtained.

For Example:
If the Input Expression is 3*5+2, then the maximum value of ‘21’ can be obtained by placing the parentheses as 3*(5+2). So you need to return 21.
Try solving now
02
Round
Easy
Face to Face
Duration45 minutes
Interview date12 Jan 2021
Coding problem3

The interview took place in the morning and the interviewer was very friendly.

1. Kruskal’s Minimum Spanning Tree Algorithm

Moderate
30m average time
80% success
0/80
Asked in companies
AmazonTech MahindraHCL Technologies

A minimum spanning tree is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices without any cycles and with the minimum possible total edge weight.


A spanning tree’s weight is the sum of the weights of each edge in the spanning tree.


You have been given a connected undirected weighted graph having 'n' vertices, from 1 to 'n', and 'm' edges.


You are given an array 'edges' of size 'm', containing the details of the edges of the graph.


Each element of 'edges' contains three integers, the two vertices that are being connected and the weight of the edge.


Find the weight of the minimum spanning tree of the given graph.


Example :
Input: 'n' = 5, 'm' = 6
'edges' = [[1, 2, 6], [2, 3, 5], [3, 4, 4], [1, 4, 1], [1, 3, 2], [3, 5, 3]]

Output: 11

Explanation: The given graph is:

Example

The minimum spanning tree of the graph is:

Example

And its weight is 1 + 2 + 5 + 3 = 11.
Try solving now

2. Sum Tree

Moderate
29m average time
0/80
Asked in companies
MicrosoftOYOAmazon

For a given binary tree, convert it to its sum tree. That is, replace every node data with sum of its immediate children, keeping leaf nodes 0. Finally, return its preorder.

For example:
The input for the tree depicted in the below image would be :

alt text

1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1
Explanation :
Level 1 :
The root node of the tree is 1

Level 2 :
Left child of 1 = 2
Right child of 1 = 3

Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6

Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)

Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)

The first not-null node (of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The input ends when all nodes at the last level are null (-1).
Note :
The above format was just to provide clarity on how the input is formed for a given tree. 
 In the input, each value of the sequence will be present on a separate line.
Try solving now

3. Left View Of a Binary Tree

Easy
10m average time
90% success
0/40
Asked in companies
CognizantMakeMyTripSlice

You have been given a binary tree of integers. You are supposed to find the left view of the binary tree. The left view of a binary tree is the set of all nodes that are visible when the binary tree is viewed from the left side.

Example:

example

The left view of the above binary tree is  {5, 7, 14, 25}.
Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is 3 + 2 * 4 based on operator precedence?

Choose another skill to practice
Similar interview experiences
SDE - 1
4 rounds | 7 problems
Interviewed by Paxcom
0 views
0 comments
0 upvotes
SDE - 1
4 rounds | 4 problems
Interviewed by Paxcom
653 views
0 comments
0 upvotes
Software Engineer
4 rounds | 9 problems
Interviewed by Paxcom
522 views
0 comments
0 upvotes
SDE - Intern
2 rounds | 4 problems
Interviewed by Paxcom
504 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 5 problems
Interviewed by Mindtree
11276 views
7 comments
0 upvotes
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7135 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
8746 views
1 comments
0 upvotes