Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare

Filter interviews by

UST SDE (Software Development Engineer) Interview Questions, Process, and Tips

Updated 11 Apr 2023

Top UST SDE (Software Development Engineer) Interview Questions and Answers

UST SDE (Software Development Engineer) Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. All java and spring boot related Questions like interface, streams, qualifier, profile
  • Q2. Char count using streams
  • Ans. 

    Counting characters using streams in Java

    • Use the chars() method to convert the string to an IntStream of characters

    • Use the count() method to count the number of characters in the stream

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(3 Questions)

  • Q1. 1. Check if the linked list is circular or linear?
  • Ans. 

    To check if a linked list is circular or linear, we need to traverse the list and check if it loops back to a previous node.

    • Traverse the linked list using two pointers, one moving one node at a time and the other moving two nodes at a time.

    • If the faster pointer catches up to the slower pointer, then the list is circular.

    • If the faster pointer reaches the end of the list without catching up to the slower pointer, then th

  • Answered by AI
  • Q2. 2. Check how many bits are set in a number?
  • Ans. 

    Count the number of set bits in a given number.

    • Use bitwise AND operator with 1 to check if the rightmost bit is set.

    • Shift the number to right by 1 bit and repeat the process until the number becomes 0.

    • Keep a count of the number of set bits encountered.

    • Example: For number 5 (101 in binary), the answer is 2 as there are 2 set bits.

    • Example: For number 15 (1111 in binary), the answer is 4 as there are 4 set bits.

  • Answered by AI
  • Q3. 3. what is a segmentation fault?
  • Ans. 

    Segmentation fault is a type of error caused by accessing memory that “does not belong to you.”

    • It occurs when a program tries to access a memory location that it is not allowed to access.

    • It is often caused by programming errors such as accessing an array beyond its bounds.

    • It can also be caused by hardware problems such as faulty RAM or overheating.

    • Segmentation faults can be difficult to debug because they often occur i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and make sure you cover the basic topics

Skills evaluated in this interview

SDE (Software Development Engineer) Interview Questions Asked at Other Companies

asked in Carwale
Q1. A string is given consisting of lowercase alphabets. Write a func ... read more
asked in Carwale
Q2. Given a balance and 100 coins;out of which,one is heavier. Find m ... read more
Q3. Given a binary search tree , print the path which has the sum equ ... read more
asked in Housing.com
Q4. Given a square area of 1024x1024 on a map with some flats (housin ... read more
asked in Carwale
Q5. Delete nodes in linkedlist which have a greater value on right si ... read more

Interview questions from similar companies

Round 1 - Aptitude Test 

NA

Round 2 - Technical 

(1 Question)

  • Q1. Questions based on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - hdhevwjebejehebdbdjdbejejejejejeb

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. The basic question of SQL
  • Q2. Question from a project that mentioned in the resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduce yourself nicely, be confident in your answer. Answer very softly and don't get nervous.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
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. Explain linked list reversal ways, explain rabbit mq
  • Ans. 

    Explanation of linked list reversal and RabbitMQ

    • Linked list reversal can be done iteratively or recursively

    • Iterative reversal involves changing the pointers of each node to point to the previous node

    • Recursive reversal involves calling the function recursively on the next node and changing its pointer to the current node

    • RabbitMQ is a message broker that allows for asynchronous communication between applications

    • It uses a...

  • Answered by AI
  • Q2. Design patterns es saga

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on DSA, Java 8, close d questions , prepare in cloud ci cd

Skills evaluated in this interview

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java. Spring boot, micro service, hibernate
Round 2 - HR 

(1 Question)

  • Q1. Salary, technical, company details

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Java
  • Spring Boot
  • Micro service
  • Hibernate
  • JSP
Interview preparation tips for other job seekers - Java, spring boot, micro service, hibernate

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Polymorphism and it’s type?
  • 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 of the same class.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Method overloading is when a class has two or more methods with the ...

  • Answered by AI
  • Q2. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of an object are injected into it rather than created within it.

    • It helps in achieving loose coupling between objects

    • It makes testing easier as dependencies can be mocked or stubbed

    • There are three types of Dependency Injection - Constructor Injection, Setter Injection, and Interface Injection

    • Example: In a web application, the database connection object can ...

  • Answered by AI
  • Q3. How Garbage Collection works in .Net?
  • Ans. 

    Garbage Collection in .Net automatically manages memory by freeing up unused objects.

    • Garbage Collector runs in the background and periodically checks for unused objects.

    • It frees up memory by deallocating objects that are no longer being used.

    • GC can be configured using different modes like Server, Workstation, Concurrent, etc.

    • GC can also be manually triggered using GC.Collect() method.

    • GC.SuppressFinalize() method can be...

  • Answered by AI
  • Q4. What is LINQ and some basic concept related it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy. Go through basic concepts of OOPs and SQL.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is garbage collection?
  • Ans. 

    Garbage collection is an automatic memory management process.

    • It frees up memory that is no longer being used by the program.

    • It helps prevent memory leaks and crashes caused by running out of memory.

    • Examples of languages that use garbage collection are Java, Python, and Ruby.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to study basic level code

Skills evaluated in this interview

UST Interview FAQs

How many rounds are there in UST SDE (Software Development Engineer) interview?
UST interview process usually has 1-2 rounds. The most common rounds in the UST interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in UST SDE (Software Development Engineer) interview?

Some of the top questions asked at the UST SDE (Software Development Engineer) interview -

  1. 2. Check how many bits are set in a numb...read more
  2. 1. Check if the linked list is circular or line...read more
  3. 3. what is a segmentation fau...read more

Tell us how to improve this page.

UST SDE (Software Development Engineer) Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

UST SDE (Software Development Engineer) Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

2.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
2.1k salaries
unlock blur

₹2.5 L/yr - ₹12.1 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹7.2 L/yr - ₹27.8 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.8 L/yr - ₹15.5 L/yr

System Analyst
1.1k salaries
unlock blur

₹6.1 L/yr - ₹18.2 L/yr

Validation Engineer
933 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Explore more salaries
Compare UST with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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