Upload Button Icon Add office photos

Filter interviews by

Survey2Connect Interview Questions, Process, and Tips

Updated 26 Oct 2023

Top Survey2Connect Interview Questions and Answers

Survey2Connect Interview Experiences

Popular Designations

3 interviews found

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

I applied via campus placement at Maharaja Surajmal Institute of Technology, Delhi and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. There are 3 technical rounds 1st is face and remaining are online .In first round they will ask questions related to project on resume and basic dsa of string manipulation
  • Q2. String manipulation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics 1st round is aptitude includes of 25 questions based or English, general reasoning and the 3 technical rounds.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. How did you tackle a client escalation, and how did you manage to extend customer loyalty and retention?
  • Ans. 

    I addressed a client escalation by actively listening, empathizing, and providing a timely solution. I then followed up to ensure satisfaction and retention.

    • Actively listened to the client's concerns and empathized with their frustrations

    • Provided a timely solution that addressed their specific needs

    • Followed up with the client to ensure their satisfaction and continued loyalty

    • Offered additional resources or support to p...

  • Answered by AI
  • Q2. How do you plan your day-to-day schedule and prioritise several points of action?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be thorough with your résumé and the positions' job description.

Customer Success Manager Interview Questions asked at other Companies

Q1. How do you manage if 2 or 3 or even more tasks spontaneously are assigned upon?
View answer (2)

I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Find all the pairs present in an array
  • Ans. 

    The question asks to find all the pairs present in an array of strings.

    • Iterate through the array and compare each element with all other elements to find pairs.

    • Store the pairs in a separate array or data structure.

    • Consider the order of elements in pairs, i.e., (A, B) is different from (B, A).

  • Answered by AI
  • Q2. Number of Steps required to reach top of stairs of length n where person can make either 1 or 2 steps at a time.
  • Ans. 

    The number of steps required to reach the top of a staircase of length n can be calculated using dynamic programming.

    • Use dynamic programming to solve the problem

    • Create an array to store the number of steps required for each position

    • Initialize the first two positions with 1 and 2

    • Iterate through the remaining positions and calculate the number of steps based on the previous two positions

    • Return the number of steps require

  • Answered by AI
  • Q3. Print left view of binary tree
  • Ans. 

    Print the left view of a binary tree

    • Traverse the tree in pre-order traversal

    • Print the first node encountered at each level

    • Maintain a level variable to keep track of current level

    • Recursively traverse left subtree first

  • Answered by AI
  • Q4. Print left most node of each level by doing BFs
  • Ans. 

    Print the leftmost node of each level using BFS.

    • Implement BFS algorithm to traverse the tree level by level.

    • Keep track of the leftmost node of each level.

    • Print the leftmost node of each level after traversal is complete.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Survey2Connect Technical Trainee interview:
  • Data Structures
  • Web Technologies
Interview preparation tips for other job seekers - Be Honest and do some background check on the company. Prepare for OOPS & Database mangement as well.

Skills evaluated in this interview

Technical Trainee Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (5)

Jobs at Survey2Connect

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

The test consists of 60 questions to be answered in 50 minutes, primarily focusing on basic aptitude, and does not require any preparation.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with senior manager a single guesstimate and few questions around resume
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with AVP also a single guesstimate and few questions around resume and previous experience
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with VP/business lead a quick intro and a simple case study and culture fit kinda round

Interview Preparation Tips

Interview preparation tips for other job seekers - If you consider yourself to be a diligent yet hardworking individual with minimal operational experience, you can easily crack it.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Monster and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Self introduction
  • Q2. Self introduction
  • Q3. Personal details
  • Q4. Personal details
Round 2 - HR 

(3 Questions)

  • Q1. Education family background
  • Q2. Education family background
  • Q3. Personal information
Round 3 - One-on-one 

(2 Questions)

  • Q1. Story reading and writing
  • Q2. Graping information
Round 4 - Technical 

(2 Questions)

  • Q1. Code Speed type
  • Q2. Having good attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Good knowledge, spreading knowledge
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789"...
  • Ans. 

    Calculate sum of large numeric comma separated strings without converting to integers.

    • Split the strings by comma to get individual numbers

    • Iterate from right to left and add digits, carrying over if necessary

    • Maintain correct position of commas in the output string

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. It was Low Level Design Round. Question - Design a file system just like google drive. Functional Requirements - i) It should have functionality of file uploading, downloading, sharing. ii) Need to handle...
Round 3 - Technical 

(5 Questions)

  • Q1. It was Hiring Manager round and it tested my knowledge over HLD & LLD. Tell me about the most challenging project which you did till now. Follow Up Questions - i) Draw HLD & write LLD of it. ii) How muc...
  • Q2. What all initiatives I have taken in my career?
  • Ans. 

    I have taken various initiatives in my career to improve processes and drive innovation.

    • Led a team to implement a new agile development process, resulting in faster delivery of products

    • Introduced automated testing tools to improve software quality and reduce manual effort

    • Organized coding workshops for junior developers to enhance their skills and knowledge

    • Initiated a mentorship program to help new hires acclimate to th

  • Answered by AI
  • Q3. How many microservices do I own & at what scale they handle the traffic?
  • Ans. 

    I own 5 microservices that handle traffic at a scale of 10,000 requests per minute.

    • I own 5 microservices

    • They handle traffic at a scale of 10,000 requests per minute

  • Answered by AI
  • Q4. Tell me the incidents where you went beyond your limits for the work
  • Ans. 

    I have consistently gone above and beyond in my work by taking on additional projects and working extra hours when needed.

    • Volunteering to lead a high-priority project that required long hours and weekend work

    • Staying late to troubleshoot and resolve a critical issue before a major deadline

    • Taking on extra tasks to help a team member who was overwhelmed with their workload

  • Answered by AI
  • Q5. Why are you leaving your current organization?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or changes in management

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Development Engineer II interview:
  • DSA
  • HLD
  • LLD

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. How to verify car is Major accidental
  • Q2. How to check apron replace
  • Q3. 1 check car piller roboting punching are proper visible aur not than confirm car are accidental aur not ..
  • Q4. Check apron replace1 point check apron selent are are original and 2 roboting punching than confirm apron replace ya repair..
  • Q5. Check uppar member lower member radiator support both side legs apron col top head light support than confirm car is Major accidental aur not ..

Interview Preparation Tips

Interview preparation tips for other job seekers - Verify the car is accidental to 1 point check body structure parts like piller roof and boot floor and upar cross member lower cross member and radiator support and both side legs than confirm car are major accidental aur not ..
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you describe your past professional experiences and provide some information about yourself?
  • Q2. Can you describe your day-to-day responsibilities and experiences in your last job?
Round 2 - Assignment 

A data dump will be provided, and you will need to perform the analysis and organize the information.

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for other company...this is really bad organisation you will regret it later
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What basic questions have you been asked regarding your accomplishments and achievements?
  • Q2. Technical regarding excel
Round 2 - HR 

(1 Question)

  • Q1. Why do you believe you are a good fit for this role?
  • Ans. 

    I have a proven track record of successfully managing key accounts and developing strong relationships with clients.

    • Extensive experience in key account management

    • Strong communication and negotiation skills

    • Ability to identify and capitalize on business opportunities

    • Track record of exceeding sales targets

    • Excellent relationship-building skills

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Excel questions about vlookup
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 Hour test to test Analytical skills and General Aptitude

Round 2 - Guesstimates 

(4 Questions)

  • Q1. How many people in the area you live in own a car?
  • Ans. 

    It is estimated that around 80% of the population in the area I live in own a car.

    • Approximately 80% of people in the area own a car

    • Car ownership is common due to lack of public transportation options

    • Many households have multiple cars for different family members

  • Answered by AI
  • Q2. Measure 4 Liters out of two vessels that are of 5 Liters and 3 Liters
  • Q3. How do you manage a conflict in the workplace?
  • Ans. 

    I manage conflicts by actively listening, understanding all perspectives, finding common ground, and facilitating a resolution.

    • Actively listen to all parties involved to understand their perspectives

    • Identify common ground and areas of agreement

    • Facilitate open communication and encourage collaboration

    • Seek a win-win solution that addresses the concerns of all parties

    • Document agreements and follow up to ensure resolution

  • Answered by AI
  • Q4. The overall quality of the process isn't improving. How do you tackle this situation?
  • Ans. 

    To improve the overall quality of the process, I would focus on identifying root causes, implementing process improvements, and monitoring results.

    • Conduct a thorough analysis to identify the root causes of the quality issues

    • Collaborate with stakeholders to develop and implement process improvements

    • Establish key performance indicators (KPIs) to monitor the effectiveness of the changes

    • Regularly review and adjust the proc...

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

(2 Questions)

  • Q1. One thing that you would do differently from your previous manager?
  • Ans. 

    I would focus more on fostering a collaborative team environment.

    • Encourage open communication and idea sharing among team members

    • Promote a culture of teamwork and mutual support

    • Implement regular team-building activities to strengthen relationships

  • Answered by AI
  • Q2. What is the angle between minute and hour clock when the clock strikes 2:20?
  • Ans. 

    The angle between the minute and hour hands of a clock at 2:20 is 50 degrees.

    • Calculate the angle formed by the hour hand from 12 o'clock to the current time (2:20)

    • Calculate the angle formed by the minute hand from 12 o'clock to the current time (20 minutes past the hour)

    • Subtract the smaller angle from the larger angle to get the angle between the minute and hour hands

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Turing Lead Business Analyst interview:
  • Analytical skills
  • Operations

Survey2Connect Interview FAQs

How many rounds are there in Survey2Connect interview?
Survey2Connect interview process usually has 1-2 rounds. The most common rounds in the Survey2Connect interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Survey2Connect 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 Survey2Connect. The most common topics and skills that interviewers at Survey2Connect expect are Digital Marketing, Javascript, Campaign Management, Marketing and MongoDB.
What are the top questions asked in Survey2Connect interview?

Some of the top questions asked at the Survey2Connect interview -

  1. Number of Steps required to reach top of stairs of length n where person can ma...read more
  2. How did you tackle a client escalation, and how did you manage to extend custom...read more
  3. Print left most node of each level by doing ...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Survey2Connect interviews
Job Portal
Campus Placement
Referral
33%
33%
33%
1% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 423 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 326 Interviews
CARS24 Interview Questions
3.6
 • 318 Interviews
Blinkit Interview Questions
3.7
 • 173 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Ninjacart Interview Questions
4.0
 • 94 Interviews
Rivigo Interview Questions
3.9
 • 72 Interviews
Questionpro Interview Questions
3.5
 • 6 Interviews
View all

Survey2Connect Reviews and Ratings

based on 13 reviews

2.2/5

Rating in categories

2.6

Skill development

1.9

Work-Life balance

2.0

Salary & Benefits

2.1

Job Security

1.9

Company culture

2.1

Promotions/Appraisal

2.3

Work Satisfaction

Explore 13 Reviews and Ratings
Software Engineer
13 salaries
unlock blur

₹6 L/yr - ₹7.5 L/yr

Software Developer
5 salaries
unlock blur

₹6 L/yr - ₹16.2 L/yr

Software Engineer II
5 salaries
unlock blur

₹7 L/yr - ₹9.5 L/yr

HR Manager
4 salaries
unlock blur

₹8.5 L/yr - ₹10.5 L/yr

Graphic Designer
4 salaries
unlock blur

₹7.2 L/yr - ₹8.6 L/yr

Explore more salaries
Compare Survey2Connect with

Qualtrics XM

2.2
Compare

Questionpro

3.5
Compare

SoGoSurvey

3.5
Compare

Udaan

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview