Upload Button Icon Add office photos
Engaged Employer

i

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

ALTRES Technologies Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 22 Reviews

Filter interviews by

ALTRES Technologies Senior Software Engineer Interview Questions and Answers

Updated 22 May 2024

ALTRES Technologies Senior Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. String Oprerations
  • Q2. Java collections
Round 2 - Aptitude Test 

Internally prepared Psychometric test for judging mindset of candidate.

Round 3 - HR 

(2 Questions)

  • Q1. Why ALTRES ? And why are you switching your current job ?
  • Q2. Previous experience and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java collections and Spring MVC framework.

Interview questions from similar companies

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 Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

First round will be coding test which will have Core java questions

Round 2 - Technical 

(4 Questions)

  • Q1. Type of Class Loaders available in java
  • Ans. 

    Java has three types of class loaders: Bootstrap Class Loader, Extension Class Loader, and System Class Loader.

    • Bootstrap Class Loader loads core Java classes located in the bootstrap classpath.

    • Extension Class Loader loads classes from the extensions directory.

    • System Class Loader loads classes from the classpath specified by the CLASSPATH environment variable.

  • Answered by AI
  • Q2. Coding question related find 3nd highest number with single loop and minimum time complexity.
  • Ans. 

    Use a single loop to find the 3rd highest number in an array with minimum time complexity.

    • Iterate through the array and keep track of the three highest numbers encountered so far.

    • Update the three highest numbers as you iterate through the array.

    • Return the third highest number once the loop is completed.

  • Answered by AI
  • Q3. What is diff between cyclicBarrier and countDownLatch?
  • Ans. 

    CyclicBarrier allows a group of threads to wait at a barrier until all threads have reached it, while CountDownLatch allows one or more threads to wait until a set of operations being performed in other threads completes.

    • CyclicBarrier is reusable, while CountDownLatch is not.

    • CyclicBarrier allows all threads to wait for each other, while CountDownLatch allows one thread to wait for others.

    • CyclicBarrier resets automatica...

  • Answered by AI
  • Q4. What is diff between JPARepository and CURDRepository?
  • Ans. 

    JPARepository is a Spring Data interface for JPA-based repositories, while CRUDRepository is a generic interface for CRUD operations.

    • JPARepository extends CRUDRepository and provides additional JPA-specific methods.

    • CRUDRepository is a generic interface for CRUD operations on a repository.

    • JPARepository is typically used for JPA-based repositories, while CRUDRepository can be used for any type of repository.

    • JPARepository...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Second round is pending

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Lazy loading in react
  • Q2. Cache bursting
  • Q3. Difference between == and ===

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of react and redux
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1. Pattern print code. 2. Types of S3 bucket in AWS. 3. Java basic question. 4. Spring/ Spring boot basic question. 5. Hibernate basic interview question. 6. Some behavioral question.
  • Ans. 

    This is a list of questions asked in an interview for Senior Software Engineer position.

    • 1. Pattern print code: Write a code to print a specific pattern using loops.

    • 2. Types of S3 bucket in AWS: Explain the different types of S3 buckets in Amazon Web Services.

    • 3. Java basic question: Provide a basic question related to Java programming language.

    • 4. Spring/Spring Boot basic question: Give an example of a basic question rel...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basic.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Design a paginated list of items, then improve efficiency
  • Ans. 

    Design a paginated list of items and improve efficiency

    • Implement lazy loading to fetch data only when needed

    • Use caching to store previously fetched data for faster retrieval

    • Optimize database queries to reduce load times

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Basics on Javascript, ReactJS

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain model, view and controller in brief
  • Ans. 

    Model represents data, View displays data to user, Controller handles user input and updates model/view

    • Model: Represents data and business logic

    • View: Displays data to user

    • Controller: Handles user input and updates model/view

    • Example: In a web application, model could be a database table, view could be an HTML page, and controller could be a server-side script

  • Answered by AI
  • Q2. What are the various steps to create request object
  • Ans. 

    Steps to create a request object

    • Define the request object class

    • Add properties to the request object class

    • Implement methods to set and get values of the properties

    • Instantiate the request object class

    • Set values for the properties of the request object

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Where do you see yourself in next 5 years?
  • Q2. Why are you interested in this job

Skills evaluated in this interview

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

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 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 - Technical 

(5 Questions)

  • Q1. Basic Java Questions
  • Q2. Coding, OOPS, Collections
  • Q3. L2 : Techno Manager Round
  • Q4. Project Overview
  • Q5. Spring Boot, Quarkus

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much of compensation
Round 1 - Technical 

(1 Question)

  • Q1. Angular Architecture, basic angular questions such as data binding, rxjs, dependency injection etc.
Round 2 - Technical 

(1 Question)

  • Q1. Coding assignment to fetch data from API and render on the UI. Using httpclient module.
  • Ans. 

    Fetch data from API and render on UI using httpclient module

    • Create an instance of httpclient module

    • Use httpclient to make a GET request to API endpoint

    • Parse the response data and render on UI

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Normal question on roles and responsibilities alongwith cultural fitment check.
Round 4 - Client Interview 

(1 Question)

  • Q1. Client interview to get the knowledge of UX and responsive web application. Css etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and even if you don't know the answer properly at least tell them the approach and try your best to answer or complete the assignment given.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Oct 2021. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Just discussions about my past experience. It was a phone interview
Round 3 - Coding Test 

Some basic node js coding like reading from a file, crud operations

Round 4 - Technical 

(1 Question)

  • Q1. Database schema and system design
Round 5 - Aptitude Test 

It was mainly some behavioural questions and math aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on algorithms and database designs

ALTRES Technologies Interview FAQs

How many rounds are there in ALTRES Technologies Senior Software Engineer interview?
ALTRES Technologies interview process usually has 3 rounds. The most common rounds in the ALTRES Technologies interview process are Technical, Aptitude Test and HR.
What are the top questions asked in ALTRES Technologies Senior Software Engineer interview?

Some of the top questions asked at the ALTRES Technologies Senior Software Engineer interview -

  1. String Oprerati...read more
  2. Java collecti...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 ALTRES Technologies interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
ALTRES Technologies Senior Software Engineer Salary
based on 5 salaries
₹6.2 L/yr - ₹9.1 L/yr
42% less than the average Senior Software Engineer Salary in India
View more details

ALTRES Technologies Senior Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

2.0

Job Security

2.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
25 salaries
unlock blur

₹3.2 L/yr - ₹7.2 L/yr

Payroll Analyst
12 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Payroll Analyst 1
8 salaries
unlock blur

₹5.5 L/yr - ₹6.2 L/yr

Technical Specialist
8 salaries
unlock blur

₹11.5 L/yr - ₹16.5 L/yr

Senior Quality Engineer
8 salaries
unlock blur

₹9 L/yr - ₹15 L/yr

Explore more salaries
Compare ALTRES Technologies with

Infosys

3.7
Compare

TCS

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