Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by UBS Team. If you also belong to the team, you can get access from here

UBS Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 2.7k Reviews

Filter interviews by

UBS Senior Sdet Engineer Interview Questions and Answers

Updated 20 Feb 2024

UBS Senior Sdet Engineer Interview Experiences

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Hackerrank and array and leetcode medium questions and nothing else

Round 2 - HR 

(2 Questions)

  • Q1. Whats you name and hobbies
  • Ans. 

    My name is Sarah and my hobbies include hiking, reading, and painting.

    • Name: Sarah

    • Hobbies: hiking, reading, painting

  • Answered by AI
  • Q2. Age and your hobbies
  • Ans. 

    I am 32 years old and my hobbies include hiking, reading, and playing the guitar.

    • Age: 32

    • Hobbies: hiking, reading, playing the guitar

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - very good company can try there
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS Concepts,Java Coding,Testing
Round 2 - Technical 

(1 Question)

  • Q1. Selenium, APIs, Automation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 medium dsa que - one is of binary search, one is from graph

Round 2 - Technical 

(2 Questions)

  • Q1. Define oops principle
  • Ans. 

    OOPs principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of different classes to be treated as instances of a common superclass.

    • Abstraction: ...

  • Answered by AI
  • Q2. Define os concepts
  • Ans. 

    OS concepts refer to fundamental principles and components of operating systems.

    • Process management - handling processes, scheduling, and resource allocation

    • Memory management - managing memory allocation, virtual memory, and paging

    • File system - organizing and accessing files on storage devices

    • Device management - controlling and communicating with hardware devices

    • Security and protection - ensuring system and data securit...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is salary expectating?
  • Ans. 

    I am looking for a competitive salary based on my experience and skills.

    • Research industry standards for SDET Engineer salaries

    • Consider my level of experience and skills

    • Factor in location and cost of living

    • Negotiate based on benefits and perks offered by the company

  • Answered by AI
  • Q2. What is your experience
  • Ans. 

    I have 5 years of experience in software development and testing, with a focus on automation and quality assurance.

    • 5 years of experience in software development and testing

    • Specialize in automation and quality assurance

    • Proficient in programming languages such as Java and Python

    • Experience with testing frameworks like Selenium and JUnit

    • Worked on various projects to improve testing processes and efficiency

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Hackerearth test 2 automata questions , 7 automata fix and 8 mcq

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant and verbal ability

Round 2 - Coding Test 

Questions from DSA and webdevelopement

Round 3 - HR 

(1 Question)

  • Q1. About my goals with the company and how will I contribute to it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and try to answer question in your own words rather than looking online for them
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Company Website and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding questions mostly related to Java and Api

Round 2 - Assignment 

Algorithm specific questions to understand approach

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding question, 1 section of business aptitude and 1 section english.

Round 2 - Technical 

(2 Questions)

  • Q1. Design a chess game.
  • Ans. 

    A classic chess game with standard rules and pieces.

    • Create a board with 8x8 squares

    • Place 16 pieces on each side: 1 king, 1 queen, 2 rooks, 2 knights, 2 bishops, and 8 pawns

    • Define the movement rules for each piece

    • Implement special moves like castling and en passant

    • Check for checkmate and stalemate conditions

    • Allow for player vs player or player vs computer gameplay

  • Answered by AI
  • Q2. N queens problem. Minimum steps by knight.
  • Ans. 

    The N Queens problem is to place N chess queens on an NxN board so that no two queens threaten each other. Minimum steps by knight is a variation of this problem.

    • The N Queens problem is a classic problem in computer science and can be solved using backtracking.

    • The minimum steps by knight variation involves placing N knights on an NxN board so that no two knights threaten each other.

    • This problem can also be solved using...

  • Answered by AI
Round 3 - Telephonic Call 

(1 Question)

  • Q1. Hr questions were asked. And location preference.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Tell truth. Know your resume well.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

DSA, Leetcode medium -2 problems

Round 2 - One-on-one 

(2 Questions)

  • Q1. Easy Leetcode Problem: Count of substrings with no repeating characters
  • Ans. 

    Count substrings with unique characters in a given string

    • Use a sliding window approach to keep track of unique characters in a substring

    • Use a set to store characters in the current window and update the window accordingly

    • Increment the count of valid substrings whenever a new character is added to the set

  • Answered by AI
  • Q2. Debugging a Java Code
  • Ans. 

    Debugging a Java code involves identifying and fixing errors in the code to ensure it runs correctly.

    • Start by understanding the error message or symptoms of the issue.

    • Use debugging tools like breakpoints, watches, and logging to track the flow of the code.

    • Review the code logic and check for common mistakes like typos, incorrect variable assignments, or logic errors.

    • Test different scenarios to reproduce the issue and na...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design Parking System
  • Ans. 

    Design a parking system with different types of parking spots

    • Create classes for different types of parking spots (e.g. compact, regular, handicap)

    • Implement methods for checking availability, reserving, and releasing spots

    • Consider implementing a parking lot class to manage all parking spots

  • Answered by AI

Skills evaluated in this interview

UBS Interview FAQs

How many rounds are there in UBS Senior Sdet Engineer interview?
UBS interview process usually has 3 rounds. The most common rounds in the UBS interview process are Aptitude Test, Coding Test and One-on-one Round.

Tell us how to improve this page.

UBS Senior Sdet Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 563 Interviews
Citicorp Interview Questions
3.7
 • 562 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Goldman Sachs Interview Questions
3.5
 • 408 Interviews
Deutsche Bank Interview Questions
3.9
 • 362 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
BNY Interview Questions
3.9
 • 334 Interviews
Morgan Stanley Interview Questions
3.7
 • 306 Interviews
Barclays Interview Questions
3.8
 • 272 Interviews
View all
Associate Director
3.1k salaries
unlock blur

₹14.8 L/yr - ₹52 L/yr

Assistant Vice President
2.4k salaries
unlock blur

₹16 L/yr - ₹50 L/yr

Authorized Officer
1.7k salaries
unlock blur

₹7.5 L/yr - ₹29.1 L/yr

Exempt NON Officer
1.5k salaries
unlock blur

₹7 L/yr - ₹27.5 L/yr

ENO
1.4k salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Explore more salaries
Compare UBS with

Morgan Stanley

3.7
Compare

Goldman Sachs

3.5
Compare

JPMorgan Chase & Co.

4.0
Compare

Deutsche Bank

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