Upload Button Icon Add office photos

Filter interviews by

Gupshup Senior Sdet Engineer Interview Questions and Answers

Updated 11 Mar 2024

Gupshup Senior Sdet Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to log latency for an api. Tinyurl system design
  • Ans. 

    To log latency for an API, you can use logging frameworks like Log4j or SLF4J to record timestamps before and after the API call.

    • Use a logging framework like Log4j or SLF4J to record timestamps before and after the API call

    • Calculate the latency by subtracting the timestamps

    • Include the latency information in the log message for monitoring and analysis

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic and logical questions, SQL queries and python programs like find the node of the tree , flatten the array etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is more on practical than theory questions so do practice more :)

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based questions to test our experience.
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions and puzzles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions are tricky and might have multiple answers. They will examine our thinking capacity in that.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

They do a technical mock test

Round 2 - Technical 

(3 Questions)

  • Q1. Oop Concept questions
  • Q2. Database related Questions
  • Q3. SVN related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Over all Experience was good. I recommend this company.
Round 1 - Technical 

(2 Questions)

  • Q1. Props and its role in
  • Q2. States and its role in
  • Ans. 

    States play a crucial role in the functioning of a country's government and administration.

    • States are administrative divisions within a country.

    • They have their own governments and are responsible for managing their own affairs.

    • States play a key role in the federal system of government, where power is shared between the central government and the states.

    • They are responsible for implementing policies and programs at the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool. Calm and relax. Stay alert.

I applied via Approached by Company and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1 What’s functional interface and benefits. 2 Transaction uses and different propagation level.
  • Ans. 

    Functional interface is an interface with only one abstract method. Benefits include lambda expressions and improved code readability.

    • Functional interface allows for the use of lambda expressions, which can simplify code and improve readability.

    • It also enables the use of method references, which can make code more concise.

    • Functional interfaces are used extensively in Java 8's Stream API.

    • Transaction uses include ensurin...

  • Answered by AI
  • Q2. Different isolation levels in transactions labels and purpose.
  • Ans. 

    Different isolation levels in transactions and their purpose.

    • Isolation levels determine how transactions interact with each other.

    • READ UNCOMMITTED: Allows dirty reads, can cause phantom reads.

    • READ COMMITTED: Prevents dirty reads, but allows non-repeatable reads.

    • REPEATABLE READ: Prevents dirty and non-repeatable reads, but allows phantom reads.

    • SERIALIZABLE: Prevents all three types of reads, but can cause deadlock.

    • Purpo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never give up..

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Sep 2022. 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 - Technical 

(1 Question)

  • Q1. Attended interview for Java and Spring boot . No direct questions like what is and why ?. All were scenario questions like when to use which collections and more configuration oriented in spring boot. But...
Round 3 - Technical 

(1 Question)

  • Q1. Another Technical round by senior panel. More insights into project and actions performed in the project like what we did and how we did.

Interview Preparation Tips

Topics to prepare for Ideas2IT Technologies Senior Software Engineer interview:
  • Java
  • Spring Boot
  • Microservices
Interview preparation tips for other job seekers - Be Strong in basics. They want to know if you are able to understand concepts and present it well.
Round 1 - Technical 

(2 Questions)

  • Q1. About framework cucumber
  • Q2. About selenium automation
Round 2 - HR 

(1 Question)

  • Q1. Career growth in comoany

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company to work in ideas2it very good envirement.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What final class and method
  • Ans. 

    The final class and method are used to prevent inheritance and method overriding respectively.

    • Final class: A final class cannot be subclassed. It is often used for utility classes or classes that should not be extended.

    • Final method: A final method cannot be overridden by subclasses. It is used to prevent modification of a method's behavior in subclasses.

  • Answered by AI
  • Q2. PHP reference variable
  • Q3. Find duplicate numbers
  • Ans. 

    Find duplicate numbers in an array of strings.

    • Iterate through the array and keep track of the count of each number using a hash map.

    • If the count of a number is greater than 1, it is a duplicate.

    • Return the list of duplicate numbers.

  • Answered by AI
  • Q4. Echo variable in single quote what will be output
  • Ans. 

    The output will be the literal string of the variable, without any variable interpolation.

    • When a variable is echoed in single quotes, it is treated as a literal string.

    • No variable interpolation or special characters are interpreted.

    • The output will include the variable name itself, not its value.

  • Answered by AI
  • Q5. What is oops concept
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • OOP is based on the concept of classes and objects.

    • It focuses on encapsulation, inheritance, and polymorphism.

    • Encapsulation hides the internal details of an object and provides a public interface.

    • Inheritance allows classes to inherit properties and methods from other classes.

    • Polymorphism allows objects of diff...

  • Answered by AI
  • Q6. Having clause in MySQL
  • Ans. 

    The HAVING clause is used in MySQL to filter the results of a GROUP BY query based on a condition.

    • The HAVING clause is similar to the WHERE clause, but it operates on grouped rows rather than individual rows.

    • It is used in conjunction with the GROUP BY clause.

    • The HAVING clause is used to filter the results of a GROUP BY query based on a condition that applies to the grouped rows.

    • It is typically used to specify condition...

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

A company designed the test basically to understand the nature of the interviewee. Simple test.

Round 2 - One-on-one 

(1 Question)

  • Q1. OOP Questions like inheritance, polymorphism, etc.

Interview Preparation Tips

Topics to prepare for Entrata Senior Software Engineer interview:
  • Javascript
  • PHP
  • Postgresql
  • React.Js
Interview preparation tips for other job seekers - OOP Concepts, Database knowledge. Mostly normal interviews do not have many hard questions.

Gupshup Interview FAQs

How many rounds are there in Gupshup Senior Sdet Engineer interview?
Gupshup interview process usually has 1 rounds. The most common rounds in the Gupshup interview process are Technical.

Tell us how to improve this page.

Gupshup Senior Sdet Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 55 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CodeClouds Interview Questions
4.5
 • 36 Interviews
Entrata Interview Questions
4.1
 • 34 Interviews
greytHR Interview Questions
4.0
 • 31 Interviews
View all
Software Engineer
90 salaries
unlock blur

₹6.2 L/yr - ₹22 L/yr

Senior Software Engineer
68 salaries
unlock blur

₹11 L/yr - ₹38.5 L/yr

Software Engineer Level 1
43 salaries
unlock blur

₹7 L/yr - ₹21 L/yr

Software Engineer2
38 salaries
unlock blur

₹9.2 L/yr - ₹33 L/yr

Assistant Manager
33 salaries
unlock blur

₹6 L/yr - ₹15.4 L/yr

Explore more salaries
Compare Gupshup with

Twilio

3.9
Compare

Duck Creek Technologies

4.4
Compare

Ascent HR Technologies Private Limited

3.7
Compare

FinThrive

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