Upload Button Icon Add office photos

Filter interviews by

66degrees Cloud Engineer Interview Questions, Process, and Tips

Updated 23 Oct 2024

66degrees Cloud Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Introduction about myself
  • Ans. 

    I am a Cloud Engineer with a strong background in designing, implementing, and managing cloud infrastructure.

    • Experienced in working with AWS, Azure, and Google Cloud Platform

    • Skilled in automating tasks using tools like Terraform and Ansible

    • Proficient in monitoring and optimizing cloud resources for cost efficiency

    • Strong understanding of networking and security principles in cloud environments

  • Answered by AI
  • Q2. SQL query : Write a query to find the employees from employee table whose middle name is 'Mohan' and have salary more than 2 lac
  • Ans. 

    Query to find employees with middle name 'Mohan' and salary over 2 lac.

    • Use SELECT statement to retrieve data from employee table

    • Use WHERE clause to filter employees with middle name 'Mohan' and salary over 2 lac

    • Example: SELECT * FROM employee WHERE middle_name = 'Mohan' AND salary > 200000

  • Answered by AI
  • Q3. WAP to convert a string into uppercase and lowercase
  • Ans. 

    A program to convert a string into uppercase and lowercase.

    • Use built-in functions like toUpperCase() and toLowerCase() to convert the string.

    • Iterate through each character of the string and convert it to uppercase or lowercase accordingly.

    • Ensure to handle special characters and spaces appropriately.

  • Answered by AI
  • Q4. Count the common occurrence of elements of list A and list B
  • Ans. 

    Count common elements in two lists

    • Iterate through both lists and count occurrences of each element

    • Use a dictionary to store counts of elements in both lists

    • Return the common elements and their counts

  • Answered by AI
  • Q5. Describe any one project in detail with code manipulation
  • Ans. 

    Developed a cloud-based data analytics platform using Python and AWS services

    • Used AWS Lambda functions for serverless computing

    • Implemented data processing pipelines with AWS Glue and S3

    • Utilized Python libraries like Pandas and NumPy for data analysis

  • Answered by AI

Interview Preparation Tips

Topics to prepare for 66degrees Cloud Engineer interview:
  • C++
  • Python
  • Javascript
  • DBMS
  • SQL
  • DSA
  • Problem Solving

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Which cloud you have worked on
  • Ans. 

    I have worked on AWS, Azure, and Google Cloud Platform.

    • Worked extensively on AWS services such as EC2, S3, RDS, and Lambda

    • Experience with Azure services like Virtual Machines, Blob Storage, and Azure Functions

    • Familiar with Google Cloud Platform services including Compute Engine, Cloud Storage, and Cloud Functions

  • Answered by AI
  • Q2. Which automation tools you have worked
  • Ans. 

    I have worked with automation tools such as Ansible, Terraform, and Jenkins.

    • Ansible

    • Terraform

    • Jenkins

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. CI-CD pipelines.
  • Q2. VM's, fault domain Upadte domain, load balancers
Round 2 - Technical 

(2 Questions)

  • Q1. CI-CD pipelines
  • Q2. Powershell questions, Azure services Used, Terraform
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python functions and basics
  • Q2. SQL advanced window functions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jul 2024.

Round 1 - Coding Test 

2 questions are there 1 is a moderate dsa question & 2nd is a SQL question

Round 2 - Technical 

(2 Questions)

  • Q1. Go concurrency?
  • Q2. Some questions about AWS
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explian about how to setup DR
  • Ans. 

    DR setup involves identifying critical systems, selecting a DR site, replicating data, and testing the plan regularly.

    • Identify critical systems and prioritize them based on their importance

    • Select a DR site that is geographically distant from the primary site

    • Replicate data to the DR site using technologies like backup and recovery, replication, or clustering

    • Test the DR plan regularly to ensure it works as expected and m...

  • Answered by AI
  • Q2. We use Azure Site Recovery service to manage DR

Interview Preparation Tips

Interview preparation tips for other job seekers - You try and have nice experience in terms of interview questions

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. As I had technical interview with two engineers, And had a brief discussion about AWS and services, Jenkins tools, Linux trouble shooting, automation tool we used to, git version qst you may expect and mos...
Round 2 - Technical 

(1 Question)

  • Q1. Second round you may have your project related questions and live scenario trouble shooting questions. Most critical issue handled by you and the resolution you have taken for that. Kind of questions which...
Round 3 - HR 

(1 Question)

  • Q1. Usual your notice period, willing to relocate location if any, salary package, Investigation about your certificates if any.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you are performing at interview, And don't lie which you are not aware of, Accept if you don't know any of the question. Most probably think and let them know the relevant answers. Let them complete their questions. Good luck!!.
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2022. 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Why we use vpc and subnets,firewall, expalin briefly
  • Ans. 

    VPC and subnets are used to create isolated network environments in the cloud. Firewalls are used to control network traffic.

    • VPC (Virtual Private Cloud) allows users to create their own virtual network in the cloud, providing isolation and control over network resources.

    • Subnets are subdivisions of a VPC and allow for further segmentation and organization of resources.

    • Firewalls are used to enforce security policies and ...

  • Answered by AI
  • Q2. What is tf.state file
  • Ans. 

    tf.state file is a file used by Terraform to store the current state of the infrastructure being managed.

    • The tf.state file is used to keep track of the resources that Terraform is managing.

    • It contains information about the current state of the infrastructure, such as the IDs of resources and their current configuration.

    • The tf.state file is created when you run 'terraform apply' and is updated every time you make change...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i want more explanation iam saying single line answer

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Linux questions like how to check the Kernel version and few other vital Linux concepts I don't remember that much and asked about few AWS services and how it works and from the DevOps side they asked abou...
Round 3 - HR 

(1 Question)

  • Q1. Typical HR questions like Introduce about yourself,your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Roll your sleeves up and put on your brave face.Be confident that's all.

Interview Questionnaire 

3 Questions

  • Q1. End to end process for migration for physical machine to cloud
  • Ans. 

    The end to end process for migrating a physical machine to the cloud involves several steps.

    • Assess the physical machine's compatibility with the cloud environment

    • Choose a cloud provider and create an account

    • Select the appropriate cloud service and instance type

    • Create a virtual machine image of the physical machine

    • Upload the image to the cloud provider

    • Configure the virtual machine and network settings

    • Test the migrated m...

  • Answered by AI
  • Q2. Power shell
  • Q3. Azure load balancer

Skills evaluated in this interview

66degrees Interview FAQs

How many rounds are there in 66degrees Cloud Engineer interview?
66degrees interview process usually has 1 rounds. The most common rounds in the 66degrees interview process are Technical.
How to prepare for 66degrees Cloud Engineer 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 66degrees. The most common topics and skills that interviewers at 66degrees expect are Python, Computer Networking, Consulting, Information Technology and Linux Administration.
What are the top questions asked in 66degrees Cloud Engineer interview?

Some of the top questions asked at the 66degrees Cloud Engineer interview -

  1. SQL query : Write a query to find the employees from employee table whose middl...read more
  2. Count the common occurrence of elements of list A and lis...read more
  3. WAP to convert a string into uppercase and lowerc...read more

Tell us how to improve this page.

66degrees Cloud Engineer Salary
based on 4 salaries
₹7 L/yr - ₹20 L/yr
59% more than the average Cloud Engineer Salary in India
View more details

66degrees Cloud Engineer Reviews and Ratings

based on 2 reviews

2.9/5

Rating in categories

4.0

Skill development

3.4

Work-life balance

3.5

Salary

2.4

Job security

2.8

Company culture

2.4

Promotions

2.9

Work satisfaction

Explore 2 Reviews and Ratings
QA Engineer
5 salaries
unlock blur

₹9 L/yr - ₹16.5 L/yr

Senior Cloud Engineer
5 salaries
unlock blur

₹15.1 L/yr - ₹38 L/yr

Engineering Manager
4 salaries
unlock blur

₹42 L/yr - ₹42 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹19 L/yr - ₹30 L/yr

Cloud Engineer
4 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Explore more salaries
Compare 66degrees with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

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