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.2k Reviews

Filter interviews by

UST Software Developer 1 Interview Questions and Answers

Updated 7 Apr 2024

UST Software Developer 1 Interview Experiences

2 interviews found

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

I applied via campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

The first round happened on campus where we have solve 30 Mcq's + 1 coding question which was pretty basic. The duration of the test was 1 hr

Round 2 - Communication round 

(1 Question)

  • Q1. In this round the LSRW(Listening Speaking Reading Writing) skills are tested. Listening : A audio clip was played and we have to answer what was the meaning of the clip by choosing options Speaking: You h...
Round 3 - HR 

(3 Questions)

  • Q1. In final round the interviewer asked to introduce myself and asked about my projects then she asked about my background, aim, hobbies, etc..
  • Q2. She also asked specific questions about company(like vision,mission,values).
  • Q3. The interview lasted about 30 mins and the interviewer was so much friendly

Interview Preparation Tips

Topics to prepare for UST Software Developer 1 interview:
  • Java
  • Problem Solving
  • Communication Skills
  • Coding
  • Android
Interview preparation tips for other job seekers - Please go through the company's website and do some research before attending HR interviews at UST cause they will for sure ask about the company.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed before Sep 2022. 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 - Aptitude Test 

Mix aptitude and coding mcqs

Round 3 - Technical 

(3 Questions)

  • Q1. Simple logical questions and some coding questions
  • Q2. Probability questions
  • Q3. Reasoning questions

Software Developer 1 Interview Questions Asked at Other Companies

Q1. Do you have prior experience in Java and Spring Boot?
Q2. What data structure uses a Tree, give examples.
Q3. Find the sum of 2 numbers A and B where A and B are represented i ... read more
Q4. Architecture of instagram, backend api responses, features that c ... read more
Q5. What is difference between web api and rest api

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about anyone project from your resume (might even ask to show the code)
  • Q2. Questions related to topics of your project
Round 2 - One-on-one 

(1 Question)

  • Q1. Resume based instead project based and similar as round 1
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at J S S Academy of Technical Education, Bangalore and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Average to easy difficulty level.

Round 2 - Technical 

(3 Questions)

  • Q1. Java code of string manipulation
  • Q2. What is the Java code for various types of sorting algorithms?
  • Q3. Sql query and topics related to joins.
Round 3 - HR 

(4 Questions)

  • Q1. About yourself and family
  • Q2. What do you know about the company?
  • Q3. Can you provide examples of real-life scenarios where you handled conflicts with either a colleague or a manager?
  • Q4. What actions would you take if your manager does not approve your product idea, and how would you attempt to persuade them?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident; they will strive to comfort you despite any feelings of hesitation and nervousness. A foundational understanding of Java or C++, along with knowledge of data structures and algorithms (DSA), will be extremely advantageous. You should illustrate your potential contributions while also recognizing your limitations. Foster a positive atmosphere.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Basics of Sql Queries and Explain the Queries

Round 2 - Technical 

(3 Questions)

  • Q1. SCD types of in ETL
  • Q2. SQL Queries with some scenario based
  • Q3. What is mean by index
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Complete oops concepts with examples?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
  • Q2. Virtual function and virtual Destructor?
  • Q3. Multithreading with example?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU core.

    • Each thread has its own program counter, stack, and set of registers.

    • Example: A web browser using multithreading to load a webpage while simultaneously downloading images in the background.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Oops, concepts with examples?
  • Q2. Matrix rotate by 180 degrees?
  • Ans. 

    Rotate a 2D matrix by 180 degrees in place without using extra space.

    • Iterate through the matrix and swap elements symmetrically across the center row.

    • Use two pointers, one starting from the first row and the other from the last row, to swap elements.

    • Repeat the swapping process for each row until the entire matrix is rotated.

    • Example: Input matrix = [[1,2,3],[4,5,6],[7,8,9]], Output matrix = [[9,8,7],[6,5,4],[3,2,1]]

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic aptitudes question in online test

Round 2 - Coding Test 

Two coding Q online test

Round 3 - Technical 

(2 Questions)

  • Q1. Resume bsic Q asked
  • Q2. Oops question basic theory
Round 4 - One-on-one 

(2 Questions)

  • Q1. One coding question asked to solve on paper of arrays
  • Q2. Basic questions from resume
Round 5 - HR 

(2 Questions)

  • Q1. Relocating related questions
  • Q2. Why u want to join global logic
  • Ans. 

    I want to join Global Logic because of their reputation for cutting-edge technology solutions and collaborative work environment.

    • Global Logic is known for their innovative technology solutions

    • I am impressed by the collaborative work environment at Global Logic

    • I believe Global Logic offers great opportunities for professional growth and development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and little bit coding

UST Interview FAQs

How many rounds are there in UST Software Developer 1 interview?
UST interview process usually has 3-4 rounds. The most common rounds in the UST interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in UST Software Developer 1 interview?

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

  1. In this round the LSRW(Listening Speaking Reading Writing) skills are tested. ...read more
  2. The interview lasted about 30 mins and the interviewer was so much frien...read more
  3. Simple logical questions and some coding questi...read more

Tell us how to improve this page.

UST Software Developer 1 Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
View all
UST Software Developer 1 Salary
based on 143 salaries
₹3.5 L/yr - ₹6.5 L/yr
48% less than the average Software Developer 1 Salary in India
View more details

UST Software Developer 1 Reviews and Ratings

based on 18 reviews

4.2/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.3

Salary

3.8

Job security

4.3

Company culture

3.1

Promotions

4.0

Work satisfaction

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

₹2.5 L/yr - ₹12.4 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹6.5 L/yr - ₹26 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.6 L/yr - ₹14.8 L/yr

System Analyst
1.2k salaries
unlock blur

₹6.5 L/yr - ₹22.6 L/yr

Senior Software Developer
1.1k salaries
unlock blur

₹5.5 L/yr - ₹20 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