Upload Button Icon Add office photos
Engaged Employer

i

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

CDW Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

CDW Senior Cloud Engineer Interview Questions and Answers

Updated 26 Oct 2023

CDW Senior Cloud Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 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 Resume tips
Round 2 - Aptitude Test 

Aptitude round was too easy it was like basics of 10th and 11th 12th standard most of them were based on time distance questions

Round 3 - Coding Test 

Coding around was little bit of asking about the C++ and Java questions about the algorithm and all

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Aptitude questions
  • Q2. Technical Questions
  • Q3. Group Discussion
  • Q4. HR/ Management interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard in each section to achieve the success.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Dedendency Injection - How it's works.
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of an object are provided externally rather than created within the object itself.

    • Dependencies are injected into a class through constructor injection, setter injection, or interface injection.

    • This helps in achieving loose coupling between classes and makes the code more testable and maintainable.

    • Example: Instead of creating an instance of a database conne...

  • Answered by AI
  • Q2. Transient vs Scoped lifetime service - if one is transient and other is Scoped will this work?
  • Ans. 

    Yes, a combination of transient and scoped lifetime services can work together.

    • Transient services are created each time they are requested, while scoped services are created once per request within the scope.

    • They can work together as long as the transient service does not depend on the scoped service for its functionality.

    • For example, a logging service can be transient while a database context service can be scoped.

  • Answered by AI
  • Q3. Async and await

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have mentioned .Net Core, learn above questions

Skills evaluated in this interview

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

Basic java mcq, Java Hibernate Spring MVC framework questions

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Question answer of 1 hour with 3 panel member

Round 2 - Group Discussion 

1 hour of Gd with 3 members

Round 3 - Case Study 

With some high management

Round 4 - HR 

(2 Questions)

  • Q1. About family and there job profile
  • Q2. Salary expectations and discussion on structure oc the same
Round 5 - HR 

(1 Question)

  • Q1. Salary expectation and again explain the structure
  • Ans. 

    I am looking for a competitive salary based on my experience and skills in the range of $100,000 to $120,000.

    • Research industry standards for senior software engineer salaries

    • Consider your years of experience and specialized skills

    • Factor in cost of living in the area where the job is located

    • Be prepared to negotiate based on benefits and perks offered

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't rely on anyone, pathetic company as everyone have there own attitude right from the interviewer till HR.
They would just go by themselves especially HR, haven't seen such a pathetic HR, would never response on time and give false promises.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test conducted in virtual session - you need share the entire screen (google meet). Interviewer share about 12 questions, in 10 are theory based questions and 2 coding questions.
while writing theory try to answer with real time example from your project.
1. Solid principles 2 design patterns used 3 diff between .net core vs .net 4. garbage collection 5. global exception handling in core 5. performance / monitoring related questions

coding questions: 1. Nth max value without sorting. 2. sum of max sub array in a integer array

Round 2 - One-on-one 

(4 Questions)

  • Q1. Skills, project explanation, unit testing, code review
  • Q2. Usage of dependency injection in core along with types
  • Ans. 

    Dependency injection in core with types is a common practice in software engineering.

    • Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Using dependency injection in core allows for easier testing and maintenance of the codebase.

    • Types in dependency injection help ensure that the correct dependencies are injected into components.

    • Examples include us...

  • Answered by AI
  • Q3. Usage of Middleware along with custom middleware
  • Ans. 

    Middleware is used to handle requests and responses in web applications. Custom middleware can be created to add specific functionality.

    • Middleware is software that acts as a bridge between an operating system or database and applications, allowing them to communicate with each other.

    • Middleware can be used to handle tasks such as authentication, logging, error handling, and more.

    • Custom middleware can be created to add s...

  • Answered by AI
  • Q4. Authentication and authorization in web api core
  • Ans. 

    Authentication and authorization are essential for securing web APIs in ASP.NET Core.

    • Use authentication to verify the identity of the user accessing the API.

    • Use authorization to determine what actions the authenticated user is allowed to perform.

    • In ASP.NET Core, authentication can be implemented using various schemes like JWT, OAuth, or Identity.

    • Authorization can be achieved through policies, roles, or claims.

    • Always va...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First question in hr interview is tell about yourself then the hr asked questions what I mentioned in my resume. So put the information in resume what you known well. My unique talent is I'm a stage spea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, be confident, don't put irrelevant information in your resume update yourself relating to your studies

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .
Contribute & help others!
anonymous
You can choose to be anonymous

CDW Interview FAQs

How many rounds are there in CDW Senior Cloud Engineer interview?
CDW interview process usually has 3 rounds. The most common rounds in the CDW interview process are Resume Shortlist, Aptitude Test and Coding Test.

Recently Viewed

JOBS

Johnson Controls

No Jobs

SALARIES

Dataflow Group

INTERVIEWS

AVEVA

No Interviews

INTERVIEWS

Redington

No Interviews

SALARIES

Mantra Softech

INTERVIEWS

Halliburton

20 top interview questions

INTERVIEWS

Halliburton

No Interviews

INTERVIEWS

Bosch

No Interviews

SALARIES

Schlumberger

INTERVIEWS

Redington

10 top interview questions

Tell us how to improve this page.

CDW Senior Cloud Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
HCL Infosystems Interview Questions
3.9
 • 140 Interviews
View all
Consultant
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior System Administrator
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Administrator
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CDW with

Tech Data Corporation

4.6
Compare

Ingram Micro

3.8
Compare

Redington

4.0
Compare

HCL Infosystems

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent