Upload Button Icon Add office photos

Filter interviews by

Trademo Devops Engineer Interview Questions and Answers

Updated 14 Oct 2024

Trademo Devops Engineer Interview Experiences

1 interview found

Devops Engineer Interview Questions & Answers

user image Rehan Raza

posted on 14 Oct 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Difference between ansible and and Terraform
  • Ans. 

    Ansible is a configuration management tool while Terraform is an infrastructure provisioning tool.

    • Ansible is used for automating configuration management tasks on servers.

    • Terraform is used for provisioning and managing infrastructure as code.

    • Ansible uses YAML for configuration management while Terraform uses HashiCorp Configuration Language (HCL).

    • Ansible is agentless, while Terraform requires an agent to be installed o...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What are new DevOps tool
  • Ans. 

    Some new DevOps tools include Kubernetes, Terraform, and Jenkins X.

    • Kubernetes is a container orchestration tool used for automating deployment, scaling, and management of containerized applications.

    • Terraform is an infrastructure as code tool that allows for building, changing, and versioning infrastructure safely and efficiently.

    • Jenkins X is a CI/CD tool built on top of Jenkins that is specifically designed for cloud-n

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to DevOps because I am passionate about automation, collaboration, and continuous improvement in software development.

    • Passionate about automation and streamlining processes

    • Interested in collaborating with cross-functional teams

    • Excited about implementing continuous improvement practices

    • Seeking new challenges and opportunities for growth

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. It was about terraform
  • Q2. It was about kubernetes
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About Linux and AWS
  • Q2. Python coding Test
Round 2 - Technical 

(2 Questions)

  • Q1. Deep dive in AWS
  • Ans. 

    AWS is a cloud computing platform by Amazon offering a wide range of services for storage, computing, networking, databases, and more.

    • AWS provides a wide range of services including EC2 (Elastic Compute Cloud), S3 (Simple Storage Service), RDS (Relational Database Service), and more.

    • AWS offers scalability, flexibility, and cost-effectiveness for businesses of all sizes.

    • AWS has a global infrastructure with data centers ...

  • Answered by AI
  • Q2. Deep dive in Terraform and Python
  • Ans. 

    Terraform is an infrastructure as code tool, while Python is a versatile programming language often used for automation in DevOps.

    • Terraform is used for provisioning and managing infrastructure resources in a declarative way.

    • Python is commonly used for scripting, automation, and building tools in the DevOps ecosystem.

    • Terraform can be integrated with Python scripts to enhance automation capabilities.

    • Both Terraform and Py...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for OpenText Technologies Devops Engineer interview:
  • AWS
  • Python
  • Terraform
Interview preparation tips for other job seekers - Prepare well with whatever you have mentioned in your resume.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is DaemonSet
  • Ans. 

    DaemonSet ensures that all or some nodes run a copy of a Pod

    • DaemonSet is a Kubernetes resource that ensures a copy of a Pod is running on all or some nodes in a cluster

    • It is useful for running a single instance of a Pod on every node in a cluster

    • DaemonSet is commonly used for monitoring, logging, and other system-level services

    • Example: Running a logging agent on every node in a Kubernetes cluster

  • Answered by AI
  • Q2. What is deployment and difference between statefulset and deployment
  • Ans. 

    Deployment is a way to manage and update applications in Kubernetes. StatefulSet is used for stateful applications with unique identities.

    • Deployment is used for stateless applications, while StatefulSet is used for stateful applications.

    • Deployment manages replica sets and ensures a desired state is maintained.

    • StatefulSet maintains a unique identity for each pod, making it suitable for applications that require stable a...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - HR 

(1 Question)

  • Q1. About you your experience and communication skills
Round 3 - Technical 

(2 Questions)

  • Q1. Depends upon team leader Ask basics as well as the issue they are facing during their work.
  • Q2. Especially Linux file system How to mount additional disk Booting process Docker file structure
Round 4 - Technical 

(2 Questions)

  • Q1. Second technical round is depends upon the TL he can ask your experience and issues
  • Q2. And can ask questions about cloud AWS and azure
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is your Strength?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question on the skills that you have written in resume
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant

Round 1 - Technical 

(9 Questions)

  • Q1. About experience in DevOps ?
  • Q2. How do you approach to create a jenkins pipeline ?
  • Ans. 

    To create a Jenkins pipeline, I follow these steps:

    • Define the stages and steps of the pipeline

    • Create a Jenkinsfile with the pipeline code

    • Configure Jenkins to use the Jenkinsfile

    • Test the pipeline and make necessary adjustments

    • Integrate with version control for continuous integration

    • Use plugins for additional functionality

  • Answered by AI
  • Q3. Syntax to print jenkins secrets ?
  • Ans. 

    To print Jenkins secrets, use the syntax: printenv

    • Use the 'printenv' command followed by the name of the secret to print its value

    • Make sure to have the necessary permissions to access the secret

    • Example: printenv MY_SECRET

  • Answered by AI
  • Q4. Creation of Docker image using Dockerfile ?
  • Ans. 

    Dockerfile is a script that contains instructions to build a Docker image.

    • Create a Dockerfile with instructions for building the image

    • Use the 'docker build' command to build the image from the Dockerfile

    • Example: FROM ubuntu:latest RUN apt-get update && apt-get install -y nginx

    • Example: docker build -t myimage:latest .

  • Answered by AI
  • Q5. Difference between CMD and RUN in Dockerfile ?
  • Ans. 

    CMD is used to specify the default command to be executed when a container is launched. RUN is used to execute commands during the build process.

    • CMD is used to set the default command or parameters for the container

    • RUN is used to execute commands during the build process to create the image

    • CMD can be overridden by passing arguments to docker run command

    • RUN executes the command and creates a new layer on top of the curr...

  • Answered by AI
  • Q6. Difference between Java and Nodejs ?
  • Ans. 

    Java is a statically typed language while Nodejs is a runtime environment for executing JavaScript code.

    • Java is compiled while Nodejs is interpreted

    • Java is better for large-scale enterprise applications while Nodejs is better for real-time applications

    • Java has a larger community and more libraries while Nodejs has a simpler and more lightweight architecture

    • Java is used for Android app development while Nodejs is used f

  • Answered by AI
  • Q7. What is PaaS, IaaS & SaaS ?
  • Ans. 

    PaaS, IaaS, and SaaS are cloud computing models that provide different levels of infrastructure and software services.

    • PaaS (Platform as a Service) provides a platform for developers to build and deploy applications without worrying about infrastructure management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources such as servers, storage, and networking.

    • SaaS (Software as a Service) provides sof...

  • Answered by AI
  • Q8. What is DevOps ?
  • Ans. 

    DevOps is a software development methodology that emphasizes collaboration and communication between development and operations teams.

    • DevOps aims to streamline the software development process by breaking down silos between development and operations teams

    • It involves using automation and continuous delivery to speed up the release cycle

    • DevOps also emphasizes monitoring and feedback to ensure that software is reliable a...

  • Answered by AI
  • Q9. What is build in Java ?
  • Ans. 

    Build in Java refers to the process of compiling source code into executable code.

    • Build process involves compiling, testing, and packaging the code

    • Java build tools like Maven and Gradle automate the build process

    • Build artifacts can be JAR, WAR, or EAR files

    • Build process can be customized using build scripts like Ant

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 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 - call interview 

(1 Question)

  • Q1. Introduction why you choose devops any programming language you have learned
  • Ans. 

    I chose DevOps because it allows me to bridge the gap between development and operations, and I have learned multiple programming languages.

    • DevOps enables faster and more efficient software delivery

    • I have experience with programming languages such as Python, Java, and Bash

    • DevOps practices such as continuous integration and deployment are essential for modern software development

    • I enjoy working in a collaborative enviro...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for VMware Software Devops Engineer interview:
  • introduction of your self
Interview preparation tips for other job seekers - if you searching as a fresher .Be practice with confidence to introduce your self .And you have to must be what the interviewer asking first listen carefully,and talk cofidenc with good english.

Skills evaluated in this interview

Trademo Interview FAQs

How many rounds are there in Trademo Devops Engineer interview?
Trademo interview process usually has 3 rounds. The most common rounds in the Trademo interview process are One-on-one Round and HR.
How to prepare for Trademo 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 Trademo. The most common topics and skills that interviewers at Trademo expect are Ansible, Kubernetes, Cloud Services, DevOps and Docker.
What are the top questions asked in Trademo Devops Engineer interview?

Some of the top questions asked at the Trademo Devops Engineer interview -

  1. Difference between ansible and and Terraf...read more
  2. What are new DevOps t...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Trademo interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Data Engineer
8 salaries
unlock blur

₹6.3 L/yr - ₹11.9 L/yr

Software Developer
6 salaries
unlock blur

₹5.4 L/yr - ₹13 L/yr

Software Engineer
5 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Software Development Engineer
5 salaries
unlock blur

₹11.5 L/yr - ₹20 L/yr

Data Research Analyst
5 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare Trademo with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.9
Compare

Paytm

3.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview