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

Filter interviews by

UBS Software Analyst Interview Questions and Answers

Updated 3 Dec 2015

UBS Software Analyst Interview Experiences

1 interview found

Interview Preparation Tips

Round: PRE- placement
Experience: 1. The company collects resume from the placement department a few weeks before they come here and shortlist people on the basis of their resume and the projects that they have done.
2. Sometimes the cut-off at the time of test may be higher than the cut-offs of the people short-listed on the basis of resume.

Round: Test
Experience: They conducted a written-test consisting of logical aptitude, quantitative aptitude and the concepts of data structures and algorithms. There was a bonus questions for ten marks on application of OS concepts.

Round: Technical Interview
Experience: Technical interview consisted of problems on data structures and algorithms, Operating systems and Databases and whatever projects that have been mentioned in the resume.
Around 70 were shortlisted for written test from which the number came down to 22 for interviews and finally three of us got the offer with elimination at each stage of interviews.

General Tips: Placement season teaches you lot of things and many life-time experiences and the key thing during placement season is to have patience and wait for your chance. You will get what you is right for you when the right time comes so don’t lose hopes and be consistent. Luck is a big factor in placements and you will definitely have your day.
1. Prepare your resume well for each and every of the points you put there and give more than enough time in writing your resume. The presentation of your resume is equally important as the contents of the resume.
2. Attend the pre-placement talk sincerely for the companies you are interested in and ask questions in during that. It shows you are interested in the company and may help in later stages of your interviews.
3. Your dressing sense in during the PPTs is also noted by the company HR’s.
4. Knowing implementation of what you know is very important as most companies look for implementation and the most important thing during any interview will be your “Approach” towards the question asked as that’s where they judge you.
For CS
1. Be thorough with the concepts which you know and accept readily if you don’t know which is better than them telling you the same.
2. Be honest and know properly whatever you have written in your resume.
3. The HR person who comes for recruitment every year is very experienced person and he keeps a close watch on candidates even outside the interview rooms on the D-Day. Be aware for the same.
Skill Tips: 1. I had done MIT algorithms lectures at the end of my second year and those lectures were very useful at all the stages of my B.Tech. Apart from that I referred “Coding Interview Questions book by Narsimha Karumanchi” for quick revision of OS and DBMS concepts.
2. The coursera video lectures of Algorithms (part I and II from stanford), Computer Networks and of Databases are equally good and very useful in general for all companies.
3. For apti preparation I didn’t feel any need of extra preparation.
4. C-Apti questions are very important as well as coding skills being good in which will get you many early chances of being interviewed and getting a job.
5. I had looked into puzzles by Shakuntala Devi and the Brain Teasers on careercup.com.

For me on that day I had five back to back interviews on the D-day of which two were for Futures First and three were for Credit Suisse and the experience was more than rewarding at the end. I started getting call for Futures First interview when I was writing my Credit Suisse written paper and I didn’t know how the day is going to be for me. But believe me when they announce your name in the Rooms of Placement Department, which is the best feeling you can get when someone calls your name.

Skills:
College Name: NIT Surathkal

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Asked many Dbsa questions. You need to be thorough about the joins in the databases.

Interview Preparation Tips

Round: Test
Experience: Practice questions on Indiabix.

Round: Technical Interview
Experience: Operating Systems basics, Dbsa basics

General Tips: 1: Be Confident.
2: Keep Smiling.
3: Do not be Panic.
4: Remember they are here to hire you but not reject you.
5: Do not loose hope.
6: Believe at yourself.
7: Start preparing early.
8: Do demo interviews with your friend.
Skill Tips: Make sure you do a course on object oriented programming
Skills: C, Sql, Java
College Name: BITS PILANI
Motivation: Every body joins a comapny for making a software or earning money. But I was always motivated to MAKE MONEY. I have taken this job because they have very extensive work in Share Market and they have lots of MBA from IIM's, Lots of CAs, CS. Thats why i have choosen Edelweiss. I have rejected epic System USA for this profile.

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Technical + HR Interview
Experience: There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products. The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.

Round: Case Study Interview
Experience: The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study:

Interview Questionnaire 

2 Questions

  • Q1. Oops, os, dbms, project
  • Q2. Why hsbc, why should I hire you.
  • Ans. 

    I have a strong background in software engineering and a passion for innovation, making me a valuable asset to HSBC.

    • I have a proven track record of successfully delivering high-quality software solutions in previous roles.

    • I am highly skilled in various programming languages and technologies, including Java, Python, and SQL.

    • I have experience working in agile development environments, allowing me to adapt quickly to chan...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 4 sections, 15 questions each. Sections on apti, english, programming, technical.
Tips: Time management, complete english and technical first
Duration: 1 hour
Total Questions: 60

Round: Group Discussion
Experience: We were asked which super hero would you like to be. Shared the information. Always present the positives and negatives and emphasize that despite of being negatives
Tips: Think everything through before speaking
Duration: 40 minutes

Round: Technical Interview
Experience: Prepare well, anything can be asked on the things written on your resume

Round: HR Interview
Experience: Sell yourself. Tell them why you would be the best candidate.
Tips: Tell your advantages of being a fresher that you would be comfortable in any technology

College Name: Acropolis institute of technology and research

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions on DSA and OS.

  • Q1. 

    LRU Cache Design Problem Statement

    Design and implement a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    • get(key) - Retrieve the value associated with the...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure that supports get and put operations with a specified capacity.

    • Implement a doubly linked list to keep track of the order of keys based on their usage.

    • Use a hashmap to store key-value pairs for quick access and updates.

    • When a key is accessed or updated, move it to the front of the linked list to mark it as the most recently used.

    • When the cache reaches...

  • Answered by AI
  • Q2. 

    Maximum of All Subarrays of Size K

    Given an array of non-negative integers and an integer K representing the length of a subarray, your task is to determine the maximum elements for each subarray of size ...

  • Ans. 

    Find the maximum elements for each subarray of size K in a given array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque that are out of the current window.

    • Keep track of the maximum element in each subarray of size K.

    • Return the maximum elements for each subarray.

  • Answered by AI
  • Q3. What is virtual memory?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to compensate for physical memory shortages by temporarily transferring data from RAM to disk storage.

    • Virtual memory allows programs to use more memory than is physically available on the system.

    • It helps in multitasking by allowing multiple programs to run simultaneously without running out of memory.

    • Virtual memory uses a combination of RAM and disk...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAGoldman Sachs interview preparation:Topics to prepare for the interview - Coding Skills, Operating Systems , Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Round 1 - Group Discussion 

Generic topics that were trending at the time

Round 2 - One-on-one 

(1 Question)

  • Q1. Puzzle round - aptitude
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Round - coding related questions
Round 4 - Group Discussion 
Pro Tip by AmbitionBox:
Be a good listener. GDs are not just about speaking. Your listening skills will give you a lot of points to counter and speak when your turn comes.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and ensure you're clear with job requirements to clear rounds

I applied via Campus Placement and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Few DSA questions, questions about my projects and my resume. Also, since I specialise in python, if I could create an API using it. HR questions, hobbies, leadership experience...

Interview Preparation Tips

Interview preparation tips for other job seekers - Understanding the culture of J.P. Morgan Chase played a big role in passing the interview. The coding questions were easy/medium level. The interviewers were very friendly.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be 100% technical in java here they will not be any support u need to dig deep lot of complex modules which we cannot understand in depth

Interview Questionnaire 

1 Question

  • Q1. Questions on angular framework,.net core , dependency injection,legacy .net, session management , agile ceremonies.

I applied via LinkedIn and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. - Data Structures and Algo - Core Python specific questions
  • Q2. - Design a Cache and some design based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I actually attended a Weekend drive. So in the 1st round almost related to 2/3 DS Algo questions.
2nd round was related to design small cache and little bit on python questions.
3rd round was managerial and some basic technical questions.

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 565 Interviews
Citicorp Interview Questions
3.7
 • 564 Interviews
HSBC Group Interview Questions
3.9
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Deutsche Bank Interview Questions
3.9
 • 362 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
BNY Interview Questions
3.9
 • 342 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Barclays Interview Questions
3.8
 • 269 Interviews
View all
Associate Director
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Vice President
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Authorized Officer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Exempt NON Officer
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

ENO
1.4k salaries
unlock blur

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