Upload Button Icon Add office photos
Engaged Employer

i

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

Amity Software Systems Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 180 Reviews

Filter interviews by

Amity Software Systems Software Developer Interview Questions and Answers

Updated 11 Dec 2024

Amity Software Systems Software Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy it was having 30 questions

Round 2 - Coding Test 

Coding was medium leet code questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good and moderate questions

Round 2 - Technical 

(1 Question)

  • Q1. Learn the core basic and be prepare for everything
Round 3 - HR 

(1 Question)

  • Q1. Really good response and nice people

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

Software Developer Jobs at Amity Software Systems

View all

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a coding round interview along with interviewer via Virtual mode. I was given 2 coding questions on HackerRank for the interview:

1. one was an easy problem on counting minimum replacements.
2. "pat is an ordinary kid who works hard to be a great runner...." this was a challenging problem (which I managed to solve).
3. I was asked some basic Python questions, as the role was for a Python Developer.

Round 2 - Technical 

(5 Questions)

  • Q1. LLD for Parking Lot
  • Q2. Which database are you going to use for Parking lot and Why ?
  • Ans. 

    I would use a relational database like MySQL for the Parking lot as it provides structured data storage and supports complex queries.

    • Relational databases like MySQL offer structured data storage for parking lot information

    • Supports complex queries for managing parking lot data efficiently

    • Ability to handle large amounts of data and transactions

    • Provides data integrity and security features

    • Can easily integrate with other s

  • Answered by AI
  • Q3. Questions related to OOPs
  • Q4. Questions related to Multi Threading
  • Q5. Questions related to Projects
Round 3 - Managiral Round 

(2 Questions)

  • Q1. I hate this since i was informed that this round was a technical.
  • Q2. Usual Mangerial questions, Project Related, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Problem Solving, DSA, LLD Problems ofcourse the HR and Managerial round questions.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to intermediate.net, EF, SQL, C#, OOP
  • Q2. Basics of .Net Core
Round 2 - Technical 

(1 Question)

  • Q1. Deep into.net and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were good and friendly, but HR's does not have any management.

I completed 2 tech rounds, shortlisted in both of them and then HR is saying that my experience is low for the position so they will not move forward. Seriously W.T.F..

And after that HR is not picking up calls
Even while scheduling interviews there were 3-4 rescheduled.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was medium to hard leetcode problems.

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Implement readers-writer lock
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 50 question out of which if you score 20 you were passed out to next round, No negative markings.

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

I was interviewed before Feb 2022.

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 

(1 Question)

  • Q1. Linked list (detect loop, reverse, delte a node) tree (height, DFS) graph theory concept C++ basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Total 3 round of Technical interviews.

Interview Preparation Tips

Interview preparation tips for other job seekers - C++ basics, Algo and Data structure and some basic concept of graph theory.

Interview Questionnaire 

1 Question

  • Q1. Mostly questions in arrays, string operations
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What is java and explain oopes concept
  • Ans. 

    Java is a popular programming language used for developing various applications. OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects.

    • Java is a class-based, object-oriented programming language.

    • OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the bundling of data and methods that operate on the data into a single unit.

    • Inheritance al...

  • Answered by AI
  • Q2. What is testing explain types
  • Ans. 

    Testing is the process of evaluating a software application to identify defects or bugs.

    • Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.

    • Unit testing involves testing individual components or modules of the software.

    • Integration testing checks if different modules work together correctly.

    • System testing evaluates the entire system's functionality.

    • Accep...

  • Answered by AI
  • Q3. What is exceptions handling
  • Ans. 

    Exceptions handling is a mechanism to handle errors or exceptional situations in a program.

    • Exceptions allow for graceful handling of errors without crashing the program

    • Try-catch blocks are commonly used to catch and handle exceptions

    • Exceptions can be thrown manually using 'throw' keyword

    • Common exceptions include NullPointerException, ArrayIndexOutOfBoundsException, etc.

  • Answered by AI
  • Q4. Locators in automation selenium
  • Ans. 

    Locators in automation selenium are used to identify web elements on a webpage for testing purposes.

    • Locators include ID, class name, name, tag name, link text, partial link text, and xpath.

    • ID is the most efficient locator as it is unique for each element.

    • Xpath is powerful but can be slow and brittle if not used correctly.

    • Using CSS selectors can also be a good alternative to xpath.

    • It is important to choose the right loc...

  • Answered by AI

Skills evaluated in this interview

Amity Software Systems Interview FAQs

How many rounds are there in Amity Software Systems Software Developer interview?
Amity Software Systems interview process usually has 2-3 rounds. The most common rounds in the Amity Software Systems interview process are Aptitude Test, Technical and HR.
How to prepare for Amity Software Systems Software Developer 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 Amity Software Systems. The most common topics and skills that interviewers at Amity Software Systems expect are Javascript, Software Development, JQuery, ASP.Net and MVC.
What are the top questions asked in Amity Software Systems Software Developer interview?

Some of the top questions asked at the Amity Software Systems Software Developer interview -

  1. learn the core basic and be prepare for everyth...read more
  2. really good response and nice peo...read more

Tell us how to improve this page.

Amity Software Systems Software Developer Salary
based on 77 salaries
₹3 L/yr - ₹11 L/yr
17% less than the average Software Developer Salary in India
View more details

Amity Software Systems Software Developer Reviews and Ratings

based on 35 reviews

4.8/5

Rating in categories

4.7

Skill development

4.7

Work-Life balance

4.7

Salary & Benefits

4.7

Job Security

4.7

Company culture

4.7

Promotions/Appraisal

4.7

Work Satisfaction

Explore 35 Reviews and Ratings
Software Developer
77 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Associate Software Developer
28 salaries
unlock blur

₹4 L/yr - ₹8.7 L/yr

Senior Software Developer
16 salaries
unlock blur

₹7.5 L/yr - ₹15.2 L/yr

Software Tester
12 salaries
unlock blur

₹5.4 L/yr - ₹5.4 L/yr

Associate - Team Lead
10 salaries
unlock blur

₹9 L/yr - ₹17 L/yr

Explore more salaries
Compare Amity Software Systems with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview