Upload Button Icon Add office photos
Engaged Employer

i

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

Astrea IT Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Astrea IT Services Interview Questions and Answers

Updated 7 Aug 2024
Popular Designations

11 Interview questions

A Software Developer Trainee was asked
Q. What is Polymorphism? What is the difference between Runtime and static Polymorphism? Provide an example.
Ans. 

Polymorphism is the ability of an object to take on many forms. Runtime polymorphism is achieved through method overriding.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • Static polymorphism is achieved through method overloading.

  • Runtime polymorphism is determined at runtime based on the actual type of the object.

  • Static polymorphism is determined at compile-time bas...

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. Write an optimized solution to print prime numbers between 1 and n.
Ans. 

The optimized solution to print prime numbers between 1 to n.

  • Start with a loop from 2 to n

  • For each number, check if it is divisible by any number from 2 to its square root

  • If it is not divisible by any number, it is a prime number and can be printed

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. What are the main OOPs concepts?
Ans. 

The main OOPs concepts are encapsulation, inheritance, and polymorphism.

  • Encapsulation: bundling of data and methods into a single unit (class) to hide implementation details.

  • Inheritance: ability of a class to inherit properties and methods from another class.

  • Polymorphism: ability of objects of different classes to be treated as objects of a common superclass.

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. How does Java implement multiple inheritance?
Ans. 

Java implements multiple inheritance through interfaces.

  • Java does not support multiple inheritance of classes.

  • Instead, it allows multiple inheritance of interfaces.

  • A class can implement multiple interfaces, inheriting their methods and constants.

  • Interfaces provide a way to achieve multiple inheritance without the complexities of class inheritance.

  • Example: class A implements Interface1, Interface2 { ... }

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. How are GROUP BY and HAVING clauses used in queries? (Provide a specific situation.)
Ans. 

GROUP BY and HAVING clauses are used to aggregate data and filter grouped results in SQL queries.

  • GROUP BY is used to group rows that have the same values in specified columns into summary rows.

  • HAVING is used to filter records that work on summarized GROUP BY results.

  • Example: SELECT department, COUNT(*) FROM employees GROUP BY department; This counts employees per department.

  • Example with HAVING: SELECT department, ...

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. What are the differences between primary, foreign, and alternate keys?
Ans. 

Primary, foreign, and alternate keys are essential for database integrity and relationships between tables.

  • Primary Key: Uniquely identifies each record in a table. Example: 'EmployeeID' in an 'Employees' table.

  • Foreign Key: A field in one table that links to the primary key of another table. Example: 'DepartmentID' in an 'Employees' table referencing 'Departments'.

  • Alternate Key: A candidate key that is not chosen a...

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. Why is String immutable ? difference between StringBuffer,String Builder and String with example ?
Ans. 

String is immutable because it ensures data integrity and thread safety. StringBuffer and StringBuilder are mutable alternatives.

  • String is immutable, meaning its value cannot be changed once created.

  • Immutable strings ensure data integrity and thread safety.

  • StringBuffer and StringBuilder are mutable alternatives to String.

  • StringBuffer is synchronized and thread-safe, but slower.

  • StringBuilder is not synchronized, fa...

View all Software Developer Trainee interview questions
Are these interview questions helpful?
A Software Developer Trainee was asked
Q. What is an interface? is it abstract?
Ans. 

An interface is a contract that defines a set of methods that a class must implement. It is not abstract.

  • An interface provides a way to achieve multiple inheritance in Java.

  • It allows for loose coupling between classes.

  • Interfaces can have constants and default methods.

  • A class can implement multiple interfaces.

  • Interfaces are used to achieve abstraction and provide a common behavior for classes.

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. What is multiple inheritance and what is multilevel inheritance?
Ans. 

Multiple inheritance is when a class inherits from more than one base class. Multilevel inheritance is when a class inherits from another derived class.

  • Multiple inheritance allows a class to inherit attributes and behaviors from multiple parent classes.

  • Multilevel inheritance involves a chain of inheritance where a derived class inherits from another derived class.

  • In multiple inheritance, conflicts may arise if two...

View all Software Developer Trainee interview questions
A Software Developer Trainee was asked
Q. What is abstract keyword? what is abstract function?
Ans. 

The abstract keyword is used in object-oriented programming to declare a class or method as abstract.

  • An abstract class cannot be instantiated and can only be used as a base for other classes.

  • An abstract method is a method without a body, and it must be implemented by any concrete subclass.

  • Abstract classes can have both abstract and non-abstract methods.

  • Abstract methods are used to define a common interface that al...

View all Software Developer Trainee interview questions

Astrea IT Services Interview Experiences

3 interviews found

I appeared for an interview in Dec 2016.

Interview Questionnaire 

17 Questions

  • Q1. What are the main OOPs concepts?
  • Ans. 

    The main OOPs concepts are encapsulation, inheritance, and polymorphism.

    • Encapsulation: bundling of data and methods into a single unit (class) to hide implementation details.

    • Inheritance: ability of a class to inherit properties and methods from another class.

    • Polymorphism: ability of objects of different classes to be treated as objects of a common superclass.

  • Answered by AI
  • Q2. What is Polymorphism? Difference between Runtime and static Polymorphism with the help of a program.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. Runtime polymorphism is achieved through method overriding.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Static polymorphism is achieved through method overloading.

    • Runtime polymorphism is determined at runtime based on the actual type of the object.

    • Static polymorphism is determined at compile-time based on...

  • Answered by AI
  • Q3. What is a static keyword in java? Where are the static variables stored? One programmatic situation was given based on static keyword and i was asked the final output.
  • Ans. 

    The static keyword in Java is used to create variables and methods that belong to the class rather than instances of the class.

    • Static variables are stored in the static memory area, also known as the method area or permanent generation.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static variables and methods can be accessed using the c...

  • Answered by AI
  • Q4. What is abstract keyword? what is abstract function?
  • Ans. 

    The abstract keyword is used in object-oriented programming to declare a class or method as abstract.

    • An abstract class cannot be instantiated and can only be used as a base for other classes.

    • An abstract method is a method without a body, and it must be implemented by any concrete subclass.

    • Abstract classes can have both abstract and non-abstract methods.

    • Abstract methods are used to define a common interface that all sub...

  • Answered by AI
  • Q5. What is multiple inheritance and what is multilevel inheritance?
  • Ans. 

    Multiple inheritance is when a class inherits from more than one base class. Multilevel inheritance is when a class inherits from another derived class.

    • Multiple inheritance allows a class to inherit attributes and behaviors from multiple parent classes.

    • Multilevel inheritance involves a chain of inheritance where a derived class inherits from another derived class.

    • In multiple inheritance, conflicts may arise if two base...

  • Answered by AI
  • Q6. How does java implement multiple inheritance?
  • Ans. 

    Java implements multiple inheritance through interfaces.

    • Java does not support multiple inheritance of classes.

    • Instead, it allows multiple inheritance of interfaces.

    • A class can implement multiple interfaces, inheriting their methods and constants.

    • Interfaces provide a way to achieve multiple inheritance without the complexities of class inheritance.

    • Example: class A implements Interface1, Interface2 { ... }

  • Answered by AI
  • Q7. What is an interface? is it abstract?
  • Ans. 

    An interface is a contract that defines a set of methods that a class must implement. It is not abstract.

    • An interface provides a way to achieve multiple inheritance in Java.

    • It allows for loose coupling between classes.

    • Interfaces can have constants and default methods.

    • A class can implement multiple interfaces.

    • Interfaces are used to achieve abstraction and provide a common behavior for classes.

  • Answered by AI
  • Q8. DBMS queries related questions for a real time problem?
  • Q9. A pattern based question?
  • Q10. Why is String immutable ? difference between StringBuffer,String Builder and String with example ?
  • Ans. 

    String is immutable because it ensures data integrity and thread safety. StringBuffer and StringBuilder are mutable alternatives.

    • String is immutable, meaning its value cannot be changed once created.

    • Immutable strings ensure data integrity and thread safety.

    • StringBuffer and StringBuilder are mutable alternatives to String.

    • StringBuffer is synchronized and thread-safe, but slower.

    • StringBuilder is not synchronized, faster,...

  • Answered by AI
  • Q11. Print prime numbers between 1 to n(optimized solution)
  • Ans. 

    The optimized solution to print prime numbers between 1 to n.

    • Start with a loop from 2 to n

    • For each number, check if it is divisible by any number from 2 to its square root

    • If it is not divisible by any number, it is a prime number and can be printed

  • Answered by AI
  • Q12. Question on primary ,foreign and alternate key difference
  • Ans. 

    Primary, foreign, and alternate keys are essential for database integrity and relationships between tables.

    • Primary Key: Uniquely identifies each record in a table. Example: 'EmployeeID' in an 'Employees' table.

    • Foreign Key: A field in one table that links to the primary key of another table. Example: 'DepartmentID' in an 'Employees' table referencing 'Departments'.

    • Alternate Key: A candidate key that is not chosen as the...

  • Answered by AI
  • Q13. How is group by ,having clause used in queries(a situation was given )
  • Ans. 

    GROUP BY and HAVING clauses are used to aggregate data and filter grouped results in SQL queries.

    • GROUP BY is used to group rows that have the same values in specified columns into summary rows.

    • HAVING is used to filter records that work on summarized GROUP BY results.

    • Example: SELECT department, COUNT(*) FROM employees GROUP BY department; This counts employees per department.

    • Example with HAVING: SELECT department, COUNT...

  • Answered by AI
  • Q14. DBMS query on aggregation
  • Q15. Tell me something about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

    • Completed internships in software development at XYZ Company

    • Strong communication and teamwork skills

  • Answered by AI
  • Q16. What are your future plans ?
  • Ans. 

    I plan to continue learning and growing in my software development career, eventually becoming a senior developer or team lead.

    • Continuing to improve my coding skills through online courses and personal projects

    • Seeking opportunities for mentorship and learning from experienced developers

    • Working towards taking on more responsibility and leadership roles within a development team

  • Answered by AI
  • Q17. Do you like your college? what three things you find good and bad in your college?
  • Ans. 

    I like my college overall, but there are some areas for improvement.

    • Good: Excellent faculty members who are knowledgeable and supportive

    • Good: Well-equipped labs and facilities for practical learning

    • Good: Diverse extracurricular activities and clubs for holistic development

    • Bad: Limited internship opportunities for real-world experience

    • Bad: Lack of updated curriculum to keep up with industry trends

    • Bad: Inadequate career ...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: My interview was scheduled through college placement cell.I reached astrea at 10 o clock.The whole staff was very supporting ,the way they treat you tells a lot more about their working culture.My interview started at 12:30 pm and i was the last from all the candidates so the interviewers were in a hurry.
They were very friendly and trying to help me whenever i got stuck.
Throughout the whole process they were just analyzing my core concepts of java,DBMS and the thought process to approach a problem.

Round: HR Interview
Experience: It was an optional round and just a formality.

Skills: Core Java, DBMS(MySql), C programming, Interpersonal Skills, Algorithmic Approach To Problem Solving
College Name: JIMS Engineering Management Technical Campus

Skills evaluated in this interview

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

I appeared for an interview in Jul 2024.

Round 1 - Case Study 

Given a case scenario

Round 2 - HR 

(3 Questions)

  • Q1. Whats your vision
  • Ans. 

    My vision is to leverage my technical skills and creativity to develop innovative solutions that drive business growth and customer satisfaction.

    • Developing custom Salesforce applications to streamline business processes

    • Implementing automation to improve efficiency and accuracy

    • Utilizing AI and machine learning to enhance customer experience

    • Collaborating with cross-functional teams to deliver impactful solutions

  • Answered by AI
  • Q2. Current ctc in your previous organisation
  • Ans. 

    My current CTC in my previous organization was $80,000 per year.

    • My previous organization paid me $80,000 annually

    • I received a salary of $6,666.67 per month

    • This amount included all benefits and bonuses

  • Answered by AI
  • Q3. Why you give resign and serve notice period without offer
  • Ans. 

    Resigning without an offer can be due to various reasons such as seeking new opportunities, personal reasons, or dissatisfaction with current role.

    • Seeking new opportunities for career growth

    • Personal reasons such as relocation or family commitments

    • Dissatisfaction with current role or company culture

    • Exploring different industries or roles

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go through interview bit question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Aptitude Test 

15 MCQ based on java and data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - need to learn basic concept about java and data structure

Top trending discussions

View All
Interview Tips & Stories
5d (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 Astrea IT Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 tips
Round 2 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test details in the snovasys are best aptitude test details in snovasys and in the snovasys i thought like i need to learn more in the aptitude atmy strating of career and all all all alllllllllllllllllllllllll abc and the best buddy program we have invested on the internet today at the speed limit of data and the policy are not good we need to improve all the data and the data is not good of all the data to be shared and with in the organisation all the data is must and should need to learn careful and all the data is need to know all the must and should detailed actions are taken on their data

Round 2 - HR 

(2 Questions)

  • Q1. Not good with my situation And
  • Q2. What is your current salary What is your location
  • Ans. 

    I am unable to provide my current salary as it is confidential.

    • My current salary is confidential and I am unable to disclose it.

    • I prefer to discuss salary expectations rather than disclosing my current salary.

    • Salary is negotiable based on the position and responsibilities.

    • I am more interested in discussing the opportunities and growth potential in this role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't have any tips to submit please consider everyone's own organisation policies
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Give a pattern and solved people enter into techinal round 1.I cleard this test and enter to tr1

Round 2 - Technical 

(1 Question)

  • Q1. They ask executye some patterns anf basic programs.i performed but don't select to tr2

Interview Preparation Tips

Topics to prepare for Snovasys Software Developer interview:
  • Design Patterns
  • Basic programs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 2 - Coding Test 

Concentrate on identifying patterns and understanding time complexity.

Round 3 - Coding Test 

Concentrate on addressing problems through various approaches and consider their time complexity.

Round 4 - HR 

(1 Question)

  • Q1. Regular HR questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. String related questions
  • Q2. ARRAY related questions

Astrea IT Services Interview FAQs

How many rounds are there in Astrea IT Services interview?
Astrea IT Services interview process usually has 1-2 rounds. The most common rounds in the Astrea IT Services interview process are HR, Aptitude Test and Case Study.
How to prepare for Astrea IT Services 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 Astrea IT Services. The most common topics and skills that interviewers at Astrea IT Services expect are Salesforce, Apex, Triggers, Lightning and SFDC.
What are the top questions asked in Astrea IT Services interview?

Some of the top questions asked at the Astrea IT Services interview -

  1. What is a static keyword in java? Where are the static variables stored? One pr...read more
  2. What is Polymorphism? Difference between Runtime and static Polymorphism with t...read more
  3. Why is String immutable ? difference between StringBuffer,String Builder and St...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all

Astrea IT Services Reviews and Ratings

based on 40 reviews

4.7/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.2

Salary

4.6

Job security

4.7

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 40 Reviews and Ratings
SF Service Cloud Developer

Noida

3-7 Yrs

Not Disclosed

Salesforce B2B Commerce Developer

Noida

2-7 Yrs

Not Disclosed

SF Service Cloud Developer/Admin

Noida

3-7 Yrs

Not Disclosed

Explore more jobs
Salesforce Developer
59 salaries
unlock blur

₹3.5 L/yr - ₹8.5 L/yr

Software Developer
39 salaries
unlock blur

₹3.4 L/yr - ₹7.8 L/yr

Senior Salesforce Developer
20 salaries
unlock blur

₹6 L/yr - ₹15.5 L/yr

Senior Software Developer
19 salaries
unlock blur

₹6 L/yr - ₹13.2 L/yr

Software Engineer
9 salaries
unlock blur

₹4.8 L/yr - ₹7 L/yr

Explore more salaries
Compare Astrea IT Services with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

3.9
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare
write
Share an Interview