Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Kickdrum Team. If you also belong to the team, you can get access from here

Kickdrum Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Kickdrum Interview Questions and Answers

Updated 3 Jan 2025

Kickdrum Interview Experiences

Popular Designations

9 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Kickdrum Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Interview Preparation Tips

Topics to prepare for Kickdrum interview:
  • In resumes course they put.
  • Confidence in self introduction
  • Confident talk in anything
Interview preparation tips for other job seekers - Please send genuine links for job seekers because there are so many people are suffering from jobs.So please hire that people and give a chance.Iam requesting the companies admins people hire more people give training and select the people.Thanking you about my advice.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)

Kickdrum interview questions for popular designations

 Internship Trainee

 (2)

 Software Developer

 (2)

 Software Developer Intern

 (2)

 Database Architect

 (1)

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical knowledge is imp

Skills evaluated in this interview

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Kickdrum

View all

Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2023

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

I applied via Campus Placement and was interviewed in Apr 2023. There were 3 interview rounds.

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep faith on yourself.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Database Architect Interview Questions & Answers

user image Soumitra Bhandary

posted on 25 Dec 2021

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In depth Database concept on multiple database , 7 rounds including managerial round and 6 core technical round. 4rounds Database oriented 2rounds devops oriented

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good with lots of knowledgeable person

Database Architect Interview Questions asked at other Companies

Q1. Are you aware of DevOp? How to use in producing output for client?
View answer (2)

Interview questions from similar companies

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Questions on aptitude, English, logical reasoning, C/C++ and 5 coding ques. (only pseudo code).

  • Q1. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Find the minimum number of trampoline jumps Bob needs to make to reach the final shop, or return -1 if it's impossible.

    • Use Breadth First Search (BFS) algorithm to find the minimum number of jumps required.

    • Keep track of the visited shops to avoid revisiting them.

    • If a shop has an Arr value of 0, it is impossible to reach the final shop.

    • Return -1 if the final shop cannot be reached.

  • Answered by AI
  • Q2. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd", X = "bd"
    Outpu...
  • Ans. 

    Find the smallest substring in S that contains all characters in X.

    • Use a sliding window approach to find the smallest window in S containing all characters of X.

    • Maintain a hashmap to keep track of characters in X and their frequencies in the current window.

    • Slide the window to the right, updating the hashmap and shrinking the window until all characters in X are present.

    • Return the smallest window found.

    • Example: S = 'abd

  • Answered by AI
  • Q3. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from start to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Return paths in alphabetical order as a list of strings.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on OOPS were asked in this round.

  • Q1. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in C++

    • They are used in inheritance to achieve runtime polymorphism

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • They are called based on the type of object bei...

  • Answered by AI
  • Q2. What are the types of polymorphism in Object-Oriented Programming?
  • Ans. 

    Types of polymorphism in OOP include compile-time (method overloading) and runtime (method overriding) polymorphism.

    • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its superclass.

    • Polymor...

  • Answered by AI
  • Q3. What is the difference between deep copy and shallow copy?
  • Ans. 

    Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • Deep copy creates a new object and copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • In deep copy, changes made to the original object do not affect the copied object, while in shallow copy, ch...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Kickdrum Interview FAQs

How many rounds are there in Kickdrum interview?
Kickdrum interview process usually has 2-3 rounds. The most common rounds in the Kickdrum interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Kickdrum 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 Kickdrum. The most common topics and skills that interviewers at Kickdrum expect are JIRA, MySQL, HTML, Oracle and Postgresql.
What are the top questions asked in Kickdrum interview?

Some of the top questions asked at the Kickdrum interview -

  1. Automate the applicat...read more
  2. Write test ca...read more
  3. In depth Database concept on multiple database , 7 rounds including manageria...read more

Recently Viewed

SALARIES

Vedant Fashions

SALARIES

Warner Bros. Discovery

SALARIES

Vedant Fashions

REVIEWS

Birla Century

No Reviews

INTERVIEWS

Scoopwhoop Media

No Interviews

INTERVIEWS

Wittyfeed

No Interviews

INTERVIEWS

Welspun Living Limited

No Interviews

INTERVIEWS

Bombay Shirt Company

No Interviews

REVIEWS

Birla Century

No Reviews

SALARIES

vConstruct

Tell us how to improve this page.

Kickdrum Interview Process

based on 7 interviews

Interview experience

4.6
  
Excellent
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 753 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
BookMyShow Interview Questions
4.0
 • 23 Interviews
Saregama India Interview Questions
4.0
 • 8 Interviews
T-Series Interview Questions
3.9
 • 1 Interview
View all

Kickdrum Reviews and Ratings

based on 9 reviews

4.0/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.9

Salary

4.3

Job security

3.6

Company culture

4.2

Promotions

4.1

Work satisfaction

Explore 9 Reviews and Ratings
Senior Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Software Developer
23 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Software Engineer
14 salaries
unlock blur

₹13.9 L/yr - ₹19.2 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Technical Lead
4 salaries
unlock blur

₹32 L/yr - ₹36 L/yr

Software Development Engineer
3 salaries
unlock blur

₹10.4 L/yr - ₹14.7 L/yr

Explore more salaries
Compare Kickdrum with

Furtados Music India

3.2
Compare

Saregama India

4.0
Compare

Shemaroo Entertainment

3.7
Compare

T-Series

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