Upload Button Icon Add office photos

Cybage

Compare button icon Compare button icon Compare

Filter interviews by

Cybage Cloud Devops Engineer Interview Questions and Answers

Updated 4 May 2024

Cybage Cloud Devops Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain Docker File?
  • Ans. 

    Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Dockerfile is used to build Docker images by specifying a series of instructions.

    • Each instruction in a Dockerfile creates a layer in the image.

    • Common instructions include FROM, RUN, COPY, CMD, and ENTRYPOINT.

    • Example: FROM ubuntu:latest, RUN apt-get update, COPY . /app, CMD ["python", "app.py"]

  • Answered by AI
  • Q2. Explain all the contents of a Docker file.
  • Ans. 

    A Docker file contains instructions to build a Docker image.

    • Specifies the base image

    • Sets environment variables

    • Installs dependencies

    • Copies files into the image

    • Defines commands to run when the container starts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy questions.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test had all the quants topics

Round 2 - Technical 

(1 Question)

  • Q1. They asked about my projects done
Round 3 - HR 

(1 Question)

  • Q1. Asked about personal details

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a proper knowledge on your projects done.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about GitHub Actions and octopus Deploy and AWS related questions
  • Q2. Terraform about daily tasks

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed interviewed they asked GitHub Actions and octopus
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do two pods communicate in different namespace
  • Q2. Explain k8s architecture

Devops Engineer Interview Questions & Answers

ValueLabs user image kondriyeswanth 123

posted on 27 Jul 2024

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

(5 Questions)

  • Q1. CICD Pipelines flow
  • Q2. Kubernetes Ingress , kubeconfig
  • Q3. Python lists arrays strings
  • Q4. Docker build context
  • Ans. 

    Docker build context is the set of files and directories that are sent to the Docker daemon when building an image.

    • The build context is specified using the -f flag in the docker build command.

    • It is recommended to keep the build context small to improve build performance.

    • Common files included in the build context are Dockerfile, source code, and any necessary dependencies.

    • Excluding unnecessary files and directories from

  • Answered by AI
  • Q5. Multistage build

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Kubernetes architecture
  • Q2. CICD pipeline in jenkins
  • Ans. 

    CICD pipeline in Jenkins automates the process of building, testing, and deploying code.

    • Jenkins is a popular automation server used for CICD pipelines

    • CICD pipeline in Jenkins typically involves stages like build, test, deploy

    • Jenkins plugins can be used to integrate with various tools for automation

    • Pipeline scripts in Jenkins can be written in Groovy language

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Asked about previous experience roles
  • Q2. Asked more questions about Newrelic
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. High level interview on linux kubernetes and docker
  • Q2. General commands on Linux. How to check open port? What is network interface? Question related to subnetting
  • Q3. What is docker How to build docker images
  • Ans. 

    Docker is a containerization platform that allows you to package and run applications in isolated environments.

    • Docker is an open-source platform that automates the deployment, scaling, and management of applications.

    • It uses containerization technology to create lightweight, portable, and self-sufficient containers.

    • Docker images are built using Dockerfiles, which are text files that contain instructions for building the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basics thoroughly.
Basics of protocols dhcp/dns/public or private ip

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Write a shell skript with arguments included
  • Ans. 

    A shell script with arguments included

    • Start with a shebang line to specify the shell interpreter

    • Define variables to store the arguments passed to the script

    • Use conditional statements to handle different scenarios based on the arguments

    • Use loops to iterate over multiple arguments

    • Add comments to explain the purpose of the script and each section

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Happiest Minds Technologies Devops Engineer interview:
  • Shell Scripting
  • Linux
  • Jenkins
  • Docker
Interview preparation tips for other job seekers - be prepare all the basics...and shell scrpting knowledge

Skills evaluated in this interview

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are the AWS services that you worked
  • Q2. What are branching strategies in GIT
  • Ans. 

    Branching strategies in GIT are ways to manage code changes and collaboration among team members.

    • Gitflow - a popular branching model that uses a master branch for production-ready code and a develop branch for ongoing development

    • Trunk-based development - a strategy where all changes are made directly to the main branch, with frequent merges to keep the codebase up-to-date

    • Feature branching - a method where each feature ...

  • Answered by AI
  • Q3. Terraform use cases and uses of it
  • Ans. 

    Terraform is an infrastructure as code tool used to provision and manage cloud resources.

    • Automates infrastructure deployment

    • Supports multiple cloud providers

    • Enables version control for infrastructure

    • Allows for modular and reusable code

    • Facilitates collaboration between teams

    • Examples: provisioning EC2 instances, creating S3 buckets, managing DNS records

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wissen Infotech AWS Devops Engineer interview:
  • Terraform
  • Ansible
  • Docker
  • kunernetes
  • Cloudformation
  • Codepipeline
Interview preparation tips for other job seekers - Brush up on every service in AWS and important Devops Tools .

Skills evaluated in this interview

Cybage Interview FAQs

How many rounds are there in Cybage Cloud Devops Engineer interview?
Cybage interview process usually has 1 rounds. The most common rounds in the Cybage interview process are Technical.
How to prepare for Cybage Cloud Devops 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 Cybage. The most common topics and skills that interviewers at Cybage expect are AWS, Ansible, Azure, Bash and Devops.

Tell us how to improve this page.

Cybage Cloud Devops Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
EPAM Systems Interview Questions
3.7
 • 538 Interviews
View all
Cybage Cloud Devops Engineer Salary
based on 8 salaries
₹6 L/yr - ₹11.5 L/yr
5% less than the average Cloud Devops Engineer Salary in India
View more details
Software Engineer
3.2k salaries
unlock blur

₹3.2 L/yr - ₹12.5 L/yr

Senior Software Engineer
2k salaries
unlock blur

₹6 L/yr - ₹19.8 L/yr

QA Engineer
1.1k salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Senior QA Engineer
758 salaries
unlock blur

₹6 L/yr - ₹14.2 L/yr

System Analyst
739 salaries
unlock blur

₹9.6 L/yr - ₹25 L/yr

Explore more salaries
Compare Cybage with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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