Upload Button Icon Add office photos

Filter interviews by

KEKA TECHNOLOGIES Solution Consultant Interview Questions and Answers

Updated 27 Apr 2022

KEKA TECHNOLOGIES Solution Consultant Interview Experiences

1 interview found

I applied via Referral and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Roles handled being a solution consultant
  • Ans. Detail the activities that you handle in your daily life of your current organization. Daily activities must give the glimpse of what you do while you handle the customer/client
  • Answered Anonymously
Round 2 - Assignment 

Interview Preparation Tips

Topics to prepare for KEKA TECHNOLOGIES Solution Consultant interview:
  • Roles you handle
  • Modules you work on
  • Ease in dealing situations
Interview preparation tips for other job seekers - Be confident while you are giving the details on the role which you are handling

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basics from the technologies mentioned in my resume

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was very cool and strong in basics and it was a very good experience for me.
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 - Technical 

(2 Questions)

  • Q1. Inheritance related questions
  • Q2. Base web development related questions
Round 2 - Technical 

(2 Questions)

  • Q1. In depth oops question
  • Q2. Database related questions
Round 3 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Senior Engineers.

    • Consider my years of experience in the industry

    • Take into account my specialized skills and certifications

    • Research the current market rate for Senior Engineers in this location

    • Negotiable based on benefits package offered

  • Answered by AI
Round 4 - Coding Test 

Web development related coding questions

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. Laravel Question
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It's more deficult it's not easy round

Round 2 - HR 

(2 Questions)

  • Q1. Speed and distance
  • Q2. Age problem and ratioo
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Related to your Past expereince
Round 2 - Technical 

(1 Question)

  • Q1. Basic and detailed Steps of P2P
  • Ans. 

    P2P (Procure-to-Pay) is the process of requisitioning, purchasing, receiving, paying for, and accounting for goods and services.

    • Requisitioning: Requesting goods or services needed by the organization.

    • Purchasing: Finding suppliers, negotiating terms, and creating purchase orders.

    • Receiving: Accepting and inspecting goods or services delivered.

    • Paying for: Processing invoices and making payments to suppliers.

    • Accounting: Re...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiations

Skills evaluated in this interview

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

(1 Question)

  • Q1. Copy constructor implementation it was based on
Round 2 - Technical 

(1 Question)

  • Q1. Binary search question on array
Round 3 - HR 

(1 Question)

  • Q1. Experience and expectations on salary

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Dict ,list and other questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 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. What’s functional interface and uses. Server side and client side load balancing.
  • Ans. 

    Functional interface is an interface with only one abstract method. Load balancing is used to distribute workload.

    • Functional interface is used in lambda expressions in Java.

    • Load balancing is used to distribute workload across multiple servers.

    • Server side load balancing is done by a load balancer that sits between the client and server.

    • Client side load balancing is done by the client application itself.

    • Load balancing im...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Transactional levels and propagation labels cases. Find the sequence of Substring duplicates counts.
  • Ans. 

    The question is unclear and seems unrelated to software development.

    • Ask for clarification on the question.

    • Transactional levels and propagation labels are related to database transactions.

    • Substring duplicates counts can be solved using string manipulation.

    • It is unclear how these two topics are related.

  • Answered by AI

Skills evaluated in this interview

KEKA TECHNOLOGIES Interview FAQs

How many rounds are there in KEKA TECHNOLOGIES Solution Consultant interview?
KEKA TECHNOLOGIES interview process usually has 2 rounds. The most common rounds in the KEKA TECHNOLOGIES interview process are Technical and Assignment.

Tell us how to improve this page.

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.3
 • 83 Interviews
NoBrokerHOOD Interview Questions
3.0
 • 58 Interviews
Vyapar Interview Questions
3.5
 • 55 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 38 Interviews
CodeClouds Interview Questions
4.4
 • 37 Interviews
View all
KEKA TECHNOLOGIES Solution Consultant Salary
based on 4 salaries
₹7.5 L/yr - ₹11 L/yr
49% less than the average Solution Consultant Salary in India
View more details

KEKA TECHNOLOGIES Solution Consultant Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

3.6

Skill development

4.5

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Customer Success Manager
124 salaries
unlock blur

₹4 L/yr - ₹10.1 L/yr

Sales Development Representative
81 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Product Specialist
55 salaries
unlock blur

₹3.5 L/yr - ₹7.1 L/yr

Software Engineer
40 salaries
unlock blur

₹5.2 L/yr - ₹20 L/yr

Quality Analyst
40 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Explore more salaries
Compare KEKA TECHNOLOGIES with

Celebal Technologies

3.0
Compare

NoBrokerHOOD

3.0
Compare

Duck Creek Technologies

4.4
Compare

Ascent HR Technologies Private Limited

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