Upload Button Icon Add office photos

Filter interviews by

Unique Connections Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Data Analyst Interview Questions & Answers

ClarityTTS user image ronald chrishton

posted on 25 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview before Feb 2023.

Round 1 - Aptitude Test 

Bsaic questions about python and other

Round 2 - Coding Test 

Python basic questions

Round 3 - Technical 

(1 Question)

  • Q1. Case studies and technical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - Coding Test 

Written and programming tests for problem statements.

Round 2 - Assignment 

You can select any industry-related problem and develop a project based on it.

Round 3 - Aptitude Test 

Some logical problems will be provided and need to be solved.

Round 4 - HR 

(1 Question)

  • Q1. HR will take personal interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Percentage, Profit & Loss,

Round 2 - Coding Test 

List, for loop, try-except block, Recursion, Sort the numbers without using inbuilt functions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

One hour for date-time serialization.

Round 2 - Coding Test 

1 hour
pattern program

Interview Preparation Tips

Interview preparation tips for other job seekers - Get some knowledge on some framework and also some advance technologies too.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test and a three-hour examination on fundamentals of programming languages, databases, and machine learning.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Html, css, javascript questions
  • Q2. Javascript framework related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Core php and oops concepts
  • Q2. Laravel framework basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Project handling methods
  • Ans. 

    Effective project handling methods ensure timely delivery, quality, and team collaboration in software development.

    • Agile Methodology: Focuses on iterative development and customer feedback. Example: Scrum framework for managing sprints.

    • Waterfall Model: A linear approach where each phase must be completed before the next begins. Example: Traditional software development.

    • Kanban: Visualizes work in progress to optimize fl...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

I applied via Recruitment Consulltant and was interviewed in Aug 2021. There were 5 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 

English

Round 3 - Assignment 

English writing skills

Round 4 - One-on-one 

(1 Question)

  • Q1. Introduction about self
Round 5 - HR 

(1 Question)

  • Q1. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume and your previous experience.

I applied via Referral

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 

It was quite easy, written test,some multiple choice questions

Round 3 - HR 

(2 Questions)

  • Q1. Previous work history, introduction,about fragomen What is your Salary expectations? How you able to manage pressure? What is your commitment to our company?
  • Q2. What is your salary expectations? What is your commitment to company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Average interview just perform well you will get the job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Excel assignment was given
Round 2 - Technical 

(1 Question)

  • Q1. Create a dashboard using Power Bi or Tableau.
  • Ans. 

    Create a dashboard using Power Bi or Tableau

    • Gather relevant data sources for analysis

    • Identify key performance indicators (KPIs) to track

    • Design visually appealing and user-friendly dashboard

    • Utilize interactive features for data exploration

    • Include filters and slicers for customization

    • Consider audience needs and tailor dashboard accordingly

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Basically a hackerrank link was shared and I was suppose to take the test within a day. Online Test comprised of 3 algorithmic Questions. Duration of round was 90 minutes.
 

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of ways to make change for each value up to the specified value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be in the last cell of the array correspond

  • Answered by AI
  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the length of the longest increasi

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

It was a 60 minute virtual face 2 face round with 2 senior software engineers of the company. Interview started with brief introduction by the engineers followed by my Introduction. Interview started at 3:00 P.M and lasted till 4:10 P.M. Google Doc was used for coding purposes.

  • Q1. 

    Search Element in a Rotated Sorted Array

    Given a sorted array that has been rotated, the task is to find the index of a specific element. The array is initially sorted in ascending order and then rotated ...

  • Ans. 

    Search for an element in a rotated sorted array in O(logN) time complexity.

    • Implement binary search to find the pivot point where rotation occurs.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the element lies in the left or right subarray after rotation.

  • Answered by AI
  • Q2. 

    Construct Binary Tree from Parent Array Representation

    Given an array parent which represents a binary tree, the parent-child relationship is defined by (PARENT[i], i), meaning that the parent of i is PAR...

  • Ans. 

    Construct a binary tree from parent array representation ensuring specific conditions are met.

    • Iterate through the parent array to create the binary tree

    • Handle cases where a node has both left and right children

    • Ensure left child is smaller than the right child if both exist

    • If a node has only one child, make it the left child

  • Answered by AI
Round 3 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was a face 2 face algorithmic round taken by Senior Backend engineer. Interview Round Started at around 2:00 P.M and lasted till 3:05 P.M. Interview started with the brief introduction followed by 2 algorithmic questions. Interviewer was focusing problem solving skills. After discussing the approach, Coding part was to be done on google doc.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum that can be obtained from a path in a matrix from the first row to the last row.

    • Use dynamic programming to keep track of the maximum sum at each cell in the matrix.

    • Consider moving down, diagonally left, and diagonally right to calculate the maximum sum.

    • Start from the second row and update each cell with the maximum sum from the cell above it and the diagonally adjacent cells.

    • Continue this process u...

  • Answered by AI
  • Q2. 

    Partition Equal Subset Sum Problem

    Given an array ARR consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that the sum of the elements in both sub...

  • Ans. 

    The problem is to determine if it is possible to partition an array into two subsets with equal sum.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store if a subset with a particular sum is possible.

    • Check if it is possible to form a subset with half the total sum of the array.

  • Answered by AI
Round 4 - Coding Test 

Round duration - 120-130 minutes
Round difficulty - Medium

It was a face 2 face round which was taken by Line manager. Interview started at 11:00 A.M and lasted around 2 hours approx. Interviewer was very friendly and supportive. Interview started with brief introduction of the interviewer followed by mine. Then a System design question was asked by the interviewer over google doc. Interviewer was focusing on how I'm approaching the problem. Overall It was a good experience.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaTraveloka interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object Oriented Design, LLD & HLD, Operating System, Computer Networks, DBMSTime required to prepare for the interview - 3-4 monthsInterview preparation tips for other job seekers

Tip 1 : We should focus on other topics apart from DSA. Knowledge of LLD, HLD, OOPS and other subjects also plays a very important role. 
Tip 2 : Communication also plays a key role in interviews. We should be able to explain our solution precisely and also able to catch hints given by Interviewer.
Tip 3 : While practising DSA focus should be on logic building rather than cramming the solution because proper reasoning will hep you to solve other new questions.
Tip 4 : Always remember interview is two way communication.

Application resume tips for other job seekers

Tip 1 : Mention only those projects and skills in which you are confident.
Tip 2 : Resume should be of one page(preferrable).

Final outcome of the interviewSelected

Skills evaluated in this interview

Unique Connections Interview FAQs

How to prepare for Unique Connections 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 Unique Connections. The most common topics and skills that interviewers at Unique Connections expect are Market Research, New Product Development, Product Costing, Product Design and Product Engineering.

Tell us how to improve this page.

Interview Questions from Similar Companies

ClarityTTS Interview Questions
4.1
 • 15 Interviews
P&O Cruises Interview Questions
4.0
 • 10 Interviews
Traveloka Interview Questions
3.7
 • 9 Interviews
ATPI Interview Questions
4.0
 • 7 Interviews
Utazzo.com Interview Questions
4.7
 • 3 Interviews
JustWravel Interview Questions
4.0
 • 3 Interviews
View all
Product Engineering Head (Design)

Chennai,

Bangalore / Bengaluru

15-20 Yrs

Not Disclosed

UNICA Campaign Management Professionals :

Chennai

4-8 Yrs

Not Disclosed

Explore more jobs
Compare Unique Connections with

P&O Cruises

4.0
Compare

Costa Cruise Lines

4.2
Compare

Carzonrent

3.5
Compare

Fragomen Immigration Services

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