Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by A. Paul Software Systems Team. If you also belong to the team, you can get access from here

A. Paul Software Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

A. Paul Software Systems Interview Questions and Answers

Updated 9 Feb 2025

A. Paul Software Systems Interview Experiences

Popular Designations

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Just Basic Details about yourself.
  • Q2. Communication Skills
Round 2 - Technical 

(3 Questions)

  • Q1. Tell Me Something About Yourself.
  • Q2. Questions related to your projects, which you've mentioned in your CV.
  • Q3. Questions related to OOPS, DS, and C++, do not go deep into it, just clear your basic concepts.

Interview Preparation Tips

Topics to prepare for A. Paul Software Systems Associate Software Developer interview:
  • Basic OOP
  • Data Structures
  • C++
Interview preparation tips for other job seekers - 1- I'll just say, clear your basic concepts of C++, OOPs, and Data Structure.
2- Don't hesitate, just have clear conversation with confidence and that's enough.

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)

R&D Engineer Interview Questions & Answers

user image sk univers

posted on 17 Nov 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - HR 

(1 Question)

  • Q1. About your self.
Round 3 - Technical 

(2 Questions)

  • Q1. What are you know about electronic.
  • Ans. 

    Electronics involves the study and application of electrical circuits and devices.

    • Electronics deals with the flow of electrons in circuits

    • It includes components like resistors, capacitors, transistors, and integrated circuits

    • Knowledge of electronic principles is essential for designing and troubleshooting electronic systems

    • Examples of electronic devices include smartphones, computers, and televisions

  • Answered by AI
  • Q2. Symbols of electronic components
  • Ans. 

    Symbols of electronic components are used to represent various electrical and electronic devices in circuit diagrams.

    • Resistor: zigzag line

    • Capacitor: two parallel lines

    • Diode: triangle with a line

    • Transistor: three arrows

    • LED: two arrows pointing away from each other

  • Answered by AI

R&D Engineer Interview Questions asked at other Companies

Q1. give some ideal characteristics of opamp. what is CMRR. what is the practical significance of CMRR. why the input impedance must be large. what is impedance matching, why it has to be done. what is MPTT and its advantages. explain about D-A... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Basic aptitude test was conducted.

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your expectations.
  • Ans. 

    I expect a challenging role where I can utilize my technical skills and contribute to the team's success.

    • Opportunity to learn and grow in the technical field

    • Collaborative work environment

    • Clear communication and feedback from supervisors

    • Opportunities for professional development and training

    • Competitive salary and benefits package

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Branch related questions
  • Q2. Electronic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a good company. Better only for if you are preparing for something else

Technical Assistant Interview Questions asked at other Companies

Q1. 1.What are the main reasons and root cause for less count in Bulk packing.
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. PATTERN PROBLEMS
  • Q2. CALCULATION OF CHILDREN AND GRANDCHILDREN
  • Ans. 

    Calculate the number of children and grandchildren

    • Count the number of direct children of a person

    • Count the number of grandchildren of a person

    • Use recursion to count all descendants

    • Consider only living descendants

    • Exclude step-children and adopted children

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the logic
Practice

Interview Questionnaire 

1 Question

  • Q1. Simple basic c programing questions

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Partitioning even and odd numbers in an array
  • Ans. 

    Partition even and odd numbers in an array

    • Iterate through the array and check if each number is even or odd

    • Create two separate arrays for even and odd numbers

    • Combine the two arrays to get the final partitioned array

  • Answered by AI
  • Q2. Leaders in an array
  • Ans. 

    Find leaders in an array of strings

    • Leaders are elements that are greater than all elements to their right

    • Traverse array from right to left and keep track of maximum element

    • Add maximum element to result if it is a leader

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be skilled with advanced data structures (recursion, graph) and dynamic programming

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C++ basic questions, also asked me to run few programs on online gdb

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your primary skill set very well, data structure and algorithm is also mandatory also a little bit of system design.

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java, SQL, java framework, weblogic and OMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic. Just be honest in what you know and you will succeed

Interview Questionnaire 

1 Question

  • Q1. Reverse linked List

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for sql and coding

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Timing was in the afternoon. 
The platform was easy to operate and worked on considerable speed. 
Both the webcam and audio was supposed to be ON during the test duration.
We could switch between the questions of the same section in case we wanted to change the answers.

  • Q1. 

    Minimum Spanning Tree Problem Statement

    You are provided with an undirected, connected, and weighted graph G(V, E). The graph comprises V vertices (numbered from 0 to V-1) and E edges.

    Determine and retu...

  • Ans. 

    Find the total weight of the Minimum Spanning Tree in a graph using Kruskal's algorithm.

    • Implement Kruskal's algorithm to find the Minimum Spanning Tree.

    • Sort the edges based on their weights and add them to the MST if they don't form a cycle.

    • Keep track of the total weight of the MST and return it as the output.

  • Answered by AI
  • Q2. 

    Maximum Points On Straight Line Problem Statement

    You are provided with a 2-D plane and a set of integer coordinates. Your task is to determine the maximum number of these coordinates that can be aligned ...

  • Ans. 

    Find the maximum number of points that can be aligned in a straight line on a 2-D plane.

    • Iterate through each pair of points and calculate the slope between them.

    • Store the slope in a hashmap and keep track of the frequency of each slope.

    • The maximum frequency of slopes + 1 gives the maximum number of points on a straight line.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria6 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : You should be very fluent in each and every data structure that you have studied so that you are able to answer even the trickiest question by knowing the basics. This will happen only if you have tried enough questions on different platforms.
Tip 2 : Object Oriented Programming is the easiest and the most underrated concept. In every interview I have given so far, they have asked me the OOPs concepts. I have learnt and understood each and every basic concept of OOPs, primarily from the videos of Coding Ninjas which have polished my skill in this area and now I can answer any question of this topic. 
Tip 3 : The projects that you have done in your college life should be on your tips. You should know each and every little detail of it, and sometimes the interviewer may also ask what would happen if you changed some things in your project, so you should be clear with it's working and how would your project work after changing some specifications.

Application resume tips for other job seekers

Tip 1 : Highlight your technical skills and write only the things from which you will be comfortable answering from.
Tip 2 : Try to maximize the number of technical achievements on the resume and minimize the extra curricular part.

Final outcome of the interviewRejected

Skills evaluated in this interview

A. Paul Software Systems Interview FAQs

How many rounds are there in A. Paul Software Systems interview?
A. Paul Software Systems interview process usually has 2-3 rounds. The most common rounds in the A. Paul Software Systems interview process are HR, Technical and Resume Shortlist.
How to prepare for A. Paul Software Systems 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 A. Paul Software Systems. The most common topics and skills that interviewers at A. Paul Software Systems expect are Bidding, C#, Maintenance, Tendering and Business Development.
What are the top questions asked in A. Paul Software Systems interview?

Some of the top questions asked at the A. Paul Software Systems interview -

  1. What are you know about electron...read more
  2. Symbols of electronic compone...read more
  3. Questions related to your projects, which you've mentioned in your ...read more

Tell us how to improve this page.

A. Paul Software Systems Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 863 Interviews
Google Interview Questions
4.4
 • 840 Interviews
Amdocs Interview Questions
3.7
 • 516 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 290 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
View all

A. Paul Software Systems Reviews and Ratings

based on 43 reviews

3.7/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.2

Salary

3.3

Job security

3.2

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 43 Reviews and Ratings
Purchase Executive
14 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Executive Accountant
7 salaries
unlock blur

₹2.2 L/yr - ₹3.3 L/yr

Embedded Linux Software Developer
5 salaries
unlock blur

₹2.4 L/yr - ₹10.8 L/yr

Quality Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Senior IT Support Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Explore more salaries
Compare A. Paul Software Systems with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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