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

Filter interviews by

UST Software Engineer III Interview Questions and Answers

Updated 7 Apr 2022

UST Software Engineer III Interview Experiences

1 interview found

Round 1 - Technical 

(1 Question)

  • Q1. =>What is garbage collection in c# =>What is dispose and finalise in c# =>What is managed resoures and unmanaged resource in c# =>what is clr,cls,and cts in c# =>what is singleton pattern in c# =>filters o...
  • Ans. 

    Technical interview questions for Software Engineer III position

    • Garbage collection in C# is an automatic memory management process

    • Dispose and Finalize are methods used to release resources

    • Managed resources are objects that are managed by the .NET runtime, while unmanaged resources are external resources that are not managed by the runtime

    • CLR (Common Language Runtime) is the virtual machine component of .NET, CLS (Commo...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my experience, skills, and the responsibilities of the role.

    • Consider the industry standards and market rates for similar positions

    • Take into account your level of experience and expertise

    • Factor in the responsibilities and expectations of the Software Engineer III role

    • Consider any additional benefits or perks offered by the company

    • Be open to negotiation and discuss salary expectatio

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hr round not difficult.We can easily clear hr Round.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90 min test containing verbal, Quantitative aptitude and question based on diagrams

Round 2 - Technical 

(2 Questions)

  • Q1. Which programming language will you prefer?
  • Ans. 

    I prefer programming languages like Python and Java for their versatility and widespread use in the industry.

    • I prefer Python for its simplicity, readability, and vast libraries for various tasks.

    • I also like Java for its strong typing, object-oriented approach, and cross-platform compatibility.

    • I am open to learning new languages as needed for specific projects or tasks.

  • Answered by AI
  • Q2. Question based on projects and internships
Round 3 - Technical 

(2 Questions)

  • Q1. Generative AI basics like chatgpt, Gemini etc
  • Q2. Little bit same like first round about programming languages and databases

Interview Preparation Tips

Interview preparation tips for other job seekers - You should prepare whole things that you have mentioned in resume in detail
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Jaipur Engineering College & Research Centre, Jaipur and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

The first round is the aptitude+Core Subjects(Dsa+Cloud+Networking+Sql+Devops+ML)+ Coding One basic and one Advance

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Softwaretest Engineer interview:
  • DSA
  • aptitude
  • Cloud Computing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and basics of testing
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding question were there and we need to solve eit in 45 minutes

Round 2 - Technical 

(2 Questions)

  • Q1. Asked a DSA questions
  • Q2. Some random question about project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well and go through your project thoroughly.
Round 1 - Group Discussion 

Merit and demerit of Machine learning ?

Round 2 - Aptitude Test 

General Aptitude and reasoning

Round 3 - Technical 

(4 Questions)

  • Q1. Oops concept, DBMS , Data Structure
  • Q2. What is Normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • It involves dividing larger tables into smaller ones and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.

    • Normalization can improve database pe...

  • Answered by AI
  • Q3. What is polimorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have multiple subclasses like circle, square, etc. and all can be treated as shapes.

    • Example: A method can take an object of a parent class as a parameter and it can accept a

  • Answered by AI
  • Q4. What is Stack and Pre and post Tree formation
  • Ans. 

    Stack is a data structure that follows LIFO. Pre and post tree formation are methods of traversing a tree.

    • Stack is used for backtracking, undoing, and recursion.

    • Pre-order traversal visits the root node first, then left subtree, then right subtree.

    • Post-order traversal visits the left subtree, then right subtree, then root node.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me About company ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics questions of Data Stucture Oops and Dbms

Skills evaluated in this interview

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Height of a Binary Tree

    You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determine the height of the tree.

    Explana...

  • Ans. 

    The height of a binary tree is the maximum number of edges from the root to a leaf node.

    • Traverse the tree recursively and keep track of the maximum height

    • If the current node is null, return 0

    • Otherwise, calculate the height of the left and right subtrees and return the maximum height plus 1

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to calculate the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.

    • Sum up the trapped water for all bars and return the total amount.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    The task is to merge two sorted arrays into one sorted array.

    • Create a new array with size M + N to store the merged array

    • Use two pointers to iterate through the elements of ARR1 and ARR2

    • Compare the elements at the current pointers and add the smaller element to the new array

    • Move the pointer of the array from which the element was added

    • Repeat the process until all elements are merged

    • If there are remaining elements in AR...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 6.5 CGPA, No backlogsPublicis Sapient interview preparation:Topics to prepare for the interview - Data Structures, Web Technology, OS, DBMS, Java, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Just focus on Data structures mostly arrays, string and dp and practice at least 350 Questions
Tip 2 : Prepare topics related to web tech like HTML, CSS, Node Js
Tip 3 : Prepare Java, OOPS and if required then spring framework and jsp, servlets and do atleast 2 good projects

Application resume tips for other job seekers

Tip 1 : Everything should be clear and right what you have written on your resume.
Tip 2 : Have some projects on your resume and that projects should be done by you only and you should have proper knowledge of the tech and flow you have used in that projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Diff between HANA and ECC
  • Ans. 

    HANA is an in-memory database platform while ECC is a traditional ERP system.

    • HANA is designed to handle large amounts of data in real-time while ECC is not optimized for real-time processing.

    • HANA uses column-based storage while ECC uses row-based storage.

    • HANA has a simpler data model and can handle unstructured data while ECC has a more complex data model.

    • HANA is a newer technology while ECC has been around for decades...

  • Answered by AI
  • Q2. Must know the details of FM's used in devlops

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know everything you have written in the resume

Skills evaluated in this interview

I applied via Referral and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL and COGNOS related questions were asked.
Round 2 - Technical 

(1 Question)

  • Q1. SQL and cognos Related questions were asked.
Round 3 - HR 

(1 Question)

  • Q1. What is the expected CTC and few questions related to notice period and pay details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 : Technical interview with INDIA team
Round 2 : Technical interview with Paris Team
Round 3: HR interview

UST Interview FAQs

How many rounds are there in UST Software Engineer III interview?
UST interview process usually has 2 rounds. The most common rounds in the UST interview process are Technical and HR.

Tell us how to improve this page.

UST Software Engineer III Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 812 Interviews
Mphasis Interview Questions
3.4
 • 809 Interviews
View all
UST Software Engineer III Salary
based on 46 salaries
₹7 L/yr - ₹20 L/yr
55% less than the average Software Engineer III Salary in India
View more details

UST Software Engineer III Reviews and Ratings

based on 5 reviews

4.4/5

Rating in categories

3.7

Skill development

4.4

Work-life balance

4.0

Salary

3.6

Job security

4.1

Company culture

3.5

Promotions

4.1

Work satisfaction

Explore 5 Reviews and Ratings
Software Developer
2.1k salaries
unlock blur

₹2.5 L/yr - ₹12.6 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹6.6 L/yr - ₹27.1 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.7 L/yr - ₹15.1 L/yr

System Analyst
1.1k salaries
unlock blur

₹6.3 L/yr - ₹21 L/yr

Validation Engineer
942 salaries
unlock blur

₹2 L/yr - ₹9.6 L/yr

Explore more salaries
Compare UST with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview