Upload Button Icon Add office photos

Filter interviews by

CloudHedge Technologies Devops Engineer Interview Questions and Answers

Updated 5 May 2024

CloudHedge Technologies Devops Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of linux, operating systems, kubernetes

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to networking, cloud.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Well. Prepare for networking concepts, cloud concepts, I would recommend to go through Microsoft Azure Az 900 certificate. It is easy certificate and well start for your cloud journey.

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

Round 1 - Technical 

(1 Question)

  • Q1. Rolles and responsibilities of your previous organization and some of git cmds and docker basicks

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain knowledge for all tools a bit focus on Kubernetes.

I applied via Naukri.com and was interviewed before Aug 2021. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They discuss what is what on internal part subjects
Round 2 - Coding Test 

Python sample coding test after asking some python scripts questions and discussing technical round

Round 3 - Technical 

(1 Question)

  • Q1. Around 40mnt technical round. the topic is Jenkins, git, docker, python, bash
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager round. manager discuss project details and my experience previous company
Round 5 - HR 

(1 Question)

  • Q1. Package discussion and company details

Interview Preparation Tips

Topics to prepare for Druva Devops Engineer interview:
  • Python
  • Bash
  • golang
Interview preparation tips for other job seekers - Please be prepare good script side. focus on programming laungages

Devops Engineer Interview Questions & Answers

Zoho user image thulasinadh bathala

posted on 28 Feb 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

They will provide 10-20 aptitude questions and 10-20 coding outputs or flowchart related questions

Round 2 - Coding Test 

They will give 5 coding questions, you can write in any programming language, irrespective of output they check how you are thinking and which logic you are using and efficiency of the code

Round 3 - Coding Test 

In this round they will give bulk application programme no need to finish it but they will check your thought process and depth in oops concepts,

Round 4 - Technical 

(3 Questions)

  • Q1. In this round they will ask technical questions, you have to explain use case with live examples
  • Q2. What is static key word where can we use
  • Ans. 

    The static keyword in Java is used to create variables and methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

  • Answered by AI
  • Q3. Why public static void main
  • Ans. 

    The public static void main method is the entry point for a Java program.

    • public: Access modifier indicating that the method can be accessed from any other class.

    • static: Indicates that the method belongs to the class itself, not an instance of the class.

    • void: Indicates that the method does not return any value.

    • main: The name of the method that serves as the entry point for the program.

    • String[] args: An array of strings ...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Will ask casual questions

Interview Preparation Tips

Interview preparation tips for other job seekers - write a efficient code, use minimum variables, no need of scanners to read variables just concentrate on logic.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How to check the open files in the linux without using lsof
  • Ans. 

    To check open files in Linux without using lsof, you can use the /proc filesystem.

    • Access the /proc//fd directory to view open files for a specific process.

    • Use the find command to search for open files in the /proc directory.

    • Check the /proc/sys/fs/file-nr file to see the total number of open files system-wide.

Answered by AI
  • Q2. What is /proc linux
  • Ans. 

    The /proc filesystem in Linux is a virtual filesystem that provides detailed information about the system's hardware, processes, and kernel.

    • It is a virtual filesystem located at /proc that allows access to kernel data structures.

    • It provides information about processes, hardware, and kernel configuration.

    • Files in /proc can be read to gather system information, such as CPU usage, memory usage, and network statistics.

  • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. Difference between http1.1 vs https2
    • Ans. 

      HTTP/1.1 is a protocol for transferring data over the internet, while HTTPS/2 is a secure version of HTTP/2 with improved performance.

      • HTTP/1.1 is not secure by default, while HTTPS/2 provides encryption and security.

      • HTTP/1.1 uses multiple connections for parallel loading of resources, while HTTPS/2 uses a single connection with multiplexing.

      • HTTPS/2 supports header compression, reducing overhead and improving performanc...

    • Answered by AI
    • Q2. What is grpc ?
    • Ans. 

      gRPC is a high-performance, open-source RPC (Remote Procedure Call) framework developed by Google.

      • gRPC stands for Google Remote Procedure Call.

      • It uses HTTP/2 for transport, Protocol Buffers for serialization, and supports multiple programming languages.

      • gRPC allows for efficient communication between services in a microservices architecture.

      • It enables bi-directional streaming and authentication features.

      • Example: gRPC ca...

    • Answered by AI

    Skills evaluated in this interview

    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. Git gitlab Jenkins docker nexus sonarqube tomcat ask about.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Devops engineer.key skills, git gitlab Jenkins docker nexus sonarqube tomcat jira shell maven etc.
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. The general cloud and devops related to your project based questions. They deep dive into Aws and docker and Kubernetes questions.
    • Q2. Expalin kubernetes architecture
    • Ans. 

      Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

      • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

      • Master node components include API server, scheduler, controller manager, and etcd.

      • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

      • Nodes communicate with each oth...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be prepared for CICD and containerization tools and clear with basics.

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. About kubernetes and it's ecosystem
    • Q2. Architecture of k8s
    • Ans. 

      Kubernetes (k8s) is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

      • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

      • Master node components include API server, scheduler, controller manager, and etcd.

      • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

      • Pods are t...

    • Answered by AI
    Round 2 - Case Study 

    About previous project work experience and how it's solving major challenges

    Skills evaluated in this interview

    I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 

    (2 Questions)

    • Q1. How to make call from one namespace t another in AKS environment
    • Ans. 

      To make a call from one namespace to another in AKS environment, use the fully qualified domain name (FQDN) of the service.

      • Use the FQDN of the service to make a call from one namespace to another in AKS environment

      • The FQDN should include the namespace and service name, for example: myservice.mynamespace.svc.cluster.local

      • Ensure that the service is exposed within the cluster and has a stable IP address

      • Use the appropriate...

    • Answered by AI
    • Q2. How to divide AKS pods based on the load
    • Ans. 

      AKS pods can be divided based on load using horizontal pod autoscaling (HPA) and cluster autoscaler.

      • Use HPA to automatically scale the number of replicas of a deployment based on CPU or memory usage.

      • Use cluster autoscaler to add or remove nodes from the AKS cluster based on the demand.

      • Use resource requests and limits to ensure that pods are scheduled on nodes with sufficient resources.

      • Consider using node selectors or a...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare for Kubernetes commands . Also prepare for networking concepts

    Skills evaluated in this interview

    CloudHedge Technologies Interview FAQs

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

    Tell us how to improve this page.

    CloudHedge Technologies Devops Engineer Interview Process

    based on 1 interview

    Interview experience

    1
      
    Bad
    View more

    Devops Engineer Interview Questions from Similar Companies

    View all
    CloudHedge Technologies Devops Engineer Salary
    based on 6 salaries
    ₹6.5 L/yr - ₹12 L/yr
    22% more than the average Devops Engineer Salary in India
    View more details
    Principle Solution Architect
    11 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Software Engineer
    7 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Software Engineer
    7 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Devops Engineer
    6 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior QA Engineer
    4 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare CloudHedge Technologies with

    Druva

    3.7
    Compare

    RackBank Datacenters

    4.2
    Compare

    Nutanix

    3.7
    Compare

    InMobi

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