Upload Button Icon Add office photos

Filter interviews by

Appperfect Corp Software Engineer Interview Questions and Answers

Updated 13 May 2024

Appperfect Corp Software Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

There was a coding test in which one DSA question was there. I was a Competetive Coding Question Medium Level

Round 2 - Technical 

(1 Question)

  • Q1. There were several technical questions related to the MERN stack and questions related to projects. Other questions were from LinkedList. Some of the questions were about OS, DBMS, and cloud computing.

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Basic javascript concepts 2. React hooks and redux 3. React lifecycle methods

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong.

Interview Preparation Tips

Interview preparation tips for other job seekers - Main focus on Junit. If you are good in it is fine.

Interview Questionnaire 

1 Question

  • Q1. About the technologies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview Experience : ( Go with your knowledge, Theory will not help you )
Started with Interview Examination 2 problem questions. It was easy nothing complicated.
Technical round. Share the screen and solve three problem questions that was easy and after that you will be questioned about technology that you worked on. You will be able to answer if you have hands on experience on it.
Third round. Behavioural interview it will be very friendly and fun filled chat.
Then you got the offer .. Smooth till here ..

Onboarding Experience:
You will get a zip of documents. No one in the world will help you if you do not know what it is. Try to google and fill whatever you get in mind that's it. People who hired you will let you know about the company introduce to the project after that.

Project Experience:
Still old technologies like java 8 ( supported only till March 2022 ). If vendor is your lead they will do whatever to close their deliverables. If have something that need be reused sorry buddy, Follow them and scrap out your work whatever you have done is always "not a recommended approach".

Overall if you are looking for place for learning and exploring technologies believe me the industry is far ahead. If you are beginner you can learn how business and company operates here.
Round 1 - Technical 

(1 Question)

  • Q1. Concepts of OOPS, ANGULAR,SQL,.net
Round 2 - Technical 

(1 Question)

  • Q1. Oops,SQL, Angular,Trying to get what is my thought process behind problem,.net
Round 3 - Technical 

(1 Question)

  • Q1. Sql, Angular,Oops, Thought process for problems,.net

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well! All the best!!!!!!!!!
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Form Validation on React Js but on a platform which doesn't have syntax highlighting. Expected best coding standards to be followed.
Round 2 - One-on-one 

(1 Question)

  • Q1. React Js and JavaScript questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Technical questions based on situations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your foundations strong on js, react js.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain fail fast and fail safe iterator in Java
  • Ans. 

    Fail fast iterator throws ConcurrentModificationException if the collection is modified while iterating. Fail safe iterator does not throw exception but works on clone of collection.

    • Fail fast iterator checks for modification during iteration and throws ConcurrentModificationException if found.

    • Fail safe iterator works on clone of collection and does not throw exception if collection is modified.

    • Example: ArrayList iterat...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nielsen Software Engineer interview:
  • Java
  • Cloud

Skills evaluated in this interview

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

(2 Questions)

  • Q1. C# oops polymorphism extension methods
  • Ans. 

    Polymorphism is a key feature of OOP in C#. Extension methods allow adding new functionality to existing types.

    • Polymorphism allows objects of different classes to be treated as if they are of the same type.

    • Extension methods are static methods that can be called as if they were instance methods of the extended type.

    • Polymorphism and extension methods can be used together to add new behavior to existing types without modi

  • Answered by AI
  • Q2. Angular javascript vs typescript services components
  • Ans. 

    Angular is a framework for building web applications using TypeScript, which is a superset of JavaScript.

    • Angular provides a structure for building web applications using components, services, and modules.

    • TypeScript is a statically typed language that provides better tooling and error checking than JavaScript.

    • Services in Angular are used for sharing data and functionality across components.

    • Components in Angular are the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - practical questions. easy interview. learn c# oops, ref, out, extension methods,

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They are asking technical questions what is their in the resume
Round 2 - Technical 

(1 Question)

  • Q1. They will technical questions as per your resume what you mentioned

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you say the answers in the interviewer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1-HR round, basic Aptitude questions

Round 2 - Technical 

(5 Questions)

  • Q1. Interviewer was good, Tough basic java questions were asked, Problem : Count the frequency of Char in given string.
  • Q2. Inheritance in java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Inheritance is achieved using the 'extends' keyword in Java.

    • Subclasses can access the methods and fields of the superclass.

    • Java does not support multiple inheritance, but a class can implement multiple interfaces.

  • Answered by AI
  • Q3. What is java platform independent
  • Ans. 

    Java platform independence refers to the ability of Java code to run on any device or operating system without modification.

    • Java code is compiled into bytecode, which can be executed on any device with a Java Virtual Machine (JVM)

    • JVM acts as an abstraction layer between the Java code and the underlying hardware and operating system

    • This allows Java programs to be written once and run anywhere, making them platform indep

  • Answered by AI
  • Q4. SQL query for second max salary
  • Ans. 

    Use SQL query with subquery to find second highest salary

    • Use subquery to find the max salary first

    • Then use another subquery to find the max salary excluding the previously found max salary

  • Answered by AI
  • Q5. Access modifiers in depth
  • Ans. 

    Access modifiers control the visibility and accessibility of classes, methods, and variables in object-oriented programming.

    • Access modifiers include public, private, protected, and default (package-private)

    • Public: accessible from any other class

    • Private: only accessible within the same class

    • Protected: accessible within the same package and subclasses

    • Default: accessible within the same package

  • Answered by AI

Skills evaluated in this interview

Appperfect Corp Interview FAQs

How many rounds are there in Appperfect Corp Software Engineer interview?
Appperfect Corp interview process usually has 2 rounds. The most common rounds in the Appperfect Corp interview process are Coding Test and Technical.
How to prepare for Appperfect Corp Software 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 Appperfect Corp. The most common topics and skills that interviewers at Appperfect Corp expect are .Net, .Net Core, C#, CSS and HTML.

Tell us how to improve this page.

Appperfect Corp Software Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Appperfect Corp Software Engineer Salary
based on 25 salaries
₹4.2 L/yr - ₹10.5 L/yr
15% less than the average Software Engineer Salary in India
View more details

Appperfect Corp Software Engineer Reviews and Ratings

based on 7 reviews

3.7/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.8

Salary

2.8

Job security

3.7

Company culture

3.6

Promotions

3.3

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
25 salaries
unlock blur

₹4.2 L/yr - ₹10.5 L/yr

Software Developer
8 salaries
unlock blur

₹5.5 L/yr - ₹8.6 L/yr

Salesforce Developer
5 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Devops Engineer
5 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹8 L/yr - ₹11 L/yr

Explore more salaries
Compare Appperfect Corp with

G4S

4.0
Compare

SGS

3.9
Compare

R.R. Donnelley

3.9
Compare

Iris Software

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