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 25 Jun 2025
Popular Designations

331 Interview questions

An Associate 3 was asked 3d 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
A Validation Engineer was asked 1w 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 Senior Processing Executive was asked 3w 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
A Senior Processing Executive was asked 3w 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
🔥 Asked by recruiter 2 times
An Embedded Developer was asked 2mo 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
An Associate Engineer was asked 3mo ago
Q. What do you know about active directory?
Ans. 

Active Directory is a directory service by Microsoft for managing users, computers, and resources in a networked environment.

  • Centralized management of user accounts and permissions.

  • Supports Group Policy for enforcing security settings across devices.

  • Facilitates single sign-on (SSO) for users accessing multiple services.

  • Organizes resources in a hierarchical structure using domains, trees, and forests.

  • Integrates wit...

View all Associate Engineer interview questions
Are these interview questions helpful?
An Associate Engineer was asked 3mo ago
Q. Tell me about the OSI model.
Ans. 

The OSI model is a conceptual framework used to understand network communication in seven layers.

  • Layer 1: Physical - Deals with the physical connection (e.g., cables, switches).

  • Layer 2: Data Link - Manages node-to-node data transfer (e.g., Ethernet).

  • Layer 3: Network - Handles routing of data (e.g., IP addresses).

  • Layer 4: Transport - Ensures complete data transfer (e.g., TCP, UDP).

  • Layer 5: Session - Manages session...

View all Associate Engineer interview questions
A Senior Software Engineer 1 was asked 3mo ago
Q. What is a web API?
Ans. 

A Web API is an interface that allows different software applications to communicate over the internet using standard protocols.

  • Web APIs use HTTP requests to access and manipulate data.

  • Common formats for data exchange include JSON and XML.

  • Examples include RESTful APIs (like Twitter API) and SOAP APIs (like some banking services).

  • Web APIs enable integration between different systems, such as mobile apps and web ser...

View all Senior Software Engineer 1 interview questions
A Senior Software Engineer 1 was asked 3mo ago
Q. What are React Hooks?
Ans. 

React hooks are functions that let you use state and other React features without writing a class.

  • Hooks allow functional components to manage state and lifecycle events.

  • Common hooks include useState for state management and useEffect for side effects.

  • Example of useState: const [count, setCount] = useState(0);

  • Example of useEffect: useEffect(() => { document.title = `Count: ${count}`; }, [count]);

  • Custom hooks can...

View all Senior Software Engineer 1 interview questions

UST Interview Experiences

543 interviews found

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

Interview Questionnaire 

4 Questions

  • Q1. Basics to advance level of questions
  • Q2. What is the difference between swift & objective c?
  • Ans. 

    Swift is a modern programming language while Objective-C is an older language used for iOS development.

    • Swift is easier to read and write than Objective-C.

    • Swift is faster than Objective-C.

    • Objective-C is still used in legacy codebases.

    • Swift has a simpler syntax and is more concise.

    • Swift has better memory management than Objective-C.

  • Answered by AI
  • Q3. Features of swift 5
  • Ans. 

    Swift 5 introduces ABI stability, new language features, and improved performance.

    • ABI stability ensures compatibility between future Swift versions

    • Raw strings allow for easier handling of regular expressions and multi-line strings

    • Dynamic callable types enable objects to be called like functions

    • Improved performance with faster build times and reduced app size

    • New Result type for handling errors and success cases

    • Property ...

  • Answered by AI
  • Q4. About latest project

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good formal interview overall

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
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

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.

What people are saying about UST

View All
hoppypanda
Verified Icon
1w
works at
UST
NTT Data: Learning options, growth & work-life balance?
Curious about what learning platforms NTT Data offers? Also, how's the career growth and work-life balance there?
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 437 interview experiences

Difficulty level

Easy 22%
Moderate 69%
Hard 8%

Duration

Less than 2 weeks 66%
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
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
Nagarro Interview Questions
4.0
 • 791 Interviews
Sutherland Global Services Interview Questions
3.5
 • 690 Interviews
Optum Global Solutions Interview Questions
4.0
 • 671 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
Senior IAM Governance Lead

Thiruvananthapuram

8-13 Yrs

₹ 18-25 LPA

Lead II - Enterprise Solutions

Chennai,

Gurgaon / Gurugram

+1

7-9 Yrs

₹ 14-19 LPA

Lead I - Enterprise Solutions

Chennai,

Gurgaon / Gurugram

+1

5-7 Yrs

Not Disclosed

Explore more jobs
Software Developer
2.1k salaries
unlock blur

₹4.1 L/yr - ₹19.6 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹7 L/yr - ₹28.5 L/yr

Software Engineer
1.5k salaries
unlock blur

₹3.8 L/yr - ₹15.7 L/yr

System Analyst
1.1k salaries
unlock blur

₹6.3 L/yr - ₹22.6 L/yr

Senior Software Developer
957 salaries
unlock blur

₹5.5 L/yr - ₹20.5 L/yr

Explore more salaries
Compare UST with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview