Upload Button Icon Add office photos

Filter interviews by

Starcentauri Technologies Interview Questions and Answers

Updated 20 Dec 2024
Popular Designations

10 Interview questions

A Fullstack Java Developer was asked 6mo ago
Q. What are the concepts of OOPS?
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

  • OOPs focuses on creating objects that interact with each other to solve a problem.

  • Key principles of OOPs include Inheritance, Encapsulation, Polymorphism, and Abstraction.

  • Inheritance allows a class to inherit properties and behavior from anoth...

View all Fullstack Java Developer interview questions
A Fullstack Java Developer was asked 6mo ago
Q. What annotations have you used in Spring Boot?
Ans. 

Various annotations are used in Spring Boot for different purposes.

  • 1. @RestController - Used to define RESTful web services.

  • 2. @RequestMapping - Maps web requests to specific handler methods.

  • 3. @Autowired - Injects dependencies into a Spring bean.

  • 4. @Component - Indicates a class is a Spring component.

  • 5. @Service - Indicates a class is a Spring service.

  • 6. @Repository - Indicates a class is a Spring repository.

  • 7. @...

View all Fullstack Java Developer interview questions
A Fullstack Java Developer was asked 6mo ago
Q. What is Spring Boot?
Ans. 

Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

  • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

  • It allows developers to quickly set up and run standalone Spring-based applications.

  • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow for easy deployment.

  • It promotes convent...

View all Fullstack Java Developer interview questions
A Fullstack Java Developer was asked 6mo ago
Q. What is Multi Threading?
Ans. 

Multi Threading is the ability of a CPU to execute multiple threads concurrently, allowing for better performance and responsiveness.

  • Allows multiple tasks to run concurrently within a single process

  • Improves performance by utilizing CPU resources efficiently

  • Can lead to synchronization issues if not handled properly

  • Examples: running multiple tasks simultaneously in a web server, processing data in parallel

View all Fullstack Java Developer interview questions
A Fullstack Java Developer was asked 6mo ago
Q. Write CRUD operations in Spring Boot.
Ans. 

Implementing CRUD operations in Spring Boot involves creating RESTful APIs for data management.

  • 1. Create a Spring Boot project using Spring Initializr with dependencies: Spring Web, Spring Data JPA, and H2 Database.

  • 2. Define an entity class, e.g., 'User', with fields like id, name, and email.

  • 3. Create a repository interface extending JpaRepository<User, Long> for database operations.

  • 4. Implement a service cl...

View all Fullstack Java Developer interview questions
A Software Developer was asked
Q. Explain the annotations used in Spring Boot.
Ans. 

Annotations in Spring Boot are used to provide metadata and configuration to the application.

  • Annotations are used to define the behavior of various components in a Spring Boot application.

  • They can be used to configure dependency injection, define request mappings, handle exceptions, etc.

  • Some commonly used annotations in Spring Boot include @RestController, @Autowired, @RequestMapping, @ExceptionHandler, etc.

View all Software Developer interview questions
A Software Developer was asked
Q. What is a stack?
Ans. 

A stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

  • Elements are added and removed from the top of the stack.

  • Common operations include push (add element) and pop (remove element).

  • Stacks are used in function calls, undo/redo functionality, and expression evaluation.

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Explain abstraction in Java.
Ans. 

Abstraction in Java is the process of hiding the implementation details and providing only the essential features to the user.

  • Abstraction allows programmers to focus on the essential aspects of an object and ignore the irrelevant details.

  • It is achieved using abstract classes and interfaces in Java.

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

  • Interfaces define a contra...

View all Software Developer interview questions
A Software Developer was asked
Q. Explain REST template.
Ans. 

RestTemplate is a class in Spring Framework that simplifies making HTTP requests and handling responses.

  • RestTemplate is part of the Spring Web module.

  • It provides methods to send HTTP requests and receive responses.

  • It supports various HTTP methods like GET, POST, PUT, DELETE, etc.

  • RestTemplate can handle different data formats like JSON, XML, etc.

  • It can be used to consume RESTful APIs and interact with external serv...

View all Software Developer interview questions
A Software Developer was asked
Q. Explain polymorphism.
Ans. 

Polymorphism is the ability of an object to take on many forms, allowing objects of different classes to be treated as the same type.

  • Polymorphism allows objects to be used interchangeably with other objects of the same superclass.

  • It enables code reusability and flexibility in object-oriented programming.

  • Polymorphism can be achieved through method overriding and method overloading.

  • Example: A superclass 'Animal' wit...

View all Software Developer interview questions

Starcentauri Technologies Interview Experiences

3 interviews found

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

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Technical Aptitude for first round

Round 2 - Technical 

(6 Questions)

  • Q1. What is Spring Boot ?
  • Ans. 

    Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

    • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

    • It allows developers to quickly set up and run standalone Spring-based applications.

    • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow for easy deployment.

    • It promotes convention o...

  • Answered by AI
  • Q2. What annotations we used in spring boot?
  • Ans. 

    Various annotations are used in Spring Boot for different purposes.

    • 1. @RestController - Used to define RESTful web services.

    • 2. @RequestMapping - Maps web requests to specific handler methods.

    • 3. @Autowired - Injects dependencies into a Spring bean.

    • 4. @Component - Indicates a class is a Spring component.

    • 5. @Service - Indicates a class is a Spring service.

    • 6. @Repository - Indicates a class is a Spring repository.

    • 7. @Confi...

  • Answered by AI
  • Q3. What is Multi Threading?
  • Ans. 

    Multi Threading is the ability of a CPU to execute multiple threads concurrently, allowing for better performance and responsiveness.

    • Allows multiple tasks to run concurrently within a single process

    • Improves performance by utilizing CPU resources efficiently

    • Can lead to synchronization issues if not handled properly

    • Examples: running multiple tasks simultaneously in a web server, processing data in parallel

  • Answered by AI
  • Q4. Interviewer ask me to write CRUD operation in Spring Boot
  • Ans. 

    Implementing CRUD operations in Spring Boot involves creating RESTful APIs for data management.

    • 1. Create a Spring Boot project using Spring Initializr with dependencies: Spring Web, Spring Data JPA, and H2 Database.

    • 2. Define an entity class, e.g., 'User', with fields like id, name, and email.

    • 3. Create a repository interface extending JpaRepository<User, Long> for database operations.

    • 4. Implement a service class t...

  • Answered by AI
  • Q5. Asked about project
  • Q6. What is oops concept?
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs focuses on creating objects that interact with each other to solve a problem.

    • Key principles of OOPs include Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another cl...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2023. There were 4 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 

Basic Logical Reasoning Like Checking the logic of problem solving

Round 3 - Coding Test 

Maximum 60 minutes for coding round.
Minimum 3-4 coding questions.

Round 4 - HR 

(2 Questions)

  • Q1. Discussion of salary and HR manager checks the background of the candidates
  • Q2. What is your expected Salay? Why we will select you in our company?
  • Ans. 

    I expect a competitive salary based on my skills and experience.

    • I have extensive experience in Java backend development.

    • I have a strong understanding of data structures and algorithms.

    • I have successfully delivered complex projects on time and within budget.

    • I am a quick learner and adapt easily to new technologies.

    • I am a team player and can effectively collaborate with cross-functional teams.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Panic while facing the interview.
Don't show fake experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Java, Spring Boot, Lambda expression, Collection framework

Round 2 - Technical 

(5 Questions)

  • Q1. Explain annotations used in spring boot ?
  • Ans. 

    Annotations in Spring Boot are used to provide metadata and configuration to the application.

    • Annotations are used to define the behavior of various components in a Spring Boot application.

    • They can be used to configure dependency injection, define request mappings, handle exceptions, etc.

    • Some commonly used annotations in Spring Boot include @RestController, @Autowired, @RequestMapping, @ExceptionHandler, etc.

  • Answered by AI
  • Q2. Explain polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms, allowing objects of different classes to be treated as the same type.

    • Polymorphism allows objects to be used interchangeably with other objects of the same superclass.

    • It enables code reusability and flexibility in object-oriented programming.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A superclass 'Animal' with sub...

  • Answered by AI
  • Q3. Explain rest-template.
  • Ans. 

    RestTemplate is a class in Spring Framework that simplifies making HTTP requests and handling responses.

    • RestTemplate is part of the Spring Web module.

    • It provides methods to send HTTP requests and receive responses.

    • It supports various HTTP methods like GET, POST, PUT, DELETE, etc.

    • RestTemplate can handle different data formats like JSON, XML, etc.

    • It can be used to consume RESTful APIs and interact with external services.

    • ...

  • Answered by AI
  • Q4. What is stack ?
  • Ans. 

    A stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Common operations include push (add element) and pop (remove element).

    • Stacks are used in function calls, undo/redo functionality, and expression evaluation.

  • Answered by AI
  • Q5. Explain abstraction in java.
  • Ans. 

    Abstraction in Java is the process of hiding the implementation details and providing only the essential features to the user.

    • Abstraction allows programmers to focus on the essential aspects of an object and ignore the irrelevant details.

    • It is achieved using abstract classes and interfaces in Java.

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

    • Interfaces define a contract fo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great interview in my career.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Starcentauri Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are the activities that you have performed?
  • Ans. 

    As an Assistant Manager, I have led teams, managed projects, and improved operational efficiency through strategic planning.

    • Led a team of 10 in a project that increased sales by 20% over six months.

    • Implemented a new inventory management system that reduced waste by 15%.

    • Conducted weekly team meetings to enhance communication and address challenges.

    • Developed training programs for new employees, improving onboarding effic...

  • Answered by AI
  • Q2. Some important journal entries

Interview Preparation Tips

Interview preparation tips for other job seekers - I would advice to be more confident on subject amd have a crisp cv which actually shows what you have done in your last company. After walkin, it is your cv which would create an impression of yours because in walkin, it is difficult to remember the candidate. I got call after 1 month and it was all because they liked my cv.
Be confident and practice all what you have done.

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. How to change the process

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is good but working with manger is not

I applied via Company Website and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. After 5 year in which position you will be

Interview Preparation Tips

Interview preparation tips for other job seekers - You should must improve your communication skills.

You have basic knowledge of your qualifications
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. General knowledge in coding and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Nooooooooooo noooooooooooooooooooooooooooo

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Online Type of interview

Team Lead Interview Questions & Answers

Cognizant user image P VIJAY MOHAN

posted on 23 Oct 2021

I applied via Referral and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. SLA's , KPI, FMEA
  • Q2. Situation management, conflict management
  • Q3. Payments related questions and different ERP's

Interview Preparation Tips

Interview preparation tips for other job seekers - Over the interview experience was good and challenging, the interviewer had idea about the roles and responsibilities and took interview process accordingly

Starcentauri Technologies Interview FAQs

How many rounds are there in Starcentauri Technologies interview?
Starcentauri Technologies interview process usually has 2-3 rounds. The most common rounds in the Starcentauri Technologies interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Starcentauri Technologies 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 Starcentauri Technologies. The most common topics and skills that interviewers at Starcentauri Technologies expect are CSS, HTML, Hibernate, J2Ee and Javascript.
What are the top questions asked in Starcentauri Technologies interview?

Some of the top questions asked at the Starcentauri Technologies interview -

  1. What annotations we used in spring bo...read more
  2. Interviewer ask me to write CRUD operation in Spring B...read more
  3. Explain annotations used in spring boo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Starcentauri Technologies Reviews and Ratings

based on 32 reviews

4.4/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.2

Salary

4.3

Job security

4.3

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 32 Reviews and Ratings
Java Developer
85 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Engineer
73 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Softwaretest Engineer
27 salaries
unlock blur

₹2.6 L/yr - ₹4.8 L/yr

Software Developer
26 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Automation Test Engineer
13 salaries
unlock blur

₹2.8 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Starcentauri Technologies with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview