Upload Button Icon Add office photos
Engaged Employer

i

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

UST Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 4.1k Reviews

Filter interviews by

UST Developer Interview Questions and Answers

Updated 18 Aug 2024

UST Developer Interview Experiences

3 interviews found

Developer Interview Questions & Answers

user image Prasad Garje

posted on 17 May 2023

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

I applied via Naukri.com and was interviewed in Apr 2023. 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 

(3 Questions)

  • Q1. OOP Concept they have Taken?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: bundling of data and methods that act on that data within a single unit

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

    • Polymorphism: ability of objects to take on many forms

    • Abstraction: hiding of complex implementation details and showing only the necessary information

  • Answered by AI
  • Q2. 4 pillers are there
  • Q3. Spring-Boot Use
  • Ans. 

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

    • Spring Boot is built on top of the Spring framework and follows the convention over configuration principle.

    • It provides a standalone executable JAR file that includes an embedded server, making it easy to deploy and run applications.

    • Spring Boot offers auto-configuration, which automatica...

  • Answered by AI

Skills evaluated in this interview

Developer Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2024

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

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

Round 1 - Coding Test 

Coding round with manager or lead

Round 2 - Group Discussion 

GD on common topics like Gen AI , tell about yourself, speak with team

Developer Interview Questions Asked at Other Companies

asked in HARMAN
Q1. Which programming language do you use regular in work
Q2. Given a 2 dim array, find an element which is the maximum in its ... read more
asked in HARMAN
Q3. What step do you take to ensure accurate estimates for project
Q4. Solve the problems: Write a formula to display A if A is present, ... read more
Q5. Can you describe “method overloading” versus “method overriding”? ... read more

Developer interview

user image JAVA DEVELOPERS

posted on 27 Dec 2021

Developer Jobs at UST

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java related questions mostly

Developer Interview Questions & Answers

NTT Data user image Tushar Kulkarni

posted on 24 May 2024

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

(1 Question)

  • Q1. Expalin what is ABAP dictionary Events in ALV report Have you worked on oops abp
  • Ans. 

    ABAP Dictionary is a central repository for data definitions used in SAP applications. ALV report events are user actions in ALV grid. OOPs ABAP is object-oriented programming in ABAP.

    • ABAP Dictionary is used to define and manage data definitions in SAP applications

    • ALV report events include user actions like clicking on a row or column header

    • OOPs ABAP allows for object-oriented programming concepts like classes and inhe

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Main reason to change current organization

Skills evaluated in this interview

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

Math questions based on logic

Round 2 - Group Discussion 

National anthem pros n cons

Round 3 - Coding Test 

Example coding logic algorithm n

Round 4 - HR 

(2 Questions)

  • Q1. What is your hobbies
  • Q2. Coding question
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a python code that will check all data in databricks and email the % error contains in that data. Implement encryption security

Interview Preparation Tips

Interview preparation tips for other job seekers - They only ask python question even if you are profeesional in something else
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. 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 - Technical 

(2 Questions)

  • Q1. Based on your profile
  • Q2. Based on u r profile
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Why should u want to join in this company

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Developer interview:
  • Self introdction
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Mysql, Java, Springboot
  • Q2. Truncate vs Delete
  • Ans. 

    Truncate is faster but cannot be rolled back, while Delete is slower but can be rolled back.

    • Truncate removes all rows from a table quickly, but cannot be rolled back.

    • Delete removes rows one by one, slower than Truncate, but can be rolled back using a transaction.

    • Truncate resets the identity seed of the table, while Delete does not.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Difference between future method and Queueable?
  • Ans. 

    Future methods are asynchronous and execute in a separate thread, while Queueable allows chaining of jobs and can handle larger data volumes.

    • Future methods are limited to 50 per transaction and cannot be chained

    • Queueable can be chained and can handle up to 50 jobs in a single transaction

    • Future methods are executed in a separate thread and are useful for long-running operations

    • Queueable jobs can be scheduled to run at a...

  • Answered by AI
  • Q2. Can we call a future method from another?
  • Ans. 

    Yes, we can call a future method from another future method.

    • A future method can call another future method using the @future annotation.

    • The second future method will be queued and executed after the first future method completes.

    • It is important to note that there is a limit of 50 future method calls per Apex invocation.

  • Answered by AI
  • Q3. Can we call a future method from a batch class?
  • Ans. 

    Yes

    • A future method can be called from a batch class

    • Future methods are used to perform long-running operations asynchronously

    • Batch classes are used to process large data sets in smaller chunks

    • Calling a future method from a batch class allows for parallel processing

  • Answered by AI

Skills evaluated in this interview

UST Interview FAQs

How many rounds are there in UST Developer interview?
UST interview process usually has 2 rounds. The most common rounds in the UST interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for UST 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 UST. The most common topics and skills that interviewers at UST expect are SQL, Java, C++, Spring Boot and Javascript.
What are the top questions asked in UST Developer interview?

Some of the top questions asked at the UST Developer interview -

  1. OOP Concept they have Tak...read more
  2. Spring-Boot ...read more
  3. 4 pillers are th...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 UST interviews
WalkIn
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
UST Developer Salary
based on 124 salaries
₹3 L/yr - ₹10 L/yr
34% less than the average Developer Salary in India
View more details

UST Developer Reviews and Ratings

based on 6 reviews

2.9/5

Rating in categories

2.5

Skill development

2.9

Work-Life balance

2.8

Salary & Benefits

2.6

Job Security

2.5

Company culture

2.6

Promotions/Appraisal

2.5

Work Satisfaction

Explore 6 Reviews and Ratings
C++ Developer

Gurgaon / Gurugram,

Chennai

+1

5-10 Yrs

₹ 25-30 LPA

Explore more jobs
Software Developer
2k salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹6.5 L/yr - ₹25.7 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.6 L/yr - ₹14.6 L/yr

System Analyst
1.2k salaries
unlock blur

₹6.5 L/yr - ₹22.2 L/yr

Senior Software Developer
1.1k salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Explore more salaries
Compare UST 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