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 Business Technology Analyst Interview Questions, Process, and Tips

Updated 11 Mar 2022

Top UBS Business Technology Analyst Interview Questions and Answers

  • Q1. Convert Min Heap to Max Heap Problem Statement Given an array representation of a min-heap of size 'n', your task is to convert this array into a max-heap. Input: The fi ...read more
  • Q2. What is a dangling pointer? What if we try to dereference it?
  • Q3. How is runtime polymorphism implemented?How does the compiler understand this?
View all 17 questions

UBS Business Technology Analyst Interview Experiences

2 interviews found

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on OOPS Concepts.

  • Q1. What are the types of polymorphism in Object-Oriented Programming?
  • Ans. 

    Types of polymorphism in OOP include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).

    • Compile-time polymorphism: achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism: achieved through method overriding, where a subclass provides a specific implementation of a method defined in its superclass.

    • Example: Compi...

  • Answered by AI
  • Q2. What is function overloading?
  • Ans. 

    Function overloading is when multiple functions have the same name but different parameters or return types.

    • Function overloading allows multiple functions with the same name to be defined in a class or namespace.

    • The functions must have different parameters or return types to be considered overloaded.

    • Example: void print(int num) and void print(string text) are overloaded functions with the same name 'print'.

  • Answered by AI
  • Q3. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function in a derived class.

    • Virtual functions allow for dynamic polymorphism in object-oriented programming.

    • They are used to achieve runtime binding and enable the implementation of the concept of function overriding.

    • Virtual functions are typically used in inheritance hierarchies to provide a common ...

  • Answered by AI
  • Q4. What are templates in C++?
  • Ans. 

    Templates in C++ are a feature that allows for generic programming by creating reusable code.

    • Templates allow for writing generic functions or classes that can work with any data type.

    • Templates are defined using the 'template' keyword followed by the template parameter list.

    • Example: template <class T> T add(T a, T b) { return a + b; }

  • Answered by AI
  • Q5. What is a null pointer?
  • Ans. 

    A null pointer is a pointer that does not point to any memory location.

    • A null pointer is typically used to indicate that the pointer does not have a valid target.

    • Dereferencing a null pointer can lead to a segmentation fault or program crash.

    • In C/C++, a null pointer is represented by the value 0 or nullptr.

    • Null pointers are commonly used in programming to represent the absence of a valid pointer.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with OOPS based questions mainly.

  • Q1. What is a dangling pointer in C?
  • Ans. 

    A dangling pointer in C is a pointer that points to a memory location that has been deallocated, leading to potential crashes or undefined behavior.

    • Dangling pointers occur when memory is deallocated but the pointer is not updated or set to NULL.

    • Accessing a dangling pointer can result in reading or writing to invalid memory locations.

    • Example: int *ptr = malloc(sizeof(int)); free(ptr); *ptr = 10; // Accessing a dangling

  • Answered by AI
  • Q2. What is a V-table?
  • Ans. 

    A V-table is a data structure used in object-oriented programming to store virtual functions for dynamic binding.

    • V-table stands for virtual table.

    • It is used in object-oriented programming languages like C++ to implement polymorphism.

    • Each class with virtual functions has its own V-table.

    • V-table contains pointers to the virtual functions of the class.

  • Answered by AI
  • Q3. 

    Convert Min Heap to Max Heap Problem Statement

    Given an array representation of a min-heap of size 'n', your task is to convert this array into a max-heap.

    Input:

    The first line of input contains an int...
  • Ans. 

    Convert a given min-heap array into a max-heap array.

    • Iterate through the given min-heap array and build a max-heap array by swapping elements.

    • Start from the last non-leaf node and heapify down to maintain the max-heap property.

    • Ensure that the output array satisfies the max-heap property.

    • Example: For min-heap [1,2,3,6,7,8], the max-heap would be [8,7,3,6,2,1].

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was management interview round. Make sure you know everything on your resume. Most questions are based on your resume.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACredit Suisse interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS , Aptitude, OOPSTime required to prepare for the interview - 6 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 interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

22 Questions

  • Q1. What is a NULL pointer
  • Ans. 

    A NULL pointer is a pointer that does not point to any memory location.

    • It is represented by the value 0 or NULL.

    • Dereferencing a NULL pointer results in a segmentation fault.

    • It is commonly used to indicate the end of a linked list or array.

  • Answered by AI
  • Q2. What is a dangling pointer? What if we try to dereference it?
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated or freed. Dereferencing it can cause a program to crash.

    • Dangling pointers occur when memory is freed or deallocated, but the pointer still points to that memory location.

    • Dereferencing a dangling pointer can cause a segmentation fault or access violation.

    • Dangling pointers can be avoided by setting the pointer to NULL after freeing

  • Answered by AI
  • Q3. What is a V-table?
  • Ans. 

    A V-table is a virtual table used in programming languages to implement polymorphism.

    • It is used in object-oriented programming languages like C++ and Java.

    • It contains pointers to functions that can be overridden by derived classes.

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

    • It is used to implement dynamic binding or late binding.

    • It is also known as a virtual function table or d

  • Answered by AI
  • Q4. How will you convert Minheap to Maxheap(This question was based on the answer dat data structures is my favourite subject)
  • Q5. -Project description
  • Q6. Questions based on the various college fests/evemts you had participated
  • Q7. Data comes from the server in real time which passes through a decoder and then onto the display panel.Since data rate is not fixed, what should be done so that the display of data on the display panel is ...
  • Q8. What is polymrphism
  • Ans. 

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

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

    • It is achieved through method overriding and method overloading.

    • Examples include method overriding in inheritance and implementing interfaces in Java.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
  • Q9. What are templates
  • Ans. 

    Templates are pre-designed documents or files that serve as a starting point for creating new documents or files.

    • Templates can be used for various purposes such as creating resumes, business cards, invoices, and presentations.

    • They save time and effort by providing a pre-designed layout and structure.

    • Templates can be customized to fit specific needs and preferences.

    • They are commonly used in software applications like Mi...

  • Answered by AI
  • Q10. What is virtual function
  • Ans. 

    A virtual function is a function in a base class that is overridden in a derived class.

    • Virtual functions allow polymorphism in C++

    • They are declared using the virtual keyword

    • The function is resolved at runtime based on the object type

    • Virtual functions can be pure virtual, meaning they have no implementation in the base class

    • Example: virtual void print() = 0; // pure virtual function

  • Answered by AI
  • Q11. How is runtime polymorphism implemented?How does the compiler understand this?
  • Ans. 

    Runtime polymorphism is implemented through virtual functions and dynamic binding.

    • Virtual functions are declared in base class and overridden in derived class

    • Dynamic binding is used to determine which function to call at runtime

    • Compiler uses virtual function table to understand runtime polymorphism

  • Answered by AI
  • Q12. Difference between function overloading and overriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in the base class.

    • Function overloading is a compile-time polymorphism concept.

    • Function overriding is a run-time polymorphism concept.

    • Function overloading is used to provide different ways of calling the same function...

  • Answered by AI
  • Q13. How function overloading works
  • Ans. 

    Function overloading allows multiple functions with the same name but different parameters.

    • Functions with the same name but different parameters can be defined in the same scope

    • The compiler determines which function to call based on the number and types of arguments passed

    • Overloading can improve code readability and reduce the need for multiple function names

    • Example: void print(int x), void print(float x), void print(c...

  • Answered by AI
  • Q14. Tell me about yourself
  • Ans. 

    I am a Business Technology Analyst with experience in analyzing data and developing solutions to improve business processes.

    • Experienced in data analysis and solution development

    • Skilled in identifying business process improvements

    • Proficient in using technology to drive business growth

  • Answered by AI
  • Q15. What is equity,derivative etc
  • Ans. 

    Equity refers to ownership in a company, while derivatives are financial contracts based on the value of an underlying asset.

    • Equity represents ownership in a company and can be in the form of stocks or shares.

    • Derivatives are financial contracts that derive their value from an underlying asset such as stocks, bonds, or commodities.

    • Examples of derivatives include futures, options, and swaps.

    • Derivatives are often used for...

  • Answered by AI
  • Q16. Tell me in 60 secs why we should hire you
  • Ans. 

    I am a highly analytical and tech-savvy individual with a passion for problem-solving and a track record of delivering results.

    • I have a strong background in technology and business analysis, which allows me to bridge the gap between IT and business stakeholders.

    • I am a quick learner and can adapt to new technologies and processes easily.

    • I am a team player and can work collaboratively with cross-functional teams to achie...

  • Answered by AI
  • Q17. -What drives you every morning
  • Ans. 

    The desire to learn and grow every day.

    • I am driven by the opportunity to learn new things and expand my knowledge.

    • I am motivated by the chance to make a positive impact on the world through my work.

    • I am inspired by the people around me who are passionate about what they do.

    • I am energized by the challenge of solving complex problems and finding innovative solutions.

    • I am excited by the prospect of personal and profession...

  • Answered by AI
  • Q18. Favourite book?Why?
  • Ans. 

    My favourite book is 'The Alchemist' by Paulo Coelho.

    • I love the book's message about following your dreams and finding your purpose in life.

    • The story is beautifully written and has a lot of depth and meaning.

    • It's a book that I can read over and over again and still find something new to take away from it.

    • The characters are relatable and the plot is engaging.

    • The book has inspired me to pursue my own passions and take ri

  • Answered by AI
  • Q19. Some scenario in which u had to face a conflicting situation( Where u handled it on ur own)
  • Q20. Scenarios for a manager to handle
  • Ans. 

    Managers may face various scenarios in their work. Here are some pointers to handle them.

    • Identify the problem and its root cause

    • Develop a plan of action

    • Communicate effectively with team members

    • Delegate tasks appropriately

    • Monitor progress and adjust plan as needed

    • Provide feedback and recognition

    • Handle conflicts and difficult conversations

    • Stay organized and prioritize tasks

  • Answered by AI
  • Q21. Conflicting scenarios in which manager does not listens to u, or u r a manager and ur subordinates disagree. -which offers have you got
  • Ans. 

    In conflicting scenarios where a manager does not listen or subordinates disagree, I have experience in finding common ground and communicating effectively.

    • I have experience in active listening and finding common ground to resolve conflicts

    • I am skilled in effective communication and can articulate my perspective clearly

    • I am open to feedback and willing to consider alternative viewpoints

    • I have successfully navigated sim...

  • Answered by AI
  • Q22. Which will you prefer and why
  • Ans. 

    I would prefer a job that challenges me and allows me to learn new skills.

    • I value opportunities for growth and development

    • I am open to new experiences and challenges

    • I want to work in an environment that encourages learning

    • Examples: a job that involves working with new technologies or a job that requires problem-solving skills

  • Answered by AI

Interview Preparation Tips

Round: Other Interview
Experience: it was management interview
Tips: -Make sure you know everthing on your resume.Most questions are based on your resume

College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Skills evaluated in this interview

Business Technology Analyst Interview Questions Asked at Other Companies

asked in ZS
Q1. Ways To Make Coin Change Given an infinite supply of coins of var ... read more
asked in Deloitte
Q2. Sort 0 1 2 Problem Statement Given an integer array arr of size ' ... read more
asked in Deloitte
Q3. Bursting Balloons Problem Given an array ARR of size N, where eac ... read more
asked in ZS
Q4. Diagonal Order Problem Statement Given a 2D matrix, output all el ... read more
asked in ZS
Q5. What SQL query would you use to generate a report of customer chu ... read more

Interview questions from similar companies

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Very interesting
Tips: Can set more difficult problems
Duration: 120 minutes

General Tips: The company is good and knows very well how to select their employees
Skills: General Knowledge, Generic Math Puzzles, 1)communication Skills, Leadership Skills
Duration: 2
College Name: IIT Madras
Motivation: The skills which I'll acquire by joining this company would be very useful for my corporate culture. It requires leaders and not workers and that is what my dream is, to become a global leader and to create an impact on people

I applied via Naukri.com and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Be well prepared for technical round as this will be a make or break for you

Interview Preparation Tips

Topics to prepare for HSBC Group Business Analyst interview:
  • Technical
Interview preparation tips for other job seekers - Prepare well for technical round

I applied via LinkedIn and was interviewed before Sep 2021. 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 

Company analysis based project

Round 3 - HR 

(2 Questions)

  • Q1. Questions related to college extra curricular and the some basic HR questions
  • Q2. Why do you want this internship
  • Ans. 

    I want this internship because it aligns with my career goals and provides valuable hands-on experience.

    • The internship offers the opportunity to work with experienced professionals in the field.

    • It will allow me to apply and enhance my skills and knowledge in a practical setting.

    • I am eager to learn from the company's industry-leading projects and contribute to their success.

    • This internship will provide me with a deeper ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prep the topics related to the role applying and basic HR questions

Interview Questionnaire 

1 Question

  • Q1. It was mostly about the instrument reference data and typical business analyst question about change management, BRD, Agile and technology we use.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding questions with system design questions and puzzles were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume up to date. Do not add unnecessary stuff to your resume else they will easily catch you. Be as real as yo can. You should know some languages of your interest and should have relevant work experience in that.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are the types of derivatives?
  • Ans. 

    Derivatives are financial instruments that derive their value from an underlying asset or security.

    • Types of derivatives include futures, options, swaps, and forwards.

    • Futures are contracts to buy or sell an asset at a predetermined price and date.

    • Options give the buyer the right, but not the obligation, to buy or sell an asset at a predetermined price and date.

    • Swaps involve exchanging cash flows based on different finan...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Derviatives and structure of funds.

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume had a couple of projects and a paper publication added to it, which was a part of my second year intern at TCS Innovation Labs.

Tips: I believe that the resume shortlist to appear for the test is just a formality and not a big deal to get through. Most of the students are allowed to appear for the test which is where, the main shortlisting occurs.
Although, the company does cut off people from certain departments. For example, none of the Agriculture and food engineering students were shortlisted for appearing for the test.
Also, from what I have heard, the company runs resumes through a program to take out the shortlist. Hence, certain key words such as "Scholar" or "Conference" may get you a good chance to get through the shortlisting.

Round: Test
Experience: The test is mainly quant based and how fast you can think and rationalize. They expect excellent speed; they ask you 20 questions to be answered in 30 minutes.
Tips: Normally, if a student is asked to appear for this right after his JEE examination, he would be able to get through it easily. But since our analytical thinking goes way down once we actually get in, it has to be worked upon again. I'd suggest you to solve all the quant questions of any CAT preparatory book for the American Express test. The test questions are quite similar to those that the CAT students prepare for.

Round: Technical Interview
Experience: In general, the American Express interviews are considered to be pretty peaceful compared to the interviews of other companies. I was just asked about my work at TCS Innovation Labs and the paper I would be publishing based on that work and the courses I have done in Data Analytics and what all do I know in it. They do not test the knowledge you say you possess.
Tips: While I was preparing for my interview, I was told to read about Amex and its products. Secondly, and most importantly, I was aksed to read a lot about credit card frauds and suggest ways of preventing that. Even during my time, a lot of people were asked about this and judged severely on that. This is a must must if you would be appearing for its interview.

Also, you would do well if you are able to connect with the interviewer. For instance, if both of you have been a part of the same inter IIT or have the same tastes, etc.

Also, the interviews are that peaceful that you are able to direct the interview in your favour. There are certain parts of your CV that you can easily talk about and certain parts that you would want to avoid. If you are able to think on your feet, it is easy to re direct the interview in your favour and the things that you would like to talk about; in my case, it was my work at TCS.

Round: Puzzle Interview
Experience: The main decision whether you have to be taken in or not is decided in your first round of interview after which, the puzzle interview is just a formality and to find out whether you are able to think on your feet or not. Not a big deal, pretty easy.
Tips: Nothing to be worried about, the puzzles asked are pretty easy and most probably, you would have already heard them if you have a nag of solving puzzles.

General Tips: Do not worry or stress yourself much. The interview is pretty easy if you have an edge in the skills that the company wants. I had started studying Data Analytics in my second year summer vacations, just 1 hour a day for hardly about a month. Which gave me enough of an edge. The main hurdle lies in getting through the test round where about 300 people are simply cut off.
Skill Tips: You should be able to code efficiently. Knowledge in Python and SQL is a big plus.
Also, I had done a course on Coursera called "Machine Learning" of Stanford University. Today, the company does not expect a lot of knowledge in Data Analytics from students which is why this course gave me the edge I needed to get through the interview. It's a pretty easy course and not very demanding. I would recommend this if you want to find out even whether you'd be interested in Data Analytics or not.
I was asked about the things I know and whether I have ever implemented them.
Skills: Analytics And Coding
Duration: 2
College Name: IIT Kharagpur
Motivation: American Express is known to have a good working culture and is currently the third best company to work for in India. The internship stipend is largest compared to any other company in India along with accommodation and travel. The company has a well structured internship program and also has good challenging work to offer.
Funny Moments: After the test, I was not shortlisted for the interview round.. Which broke my heart.
Just after the presentation, I walked up to the person presenting and handed him a hard copy of my resume asking him to at least give me a shot at the interview if they think my profile is good enough.
I believe that this was a turning point of this entire experience. I believe, at that moment itself, I gained their favour to take me in. Which is probably why my interview was peaceful, which is probably why I could get through even though my interview was the last among a bunch of 25 students..

I appeared for an interview in Jan 2017.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to join Citi?
  • Ans. 

    I want to join Citi because of its global presence, strong reputation, and opportunities for growth.

    • Citi is a global company with a presence in over 100 countries, which provides an opportunity to work with diverse teams and gain international exposure.

    • Citi has a strong reputation in the financial industry, known for its expertise and innovative solutions.

    • Citi offers excellent career development opportunities, includin...

  • Answered by AI
  • Q2. 2. Why do you want a career in banking? And not consulting or finance?
  • Ans. 

    I am interested in a career in banking because of the opportunities for growth, the dynamic nature of the industry, and my passion for financial analysis.

    • Opportunities for growth: Banking offers a wide range of career paths and opportunities for advancement. I am excited about the potential to develop my skills and progress within the industry.

    • Dynamic nature of the industry: Banking is constantly evolving, with new tec...

  • Answered by AI
  • Q3. 3. How has the Indian Economy performed in the past 2 years?
  • Ans. 

    The Indian economy has experienced mixed performance in the past 2 years.

    • GDP growth rate has fluctuated

    • Demonetization and GST implementation impacted the economy

    • Unemployment rate has been a concern

    • Inflation has remained relatively low

    • Foreign direct investment has increased

    • Agricultural sector faced challenges due to weather conditions

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume had gotten shortlisted for the profile of an Analyst. This was the first stage.

Round: Group Discussion
Duration: 20 minutes

College Name: Lady Shri Ram College

UBS Interview FAQs

How to prepare for UBS Business Technology Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at UBS. The most common topics and skills that interviewers at UBS expect are Agile Coaching, Analytical Chemistry, IT Asset Management, Project Management and SQL Server Reporting Services.
What are the top questions asked in UBS Business Technology Analyst interview?

Some of the top questions asked at the UBS Business Technology Analyst interview -

  1. What is a dangling pointer? What if we try to dereference ...read more
  2. How is runtime polymorphism implemented?How does the compiler understand th...read more
  3. difference between function overloading and overrid...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 572 Interviews
Citicorp Interview Questions
3.7
 • 572 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
Morgan Stanley Interview Questions
3.6
 • 292 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
View all
Associate Director
3.4k salaries
unlock blur

₹14.8 L/yr - ₹53.5 L/yr

Assistant Vice President
2.3k salaries
unlock blur

₹16 L/yr - ₹49 L/yr

Authorized Officer
1.8k salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Exempt NON Officer
1.5k salaries
unlock blur

₹6.8 L/yr - ₹29.1 L/yr

ENO
1.3k salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Explore more salaries
Compare UBS with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

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