Upload Button Icon Add office photos

Filter interviews by

Paxcom India Interview Questions, Process, and Tips

Updated 7 Nov 2024

Top Paxcom India Interview Questions and Answers

View all 22 questions

Paxcom India Interview Experiences

Popular Designations

13 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Java questions What is helper class What is page object model, page object class What we are keeping in page object class How are we calling methods in page object class
  • Q3. Difference between priority and severity Example of high priority low severity Example of low priority high severity Different apis that you have tested Difference between get, post, put
  • Ans. 

    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

  • Answered by AI
  • Q4. Sql questions Which sql you have used Some basic queries to find slary between 50k and 100k Employee name starting from S What is dbms Dbms vs rdms Sql commands and Difference between then ddl, dml, dql Wh...
  • Q5. Difference between rest and soap api Calling method @Test Difference between before and before method What are annotations What is testng what does it do
  • Ans. 

    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...

  • Answered by AI
  • Q6. When given a build what test process it goes through System testing and Integration testing What happens after integration testing Types of protocol What does it mean when api is throwing code starting fro...

Interview Preparation Tips

Topics to prepare for Paxcom India Manual Automation Test Engineer interview:
  • Manual testing questions
  • API related questions
  • Java

Skills evaluated in this interview

Manual Automation Test Engineer Interview Questions asked at other Companies

Q1. What are assertion in selenium? And how do you handle it?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Javascript MCQ
AWS MCQ
Sliding window: smallest substring with unique characters

Round 2 - One-on-one 

(3 Questions)

  • Q1. Youtube Design HLD
  • Q2. What is considered in code review
  • Ans. 

    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

  • Answered by AI
  • Q3. What should be considered for app performance
  • Ans. 

    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

  • Answered by AI

Skills evaluated in this interview

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square root (decimal)You have been given two integers 'N' and 'D', Your task is to find the square root of the number 'N' with precision up to 'D' decimal places i.e. the difference between your answer and the correct answer should be less ... read more
View answer (2)
Paxcom India Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Authentication and authorization validation
  • Q2. Event based programming scenarios

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (10)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 Features?
  • Ans. 

    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...

  • Answered by AI
  • Q2. Sql Server/Mysql join commands
Round 2 - Assignment 

They give you assignment to complete in 1 hour.

Round 3 - HR 

(1 Question)

  • Q1. Ask for Notice Period

Interview Preparation Tips

Topics to prepare for Paxcom India Senior Software Engineer interview:
  • Java
  • Multithreading
  • Collections
  • SQL

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Paxcom India interview questions for popular designations

 Data Research Analyst

 (2)

 Data Scientist

 (1)

 DOT NET Developer

 (1)

 E-Commerce Executive

 (1)

 Full Stack Developer

 (1)

 Lead Software Engineer

 (1)

 Manual Automation Test Engineer

 (1)

 Senior Software Engineer

 (1)

I applied via campus placement at Jaypee University of Information Technology, Solan and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

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.

Round 3 - Technical 

(4 Questions)

  • Q1. What is an Enum? implementation of an Enum
  • Ans. 

    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

  • Answered by AI
  • Q2. Most efficient way to reverse a String of characters
  • Ans. 

    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

  • Answered by AI
  • Q3. Find the odd occuring number from array of numbers including even occuring (frequency) numbers.
  • Ans. 

    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.'

  • Answered by AI
  • Q4. Follow-up to Q3: Find two odd occuring numbers (Eff. Sol: Double Xor method)
  • Ans. 

    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

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why would you like to join our company?
  • Q2. What are your career goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, the interviewers are great and helpful if you get stuck or need a hint. Overall DSA skill required is Medium, with some rare good quality questions from simple topics like enum, LL, Xor (Operators) etc. Doing any DSA Sheet or unique questions from Leetcode will be great help.

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

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.

Round 1 - Assignment 

2 problems in Microsoft Excel where they'll see your problem solving skills

Round 2 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself?
  • Q2. Explain how you solve your assignment?
  • Q3. Tell me about your various technical skills?
  • Q4. Explain your project?

Interview Preparation Tips

Topics to prepare for Paxcom India Data Research Analyst interview:
  • Advanced Excel
  • Pivot Table
  • HLOOKUP
Interview preparation tips for other job seekers - Just be calm and be yourself. Practice more Excel problems before applying, they can give you real hard problem to solve.

Data Research Analyst Interview Questions asked at other Companies

Q1. What is the difference between issued and outstanding shares?
View answer (2)

Jobs at Paxcom India

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of DL and CV
  • Q2. Mainly OD related questions
Round 2 - Case Study 

To build a classifier given complex dataset

Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion based on assignment and previous experience
Round 4 - HR 

(1 Question)

  • Q1. About the roles and salary discussion

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. Sorting

    The idea is to sort the elements and return the kth largest element among them.

     

    The steps are as follows:

    • Sort the elements in descending order.
    • Return the element at k - 1 th index.
    Space Complexity: O(1)Explanation:

    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...

  • Answered Anonymously
  • Q2. 

    Maximize Expression Value

    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...

  • Ans. Recursion

    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…...

  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Easy

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

  • Q1. 

    Kruskal’s Minimum Spanning Tree Algorithm Problem Statement

    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...

  • Ans. Kruskal’s algorithm

    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...

  • Answered Anonymously
  • Q2. 

    Sum Tree Conversion

    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...

  • Ans. DFS Approach

    The approach is very simple and can be achieved using the tree Depth First traversal approach.

    Divide the tasks into two parts.

    1. Build the Sum Tree
      1. You need to update the root data with the sum of the left and right children’s data given that the root itself is not null.
      2. Well, you can do so by checking the left node and right node. If they are not null, take their sum and update the root data.
      3. Extend this idea fu...
  • Answered Anonymously
  • Q3. 

    Determine the Left View of a Binary Tree

    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...

  • Ans. Preorder Traversal Approach

    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...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaPaxcom interview preparation:Topics to prepare for the interview - 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, SortingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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 resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

50 questions - 1 hour

  • Q1. 

    Problem Statement: Largest Island

    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 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

2 question of coding - 1 hour

  • Q1. 

    Circular Move Problem Statement

    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 ...

  • Q2. 

    Character Frequency Problem Statement

    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.

    Example:

    Input:
    S : abcdg
    Output:
    1...
Round 3 - Telephonic Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

Introduction
Projects
DBMS
Oops

  • Q1. 

    Digit Count In Range Problem Statement

    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.

    Input:

    ...
  • Q2. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
Round 4 - Video Call 

(2 Questions)

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)

  • Q1. 

    Missing Number Problem Statement

    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 ...

  • Q2. 

    Find Two Missing Numbers Problem Statement

    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....

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 1 in MohaliEligibility criteria60% overallPaxcom interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, OS, Java, SQL, DBMSTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Main focus on DS algo
Tip 2 : Do Subject also (dbms, os, etc)
Tip 3 : Do some good projects

Application resume tips for other job seekers

Tip 1 : Highlight your strong points
Tip 2 : Change resume according to required skills by comapny

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Paxcom India Software Developer Interview Questions and Answers

Q1. Digit Count In Range Problem Statement 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. Input: The first line contains an integer ‘T... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Easy

Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Number Pattern Generation

    Create a program to print a numeric pattern based on the given input integer N which specifies the number of rows.

    Example:

    Input:
    N = 4
    Output:
    1
    23
    345
    4567
    Explanation:

    Ea...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
Round 3 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criterianoPaxcom interview preparation:Topics to prepare for the interview - Time and Work , Average, Problem on ages, profit and loss, Pipes and Cisterns, Problem on trains, Percentage Alligation and Mixtures , probability, permutation and combinationTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Conduct a Mock Interview
Tip 2 : Do Extensive Research on the Company
 

Application resume tips for other job seekers

Tip 1 : Make Your Contact Info Prominent
Tip 2 : Design for Skimmability

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Contribute & help others!
anonymous
You can choose to be anonymous

Paxcom India Interview FAQs

How many rounds are there in Paxcom India interview?
Paxcom India interview process usually has 2-3 rounds. The most common rounds in the Paxcom India interview process are One-on-one Round, Technical and HR.
How to prepare for Paxcom India interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Paxcom India. The most common topics and skills that interviewers at Paxcom India expect are Java, Javascript, Node.Js, Angularjs and React.Js.
What are the top questions asked in Paxcom India interview?

Some of the top questions asked at the Paxcom India interview -

  1. Difference between priority and severity Example of high priority low severity ...read more
  2. Difference between rest and soap api Calling method @Test Difference between be...read more
  3. What is an Enum? implementation of an E...read more

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

REVIEWS

Keolis Hyderabad Metro

No Reviews

SALARIES

DATAMARK BPO SERVICE (P) LTD

No Salaries

REVIEWS

Dharmaj Crop Guard

No Reviews

JOBS

Keolis Hyderabad Metro

No Jobs

INTERVIEWS

Aztec

No Interviews

Tell us how to improve this page.

Paxcom India Interview Process

based on 7 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all

Paxcom India Reviews and Ratings

based on 61 reviews

4.0/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.6

Salary

4.1

Job security

4.0

Company culture

3.6

Promotions

3.7

Work satisfaction

Explore 61 Reviews and Ratings
Soc Analyst

Gurgaon / Gurugram

2-5 Yrs

₹ 5-8 LPA

Associate Product Manager

Mohali,

Gurgaon / Gurugram

+1

3-7 Yrs

₹ 12-15 LPA

EUC Analyst

Bangalore / Bengaluru

2-4 Yrs

₹ 6-9 LPA

Explore more jobs
Software Engineer
77 salaries
unlock blur

₹5 L/yr - ₹13.2 L/yr

E-Commerce Analyst
35 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Senior Software Engineer
35 salaries
unlock blur

₹8 L/yr - ₹20.5 L/yr

Business Analyst
18 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

QA Engineer
17 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare Paxcom India with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview