Upload Button Icon Add office photos

Filter interviews by

KeyValue Software Systems Senior Software Engineer Interview Questions and Answers

Updated 2 Dec 2024

KeyValue Software Systems Senior Software Engineer Interview Experiences

2 interviews found

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

Coding questions of leetcode easy

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Js coding round and output based que

Round 2 - Technical 

(1 Question)

  • Q1. Leetcode question

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

Interview questions from similar companies

Round 1 - Coding Test 

They will give you a leet code test.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical round with a few coding questions. API to get the employee.
  • Q2. API to update the salary of the employee
  • Ans. 

    API endpoint to update employee salary

    • Create a PUT request endpoint with employee ID and new salary as parameters

    • Verify user authentication and authorization before updating the salary

    • Update the salary in the database and return success message

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews take too long and repetitive questions on multiple rounds
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Questions on caching. Consistency
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. 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 - Coding Test 

Mixed conceptual questions from java8, Spring Boot and SQL and microservices

Round 3 - Technical 

(3 Questions)

  • Q1. One round technical question and coding on Java, Java 8, Spring boot,Rest webservices, SQL. Code for rest API using jpa for CRUD.
  • Q2. Singleton pattern for thread safety .
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Use lazy initialization to create the instance only when needed.

    • Use synchronized keyword to make the getInstance() method thread-safe.

    • Consider using double-checked locking for better performance.

    • Use enum to implement singleton pattern as it is inherently thread-safe.

  • Answered by AI
  • Q3. Linked list implementation
  • Ans. 

    Linked list is a data structure where each element points to the next element in the sequence.

    • Nodes contain data and a reference to the next node

    • Insertion and deletion can be done efficiently in a linked list

    • Traversal starts from the head node and follows the next pointers

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Parenthesis balancing question
  • Q2. Caching in Hibernate
  • Ans. 

    Caching in Hibernate improves performance by storing frequently accessed data in memory.

    • Hibernate supports first-level cache at session level

    • Second-level cache can be configured at session factory level

    • Caching strategies include read-only, read-write, and transactional

    • Cache providers like Ehcache, Infinispan, and Hazelcast can be used

  • Answered by AI
  • Q3. Maven scope questions
  • Q4. Ci and CD concept
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good coding and conceptual questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2023. 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. How many type of authentication can be implemented
  • Ans. 

    There are multiple types of authentication that can be implemented, including password-based, token-based, biometric, and multi-factor authentication.

    • Password-based authentication: Users authenticate themselves using a password.

    • Token-based authentication: Users authenticate themselves using a token, such as a one-time password or a security key.

    • Biometric authentication: Users authenticate themselves using their unique ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Develop springboot api for a given table
  • Ans. 

    Develop a Spring Boot API for a given table

    • Create a Spring Boot project with necessary dependencies

    • Define entity class representing the table

    • Create a repository interface extending JpaRepository

    • Implement service layer with business logic

    • Create REST controller with CRUD operations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview, analyzed technical and problem solving

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2023.

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 

A set of logical as well as technical mcqs were asked

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical one on one round with an experienced professional
Round 4 - One-on-one 

(1 Question)

  • Q1. This was an in-depth technical round where in depth technical know how about the coding language were asked
Round 5 - HR 

(1 Question)

  • Q1. Basic discussion about the company and its features

Interview Preparation Tips

Interview preparation tips for other job seekers - Professionally handled the interview process by the company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 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 

(2 Questions)

  • Q1. Write code based on situation with proper implementation using Design patterns etc.
  • Ans. 

    Implement a code scenario using design patterns

    • Identify the problem statement and requirements

    • Choose appropriate design patterns like Singleton, Factory, Observer, etc.

    • Implement the code following the selected design patterns

    • Test the code for functionality and efficiency

  • Answered by AI
  • Q2. Coding question in which you need to write optimize program.
Round 3 - Technical 

(2 Questions)

  • Q1. Linked list Coding questions
  • Q2. Design a database scheme of one of the known website.
  • Ans. 

    Design a database scheme for Amazon website

    • Create tables for users, products, orders, reviews, and payments

    • Use primary and foreign keys to establish relationships between tables

    • Include attributes such as user_id, product_id, order_id, review_id, and payment_id

    • Implement indexes for faster data retrieval

    • Consider denormalization for performance optimization

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Coding questions and some design questions. I got the offer within few days.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 4 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. The first round was based on general aptitude questions and technical questions based in my skill set.
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview questions were based on dsa and array based questions to be specific. Questions based on string manipulation and other Java related basic to intermediate technical questions.
Round 4 - Technical 

(1 Question)

  • Q1. Interview was based on some project related discussion and intermediate level of array based dsa questions. The other questions were related to Spring, Spring boot framework amd other Java related intervie...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to Java, Spring, DSA
  • Q2. Find the number of consecutive alphabets in a string.
  • Ans. 

    The question asks to find the number of consecutive alphabets in a string.

    • Iterate through the string and check if each character is consecutive to the previous one.

    • Keep track of the count of consecutive alphabets encountered.

    • Return the count at the end.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Java, Spring, SonarCube, Unit test, SQL index, API Gateway
Round 3 - HR 

(1 Question)

  • Q1. Mostly CTC discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Its an easy level of interview experience.

KeyValue Software Systems Interview FAQs

How many rounds are there in KeyValue Software Systems Senior Software Engineer interview?
KeyValue Software Systems interview process usually has 1-2 rounds. The most common rounds in the KeyValue Software Systems interview process are Coding Test, Technical and Aptitude Test.

Tell us how to improve this page.

KeyValue Software Systems Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
KeyValue Software Systems Senior Software Engineer Salary
based on 43 salaries
₹12 L/yr - ₹23 L/yr
8% more than the average Senior Software Engineer Salary in India
View more details

KeyValue Software Systems Senior Software Engineer Reviews and Ratings

based on 5 reviews

4.1/5

Rating in categories

4.5

Skill development

4.1

Work-life balance

4.4

Salary

4.7

Job security

4.2

Company culture

3.9

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹12 L/yr - ₹23 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹5.7 L/yr - ₹12.5 L/yr

Technical Lead
13 salaries
unlock blur

₹16.5 L/yr - ₹30 L/yr

Associate Technical Leader
13 salaries
unlock blur

₹14.1 L/yr - ₹28.8 L/yr

Explore more salaries
Compare KeyValue Software Systems with

Reliance Communications

4.0
Compare

Henry Harvin Education

3.7
Compare

GAO Tek

4.4
Compare

Tata Teleservices

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