Premium 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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

UST Interview Questions and Answers

Updated 29 Jun 2025
Popular Designations

372 Interview questions

A Java Developer was asked 1w ago
Q. Describe the microservice architecture.
Ans. 

Microservice architecture is a design approach where applications are built as a collection of loosely coupled services.

  • Each microservice is responsible for a specific business capability, e.g., user authentication service.

  • Microservices communicate over lightweight protocols, typically HTTP/REST or messaging queues.

  • They can be developed, deployed, and scaled independently, allowing for greater flexibility.

  • Microser...

View all Java Developer interview questions
A Java Developer was asked 1w ago
Q. Can we explicitly create a string in the string pool?
Ans. 

Yes, we can explicitly create a string in the string pool using string literals.

  • String literals are stored in the string pool by default. Example: String str = "Hello";

  • Using the 'new' keyword creates a string object in the heap, not in the pool. Example: String str2 = new String("Hello");

  • To explicitly add a string to the pool, use the intern() method. Example: String str3 = str2.intern();

View all Java Developer interview questions
An Associate 3 was asked 2w ago
Q. Guesstimate the number of EV charging stations in India.
Ans. 

Estimating the number of EV charging stations in India involves analyzing population, vehicle ownership, and infrastructure needs.

  • India has a population of approximately 1.4 billion, with a growing number of electric vehicles (EVs).

  • Assuming 1 EV per 10 households, with 300 million households, we estimate 30 million EVs.

  • A typical EV charging station can serve about 10-15 EVs per day.

  • To meet demand, India may need a...

View all Associate 3 interview questions
An Associate 3 was asked 2w ago
Q. What is the difference between your college and IIM A?
Ans. 

IIM A offers a rigorous curriculum, diverse peer group, and extensive networking opportunities compared to my college.

  • IIM A has a globally recognized faculty with industry experience, while my college may have a more localized faculty.

  • The curriculum at IIM A is designed to be more challenging and case-study oriented, enhancing practical learning.

  • IIM A attracts a diverse cohort from various backgrounds, providing a...

View all Associate 3 interview questions
A Validation Engineer was asked 3w ago
Q. Tell me about different testing methodologies.
Ans. 

Testing methodologies ensure software quality through structured approaches like unit, integration, and system testing.

  • Unit Testing: Tests individual components for correctness (e.g., testing a function in isolation).

  • Integration Testing: Validates the interaction between integrated components (e.g., testing APIs between services).

  • System Testing: Evaluates the complete system's compliance with requirements (e.g., e...

View all Validation Engineer interview questions
A Validation Engineer was asked 3w ago
Q. What is regression testing?
Ans. 

Regression testing ensures that new code changes do not adversely affect existing functionalities.

  • Verifies that recent changes haven't introduced new bugs.

  • Can be automated to save time and increase efficiency.

  • Example: After a software update, testing login functionality to ensure it still works.

  • Involves re-running previously completed tests to confirm unchanged behavior.

  • Critical in maintaining software quality dur...

View all Validation Engineer interview questions
A Senior Processing Executive was asked 1mo ago
Q. What is the difference between an adjustment and a duplicate?
Ans. 

Adjustment refers to modifying an entry, while duplicate indicates a repeated or copied entry.

  • Adjustment involves correcting or modifying an existing record, e.g., changing a billing amount due to a discount.

  • Duplicate refers to an entry that is repeated, e.g., entering the same invoice twice in a system.

  • Adjustments can be made to rectify errors, while duplicates often require deletion or merging.

  • In accounting, an ...

View all Senior Processing Executive interview questions
Are these interview questions helpful?
A Senior Processing Executive was asked 1mo ago
Q. How would you assess the validity of the claim?
Ans. 

Assessing the validity of a claim involves critical evaluation of evidence, sources, and context.

  • Evaluate the source: Check the credibility of the person or organization making the claim. For example, a claim from a peer-reviewed journal is more reliable than one from a blog.

  • Examine the evidence: Look for data, studies, or statistics that support the claim. For instance, if a health claim is made, verify if there ...

View all Senior Processing Executive interview questions
🔥 Asked by recruiter 2 times
An Embedded Developer was asked 3mo ago
Q. Explain the concepts of Object-Oriented Programming (OOP).
Ans. 

OOP is a programming paradigm based on objects that encapsulate data and behavior, promoting modularity and reusability.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the sam...

View all Embedded Developer interview questions
An Associate Engineer was asked 3mo ago
Q. What does security mean for an IT firm?
Ans. 

Security in an IT firm encompasses protecting data, systems, and networks from threats and vulnerabilities.

  • Data Protection: Ensuring sensitive information is encrypted and access is restricted. For example, using AES encryption for databases.

  • Network Security: Implementing firewalls and intrusion detection systems to monitor and protect network traffic.

  • Application Security: Regularly updating software and conductin...

View all Associate Engineer interview questions

UST Interview Experiences

544 interviews found

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

I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Based on my experience and tech stacks
  • Q2. Coding questions. Find numbers start with 1 from list of Integer using stream and lambda.
  • Ans. 

    Using stream and lambda to find numbers starting with 1 from list of Integers.

    • Use stream to filter the list of Integers based on the condition that the number starts with 1.

    • Use lambda expression to define the condition for filtering.

    • Convert the filtered numbers to strings and store them in an array.

  • Answered by AI
  • Q3. Questions on SQL
Round 2 - Technical 

(4 Questions)

  • Q1. More focused on Architecture level
  • Q2. Kafka scenarios , failover and zookeeper
  • Q3. API gateway edureka service registry and discovery
  • Q4. Coding question - two list of interger. Merge them and do not include duplicates in result list.
  • Ans. 

    Merge two lists of integers and remove duplicates in the result list.

    • Create a new list to store the merged result.

    • Iterate through each element in both lists and add them to the result list if they are not already present.

    • Use a set to keep track of duplicates and avoid adding them to the result list.

  • Answered by AI

Skills evaluated in this interview

Manual Test Engineer Interview Questions & Answers

user image Respective user 001

posted on 28 Feb 2025

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Define method over loading and method over riding?
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is achieved by having multiple methods in the same class with the same name but different parameters.

    • Method overriding is achieved by having a method in a subclass with the same n...

  • Answered by AI
  • Q2. Manual testing question should be asked what kinds of question they are asking

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended the interview as I got invite link from naukri provided by a HR her name was sreesha ramdas, what she did is the client were already selected 3 candidate but she posted 3 vacancies for testing is available as she is posted in their site, naukri and Job boards, but I went for the interview and put leave to my office because I got the interview link. Got frustrated after hearing those words I gone to the coimvatore office which is above the passport office at 9 am no one is there I waited till 12 pm after they discussing internally whether we conduct interview for the candidate who were came totally 6 candidate were came by seeing the mail no one is selected the interview they conducted asking very basic testing questions as usual such a worst ever interview I have attended in my life is this one. I wasted my leave time effort energy only of that useless HR sreesha ramdas she can't even have common sense even though I tried to message her for confirmation whether it was avsibke or not but she haven't replied on LinkedIn never seen such a disgusting fellow as hr there in a big company
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic pipeline,python,some simple coding
  • Q2. More on resume and based on ur answers
  • Q3. Docker multistage
Round 2 - Technical 

(2 Questions)

  • Q1. Write the k8s deployment ymal with rolling update for given docker image
  • Ans. 

    Create a k8s deployment ymal with rolling update for a given docker image

    • Define a Deployment object in the YAML file

    • Specify the container image in the spec section

    • Set the update strategy to RollingUpdate

    • Define the number of replicas for the deployment

  • Answered by AI
  • Q2. Read json file and recursive way of geting value based on key
  • Ans. 

    A method to read a JSON file and recursively retrieve values associated with a specified key.

    • Use a programming language like Python or JavaScript to read the JSON file.

    • Implement a recursive function that traverses the JSON structure.

    • Check if the current element is a dictionary or a list to continue recursion.

    • Example in Python: def get_value(data, key): if isinstance(data, dict): for k, v in data.items(): if k == key: y...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Spring basics and writing code
  • Q2. Oops concepts abstraction, encapsulation
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. UST wanted this to be confidential
  • Q2. Confidential

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Not join a company that doesn't respect your loyalty and at the same time is miserly when it comes to pay. They are the ultimate leaders in cost cutting and silent layoffs. They give such poor hikes that there is really really no scope for growth. I have seen people leaving the organisation because of the poor quality of projects they were offered. They are just cheap solution providers
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java program to do the validations.
  • Ans. 

    Java program to perform validations on input data.

    • Use regular expressions to validate input data.

    • Implement custom validation logic for specific requirements.

    • Utilize Java libraries like Apache Commons Validator for common validation tasks.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Do the cred operations
  • Ans. 

    The cred operations refer to the actions related to credentials in a software system.

    • Cred operations typically involve tasks such as creating, updating, deleting, and verifying user credentials.

    • Examples of cred operations include user registration, password reset, and authentication processes.

    • These operations are crucial for ensuring secure access to the software system and protecting user data.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Expectations and company policies

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. DAX Related Syntax and Codes
  • Q2. Data Modelling, SQL, Python
Round 2 - Technical 

(1 Question)

  • Q1. No Response from HR after calling of selection after Round 1
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

A standard online test conducted through one of the testing platforms.

Round 2 - Technical 

(4 Questions)

  • Q1. Java 8 features
  • Q2. Rest API
  • Q3. Java 8 coding problem
  • Q4. Collections
Round 3 - Technical 

(1 Question)

  • Q1. It was based on my previous project
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Work experience walk through
  • Q2. Scenario based questions
  • Q3. About the company
  • Q4. About the client and process
  • Q5. About process walk through

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst interview experience ever, they conducted first round and said shortlisted, later they never comeback.
The hr kavi priya was not answering my calls.

Note: If you are moving with another candidate atleast inform please.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. What are the differences between std::vector and std::list in C++?
  • Q2. What are virtual functions, and how are they used in programming?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer and HR exhibited a laid-back demeanour. I question the credibility of the interviewer, as he appeared to lack knowledge. The questions posed were quite basic for the job role, indicating the interviewer's unpreparedness. Communication difficulties on the interviewer's part disrupted the flow of the interview. He did not share feedback for two whole days, only providing an update after I proactively inquired with HR.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is REST Framework
  • Ans. 

    REST framework is a set of rules and conventions for building and interacting with web services.

    • REST stands for Representational State Transfer

    • It uses standard HTTP methods like GET, POST, PUT, DELETE for communication

    • It is stateless and allows for scalability and flexibility

    • Example: Django REST framework for building APIs in Python

  • Answered by AI
  • Q2. What are the SQL Queries
  • Ans. 

    SQL queries are used to retrieve, manipulate, and manage data stored in a database.

    • SQL SELECT query is used to retrieve data from a database table.

    • SQL INSERT query is used to insert new records into a database table.

    • SQL UPDATE query is used to modify existing records in a database table.

    • SQL DELETE query is used to remove records from a database table.

  • Answered by AI
Round 2 - Coding Test 

This is related to SQL

Top trending discussions

View All
Interview Tips & Stories
6d (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 UST?
Ask anonymously on communities.

UST Interview FAQs

How many rounds are there in UST interview?
UST interview process usually has 2-3 rounds. The most common rounds in the UST interview process are Technical, HR and Resume Shortlist.
How to prepare for UST 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 Python, SQL, Automation Testing, Java and Agile Coaching.
What are the top questions asked in UST interview?

Some of the top questions asked at the UST interview -

  1. If a application is running slow what process would you follow to find root cau...read more
  2. =>What is garbage collection in c# =>What is dispose and finalise in c# =>What ...read more
  3. I was asked for basic software testing questions.For ex: what is difference bet...read more
What are the most common questions asked in UST HR round?

The most common HR questions asked in UST interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. What are your strengths and weakness...read more
How long is the UST interview process?

The duration of UST interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 438 interview experiences

Difficulty level

Easy 22%
Moderate 69%
Hard 8%

Duration

Less than 2 weeks 67%
2-4 weeks 22%
4-6 weeks 6%
6-8 weeks 4%
More than 8 weeks 2%
View more
Join UST Create change that stands the test of time

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.6k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
View all

UST Reviews and Ratings

based on 4.9k reviews

3.8/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.4

Salary

3.5

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 4.9k Reviews and Ratings
Oracle HCM Core Expert

Kochi,

Bangalore / Bengaluru

+1

7-12 Yrs

Not Disclosed

Java Developer

Kochi,

Thiruvananthapuram

4-8 Yrs

₹ 18-25 LPA

Explore more jobs
Software Developer
2.2k salaries
unlock blur

₹4.1 L/yr - ₹20.3 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹12.8 L/yr - ₹23.9 L/yr

Software Engineer
1.4k salaries
unlock blur

₹3.2 L/yr - ₹15.6 L/yr

System Analyst
1k salaries
unlock blur

₹10.7 L/yr - ₹18 L/yr

Senior Software Developer
948 salaries
unlock blur

₹10.4 L/yr - ₹17.3 L/yr

Explore more salaries
Compare UST with

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview