Upload Button Icon Add office photos
Engaged Employer

i

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

Utkarsh Classes Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Utkarsh Classes Senior Devops Engineer Interview Questions and Answers

Updated 17 Jul 2024

Utkarsh Classes Senior Devops Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Self description
  • Q2. Python questions

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2.5 Hours 2 Coding que and sql query and topin tech platform

Round 2 - waiting for result 

(2 Questions)

  • Q1. Based on boolean matrix
  • Q2. Find k closest node of given given node in a BST.
  • Ans. 

    Find k closest nodes to a given node in a BST.

    • Perform an inorder traversal of the BST to get a sorted list of nodes.

    • Use a priority queue to keep track of the k closest nodes based on their absolute difference with the target node.

    • Populate the priority queue with the first k nodes from the inorder traversal.

    • For each subsequent node, calculate its absolute difference with the target node and compare it with the top eleme...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Two Medium DSA problem to solve

Round 2 - Technical 

(1 Question)

  • Q1. Design scalable Streaming pipeline and
  • Ans. 

    Design a scalable streaming pipeline for processing large volumes of data.

    • Use a distributed streaming framework like Apache Kafka or Apache Flink for real-time data processing.

    • Implement data partitioning and parallel processing to handle high data throughput.

    • Utilize cloud services like AWS Kinesis or Google Cloud Pub/Sub for scalability and reliability.

    • Include fault tolerance mechanisms like checkpointing and data repl...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. LLD round , write classes and its methods
Round 4 - HR 

(1 Question)

  • Q1. Salary and benefits discussion

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between docker and Kubernetes
  • Ans. 

    Docker is a containerization platform for packaging, distributing, and running applications, while Kubernetes is a container orchestration platform for automating deployment, scaling, and management of containerized applications.

    • Docker is used for creating and managing containers, while Kubernetes is used for orchestrating multiple containers into a cluster.

    • Docker provides a way to package applications and their depend...

  • Answered by AI
  • Q2. Difference between cloud and on-premise
  • Ans. 

    Cloud refers to services and resources accessed over the internet, while on-premise refers to resources located within an organization's physical premises.

    • Cloud services are accessed over the internet, allowing for scalability and flexibility.

    • On-premise resources are physically located within an organization's premises, providing more control over security and data.

    • Cloud services are typically pay-as-you-go, while on-p...

  • Answered by AI
Round 2 - Co-Founder 

(2 Questions)

  • Q1. About current company and their company infrastructure roles and responsibilities
  • Q2. AWS and GCP discussed
Round 1 - Technical 

(1 Question)

  • Q1. Kubernetes and CiCd and cloud

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on all that you have put in resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 4 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. 3 rounds last is hr
Round 3 - Technical 

(1 Question)

  • Q1. Git Aws Jenkins terraform
Round 4 - HR 

(1 Question)

  • Q1. Salary ,reason for relieving
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - One-on-one 

(1 Question)

  • Q1. Aws vpc related questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to Devops
Round 2 - Aptitude Test 

General Aptitude with Verbal, Maths and English

Round 3 - Assignment 

Personality test from and online website 16 personalities

Round 4 - One-on-one 

(1 Question)

  • Q1. Terraform Task and General Information

Interview Preparation Tips

Interview preparation tips for other job seekers - I request you guys stay away from such organisation. They don’t even have budget to hire employees but even though they call them in office. And didn’t update the total number of round, some hrs before the F2F they ask you for some new round. Don’t waste your time and money in squareboat.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is S3? What are key-pairs? what are EBS volumes?
  • Ans. 

    S3 is a scalable storage service provided by AWS. Key-pairs are used for secure access to instances. EBS volumes are block storage volumes for EC2 instances.

    • S3 is a scalable storage service provided by AWS

    • Key-pairs are used for secure access to instances

    • EBS volumes are block storage volumes for EC2 instances

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Posistrength Software Solution Private Limited Senior Devops Engineer interview:
  • Terraform
  • AWS
  • Devops
  • Unix Shell Scripting

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Reverse proxy set up in nginx?
  • Ans. 

    Reverse proxy in nginx allows routing client requests to appropriate backend servers.

    • Reverse proxy configuration in nginx involves setting up server blocks for each backend server.

    • Use the 'proxy_pass' directive to specify the backend server's address.

    • Additional configurations like load balancing, caching, and SSL termination can be added to enhance performance and security.

  • Answered by AI
  • Q2. Caching mechanism in nginx?
  • Ans. 

    Nginx uses a caching mechanism to store and serve frequently accessed content, improving performance.

    • Nginx can cache responses from proxied servers or directly from disk

    • Cache directives like proxy_cache_path and proxy_cache control caching behavior

    • Cache keys can be customized to include variables like $uri or $args

    • Cache expiration can be set using directives like proxy_cache_valid

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly questions were on nginx server

Skills evaluated in this interview

Utkarsh Classes Interview FAQs

How many rounds are there in Utkarsh Classes Senior Devops Engineer interview?
Utkarsh Classes interview process usually has 1 rounds. The most common rounds in the Utkarsh Classes interview process are Technical.

Tell us how to improve this page.

Utkarsh Classes Senior Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 370 Interviews
Unacademy Interview Questions
3.0
 • 207 Interviews
NxtWave Interview Questions
3.8
 • 186 Interviews
Vedantu Interview Questions
3.3
 • 184 Interviews
Simplilearn Interview Questions
3.2
 • 104 Interviews
Skill Lync Interview Questions
3.1
 • 90 Interviews
LEAD School Interview Questions
3.3
 • 86 Interviews
Scaler Academy Interview Questions
3.7
 • 82 Interviews
View all
Content Writer
12 salaries
unlock blur

₹1.9 L/yr - ₹3.2 L/yr

Counsellor
6 salaries
unlock blur

₹1.7 L/yr - ₹2.5 L/yr

Associate
5 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Studio Incharge
5 salaries
unlock blur

₹1.8 L/yr - ₹2.8 L/yr

Teacher
5 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Explore more salaries
Compare Utkarsh Classes with

Unacademy

3.0
Compare

Extramarks Education

3.4
Compare

Planet Spark

3.7
Compare

Vedantu

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