Upload Button Icon Add office photos
Engaged Employer

i

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

Apexon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Apexon Engineer Interview Questions and Answers

Updated 15 May 2024

Apexon Engineer Interview Experiences

1 interview found

Engineer Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Speak something about your self
  • Q2. Explanation on general programming language I have learnt
  • Q3. Questions about OOPs andJava
Round 2 - Technical 

(3 Questions)

  • Q1. Core Java question and grilling on that
  • Q2. Write code binary searching algorithm.
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Divide array in half and compare target with middle element

    • If target is smaller, search left half; if larger, search right half

    • Repeat process until target is found or subarray is empty

  • Answered by AI
  • Q3. Give example of any design pattern
  • Ans. 

    One example of a design pattern is the Singleton pattern.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • It involves a static method to access the instance and a private constructor to prevent instantiation from other classes.

    • Example: Singleton pattern is commonly used in logging classes, database connections, and thread pools.

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Apexon?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Job Portal and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. PHP and JS Oops concepts
Round 2 - One-on-one 

(1 Question)

  • Q1. Manager Round with technical questions
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation, company policies etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for oops concepts, Should have a good knowledge on your technology.

Engineer Interview Questions Asked at Other Companies

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. Divide a trapezium into 4 equal parts of the same shape, where on ... read more
Q3. Draw a state diagram to find the pattern 1011. Is overlap allowed ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is inheritance? Demonstrate it with code in any language.

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. A detailed explanation on yourself and how you got to know of the company.
  • Q2. Ambitions? Why are you looking to change organisations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself well on Collections framework and proper communication skills. You'll crack the interviews. All the best to everyone reading this.

I applied via Naukri.com and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. It was went well they will ask some Basic quesadillas regarding the technologies that you have worked before.
Round 3 - Technical 

(1 Question)

  • Q1. It will be like another round in interview process they will dig your knowledge about technologies a bit more.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through projects and technologies once again when you are going to face an interview.

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Everything on java spring sql
  • Q2. Don’t waste your time as i did

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not waste your precious time because they will not give you offer more than your current ctc.

I applied via Naukri.com and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to javascripts basics and advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn deeply, know the concepts, and try to attempt the question as much as possible.
Round 1 - Aptitude Test 

It was a combined test(Apti+coding). Questions were based on sql, dsa and basic aptitude

Round 2 - Group Discussion 

We were given a topic and were asked to speak about it for 5 mins.

Round 3 - Technical 

(1 Question)

  • Q1. 1 hour interview. Questions were based on dsa, dbms, os and aptitude.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very smooth and fast interview process. HR was very helpful.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Java basics to advanced
  • Q2. Collections concepts in java
  • Ans. 

    Collections in Java are data structures that store and manipulate groups of objects.

    • Collections framework provides interfaces (List, Set, Map) and classes (ArrayList, HashSet, HashMap) for storing and manipulating data.

    • Collections offer methods for adding, removing, and accessing elements in a structured way.

    • Collections can be used to sort, search, and iterate over elements efficiently.

    • Example: ArrayList<String> ...

  • Answered by AI
  • Q3. Threads and its life cycle
  • Ans. 

    Threads in programming have a life cycle that includes creation, running, blocking, and termination.

    • Threads are created using the Thread class in Java or pthread_create in C.

    • Threads start running when the start() method is called.

    • Threads can be blocked using methods like sleep(), wait(), or join().

    • Threads terminate when their run() method completes or when explicitly stopped.

  • Answered by AI
  • Q4. OOPS with DB connections
  • Ans. 

    Object-oriented programming principles can be applied to manage database connections efficiently.

    • Encapsulation: Encapsulate database connection details within a class to hide complexity.

    • Inheritance: Use inheritance to create reusable database connection classes.

    • Polymorphism: Implement polymorphism to switch between different types of database connections.

    • Abstraction: Abstract database connection methods to simplify usa...

  • Answered by AI
  • Q5. Spring boot basic to medium

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Questions on HTML, CSS, JQUERY, PHP, WORDPRESS. this is for WordPress developer role.

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round. Questions on experience, scenerios, coding standards etc..
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Regarding Java 8, Spring boot,. Micro services
Round 2 - Technical 

(1 Question)

  • Q1. . Regarding Java 8, Spring boot,. Micro services

Apexon Interview FAQs

How many rounds are there in Apexon Engineer interview?
Apexon interview process usually has 2 rounds. The most common rounds in the Apexon interview process are One-on-one Round and Technical.
How to prepare for Apexon Engineer 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 Apexon. The most common topics and skills that interviewers at Apexon expect are Asset Management, Information Technology, Backend, SQL and Business Transformation.
What are the top questions asked in Apexon Engineer interview?

Some of the top questions asked at the Apexon Engineer interview -

  1. Give example of any design patt...read more
  2. Write code binary searching algorit...read more
  3. Explanation on general programming language I have lea...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
Globant Interview Questions
3.7
 • 184 Interviews
ThoughtWorks Interview Questions
3.9
 • 158 Interviews
Brillio Interview Questions
3.4
 • 139 Interviews
Luxoft Interview Questions
3.6
 • 128 Interviews
View all
Apexon Engineer Salary
based on 10 salaries
₹3.3 L/yr - ₹8.3 L/yr
6% less than the average Engineer Salary in India
View more details

Apexon Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

3.0

Salary

1.0

Job security

1.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
819 salaries
unlock blur

₹12.2 L/yr - ₹22 L/yr

Software Engineer
572 salaries
unlock blur

₹7.4 L/yr - ₹14 L/yr

Softwaretest Engineer
255 salaries
unlock blur

₹4 L/yr - ₹9.8 L/yr

Senior Engineer
247 salaries
unlock blur

₹11.8 L/yr - ₹23.1 L/yr

Technical Lead
189 salaries
unlock blur

₹18.4 L/yr - ₹33 L/yr

Explore more salaries
Compare Apexon with

Xoriant

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

Exela Technologies

3.3
Compare
write
Share an Interview