Upload Button Icon Add office photos

Filter interviews by

CDK Global Interview Questions, Process, and Tips

Updated 14 Jan 2025

Top CDK Global Interview Questions and Answers

View all 15 questions

CDK Global Interview Experiences

Popular Designations

36 interviews found

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

(2 Questions)

  • Q1. How handle Session in Dot Net core
  • Ans. 

    Session handling in Dot Net Core involves configuring session middleware and using session variables to store user-specific data.

    • Configure session middleware in Startup.cs using services.AddSession() and app.UseSession()

    • Access session variables using HttpContext.Session

    • Store and retrieve data in session variables using key-value pairs

    • Set session expiration and cookie options for security and performance

    • Example: service...

  • Answered by AI
  • Q2. What is difference between List and Dictionary
  • Ans. 

    List is an ordered collection of items, while Dictionary is a collection of key-value pairs.

    • List maintains the order of elements, while Dictionary does not guarantee any specific order.

    • In List, elements are accessed by their index, while in Dictionary, elements are accessed by their keys.

    • Example: List - [1, 2, 3], Dictionary - {'a': 1, 'b': 2, 'c': 3}

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. What is the program using Stream API to find odd numbers, square those odd numbers, and then calculate their sum?
  • Ans. 

    Using Stream API to find odd numbers, square them, and calculate their sum.

    • Use Stream API filter to find odd numbers

    • Use map to square the odd numbers

    • Use reduce to calculate the sum

  • Answered by AI

Senior Software Engineer 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 (6)

Senior Software Engineer Interview Questions & Answers

user image Gouthami Surakala

posted on 19 Mar 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Asked about linkedist insert delete operations
  • Q2. Microservices related questions
Round 2 - Technical 

(1 Question)

  • Q1. Java deep diving about hashmap implementation.Spring related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Some sql basics and logical questions which are pretty easy

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

xcvd Interview Questions & Answers

user image Sneha Mehta

posted on 8 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts - explainall
  • Q2. Filters

CDK Global interview questions for popular designations

 Senior Software Engineer

 (5)

 Senior Member Technical

 (3)

 Analyst

 (2)

 Member Technical Staff

 (2)

 Software Engineer

 (2)

 Consultant

 (1)

 Devops Engineer

 (1)

 End User Support Specialist

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Arrays sort 0's to end
  • Ans. 

    Use two pointers approach to sort 0's to end of array of strings.

    • Initialize two pointers, one for iterating through the array and one for placing 0's at the end.

    • If current element is '0', swap it with the element at the second pointer and move the second pointer forward.

  • Answered by AI
  • Q2. Hibernate many to many mapping design
  • Ans. 

    Hibernate many to many mapping allows for a relationship where multiple instances of one entity are related to multiple instances of another entity.

    • Use @ManyToMany annotation in Hibernate to establish many to many relationship between entities

    • Create a join table to store the relationship between the two entities

    • Specify the mapping details such as cascade type, fetch type, and join column details

  • Answered by AI

Skills evaluated in this interview

Senior Associate Java Developer Interview Questions asked at other Companies

Q1. hibernate many to many mapping design
View answer (1)

Get interview-ready with Top CDK Global Interview Questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between async await and task
  • Ans. 

    Async await is a syntactic sugar for working with asynchronous code in a synchronous manner, while Task is a class that represents an asynchronous operation.

    • Async await allows you to write asynchronous code that looks like synchronous code, making it easier to read and maintain.

    • Tasks are objects that represent asynchronous operations and can be used to manage and monitor the progress of those operations.

    • Async await is ...

  • Answered by AI
  • Q2. Write unit test cases
  • Ans. 

    Unit test cases are written to test individual units or components of a software application.

    • Identify the unit to be tested

    • Write test cases to cover different scenarios such as positive, negative, and edge cases

    • Use testing frameworks like JUnit or NUnit to write and execute the test cases

    • Ensure the test cases are independent, isolated, and repeatable

    • Include assertions to verify the expected behavior of the unit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Senior Software Engineer 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 (6)

Jobs at CDK Global

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Work experiece

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

Analyst Interview Questions & Answers

user image Anonymous

posted on 31 Jan 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self and the project what we had done.
Round 2 - Technical 

(1 Question)

  • Q1. It is based on SQL queries and SQL questions.it also very easy.

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)
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 

(3 Questions)

  • Q1. Interview mostly focuses on functional skills of product management. Be thorough with your experience on backlog management, agile ceremonies, how to break feature into further dev consumable jira tickets ...
  • Q2. If engineering team has less capacity and you are asked to deliver a feature by a deadline, how would you approach this?
  • Ans. 

    I would prioritize the features based on their impact and feasibility.

    • Assess the importance and urgency of the feature

    • Collaborate with the engineering team to understand their capacity and constraints

    • Identify any potential trade-offs or compromises that can be made

    • Consider alternative solutions or workarounds

    • Communicate with stakeholders about the situation and manage expectations

    • Re-prioritize the roadmap if necessary

  • Answered by AI
  • Q3. You have a total of two elimination rounds and a last one with on-site leadership to as a quick validation of decision

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Jun 2024

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

I applied via campus placement at Chitkara Institute of Engineering & Technology, Rajpura and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It contained 3 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me questions on dsa and system design and the resume. also one puzzle.
  • Q2. They asked me about file handling, and sorting.

Interview Preparation Tips

Topics to prepare for CDK Global Intern interview:
  • DSA
  • System Design
Interview preparation tips for other job seekers - good to go

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

CDK Global Interview FAQs

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

Some of the top questions asked at the CDK Global interview -

  1. How would you do annual performance reviews and minimize conflict...read more
  2. If engineering team has less capacity and you are asked to deliver a feature by...read more
  3. What is the program using Stream API to find odd numbers, square those odd numb...read more
How long is the CDK Global interview process?

The duration of CDK Global interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

CDK Global Interview Process

based on 23 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all

CDK Global Reviews and Ratings

based on 474 reviews

3.7/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.7

Salary

3.1

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 474 Reviews and Ratings
AWS Cloud Engineer

Hyderabad / Secunderabad

5-8 Yrs

Not Disclosed

Azure Cloud Engineer

Hyderabad / Secunderabad

5-8 Yrs

Not Disclosed

Cloud DBA

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Member Technical
216 salaries
unlock blur

₹6 L/yr - ₹20.7 L/yr

Software Engineer
191 salaries
unlock blur

₹6 L/yr - ₹25.6 L/yr

Consultant
179 salaries
unlock blur

₹11 L/yr - ₹30 L/yr

Senior Software Engineer
176 salaries
unlock blur

₹13 L/yr - ₹39 L/yr

Associate Software Engineer
125 salaries
unlock blur

₹4.8 L/yr - ₹12 L/yr

Explore more salaries
Compare CDK Global with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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