Upload Button Icon Add office photos

Filter interviews by

Raw Engineering Devops Engineer Interview Questions and Answers

Updated 27 Jan 2024

Raw Engineering Devops Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Details of ITIL
  • Q2. Basics of AWS Services
  • Q3. On call support 24×7
  • Q4. Situation based questions. How would you react if server goes down
  • Q5. Databases like postgresql mongodb redis cache
  • Q6. Basic scripting questions python and ruby
Round 2 - HR 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. Salary requirements
  • Q3. Will you work on 24×7 support requirements
  • Ans. 

    Yes, I am willing to work on 24x7 support requirements.

    • I understand the importance of providing round-the-clock support to ensure system availability and minimize downtime.

    • I am comfortable with working in shifts and being on-call to address any issues that may arise.

    • I have experience in incident management and troubleshooting, which are crucial skills for handling support requirements.

    • I am familiar with tools and techn...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ITIL, MongoDB, and basics of Azure/AwS

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic shell, DevOps related questions
  • Q2. Scripting related questions

I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is the VPN port used for UDP
  • Ans. 

    The VPN port used for UDP is typically 500.

    • The VPN port used for UDP is usually port 500.

    • UDP is a protocol that allows for faster transmission of data but does not guarantee delivery or order of packets.

    • Port 500 is commonly used for IPsec VPNs, which provide secure communication over the internet.

    • Other VPN protocols may use different ports for UDP, so it's important to check the specific configuration.

  • Answered by AI
  • Q2. Write a golang program to find furthest number from zero. No this isn't find the greatest number. Because the numbers could be negative so if an array has [ -4 2 24 55 -89 12] then -89 is furthest from zer...
  • Q3. Syntax for grep command and regex
  • Ans. 

    Syntax for grep command and regex

    • grep [options] pattern [file]

    • Regular expression (regex) is used to define the pattern

    • Examples: grep 'hello' file.txt

    • grep -i 'hello' file.txt

    • grep -r 'hello' /path/to/directory

  • Answered by AI
  • Q4. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but without taking a separate ssh session to...
  • Ans. 

    You can use the Docker API to remotely run Docker commands on a Linux server without taking a separate SSH session.

    • Use the Docker API to interact with the Docker daemon on the remote Linux server.

    • Make sure Docker is installed and running on both your laptop and the remote server.

    • Authenticate with the remote server using appropriate credentials.

    • Establish a connection to the Docker daemon on the remote server using the D...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was for Mendix which is acquired by Siemens. First round is an online test shared by email. They give you a sample test so you can familiarize with the UI and then you can proceed with the actual test which is an hour long(but mostly its 15 min of multiple choice questions and rest of the time for a program to write)

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kubernetes Docker containerisation
  • Q2. Ci cd implementation
Round 2 - Technical 

(2 Questions)

  • Q1. Cloud fundamentals , networking
  • Q2. Terraform Scripting language

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Ci cd implementation with yaml coding

I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

12 Questions

  • Q1. What are terraform modules
  • Ans. 

    Terraform modules are reusable components that allow you to define and manage infrastructure as code.

    • Modules are collections of resources that can be used across multiple Terraform configurations

    • They can be shared and reused by other teams or projects

    • Modules can be published to the Terraform Registry for easy discovery and use

    • They help to reduce duplication of code and simplify infrastructure management

  • Answered by AI
  • Q2. How would you debug apache nginx issues
  • Ans. 

    Debugging Apache Nginx issues involves checking logs, configuration files, and server status.

    • Check error logs for any relevant error messages

    • Verify the configuration files for syntax errors

    • Check server status and resource usage

    • Use tools like curl or telnet to test connectivity and response times

    • Check firewall rules and network settings

    • Consider load balancing and caching configurations

  • Answered by AI
  • Q3. How would you prevent a ddos attach
  • Ans. 

    Prevent DDoS attack by implementing various measures

    • Implementing firewalls and intrusion detection systems

    • Using load balancers to distribute traffic

    • Blocking traffic from suspicious IP addresses

    • Using content delivery networks (CDNs)

    • Limiting the number of requests per IP address

    • Using anti-DDoS services provided by cloud providers

    • Regularly monitoring network traffic for unusual patterns

  • Answered by AI
  • Q4. Is there a way to blacklist IPs in AWS
  • Ans. 

    Yes, AWS provides various methods to blacklist IPs.

    • Use AWS WAF to create rules to block specific IP addresses

    • Configure security groups to deny traffic from specific IP addresses

    • Utilize AWS Network ACLs to block traffic from specific IP addresses

  • Answered by AI
  • Q5. What is average load in Linux
  • Ans. 

    Average load in Linux refers to the amount of work being done by the system at a given time.

    • Average load is measured as a decimal number, with 1.00 representing a fully loaded system.

    • It takes into account both running processes and processes waiting for resources.

    • High average load can indicate a need for more resources or optimization of processes.

    • Command 'uptime' can be used to check the average load on a Linux system

  • Answered by AI
  • Q6. Describe inodes and file descriptors. What is the use of swap
  • Ans. 

    Inodes are data structures that store information about files on a Unix/Linux file system. File descriptors are unique identifiers for open files. Swap is a space on a hard disk used as virtual memory.

    • Inodes contain metadata about files such as ownership, permissions, and timestamps.

    • File descriptors are used by the operating system to keep track of open files and to perform I/O operations on them.

    • Swap is used when the ...

  • Answered by AI
  • Q7. What does a load balancer do when an instance in aws stops
  • Ans. 

    Load balancer routes traffic to other healthy instances

    • Load balancer detects the unhealthy instance

    • Stops sending traffic to that instance

    • Routes traffic to other healthy instances

    • Maintains high availability and scalability of the application

  • Answered by AI
  • Q8. How would you debug a website which is progressively slowing down
  • Ans. 

    To debug a progressively slowing down website, I would analyze the server logs, check for memory leaks, and optimize the code.

    • Analyze server logs to identify any errors or bottlenecks

    • Check for memory leaks in the code

    • Optimize the code by removing unnecessary scripts and optimizing images

    • Use tools like Chrome DevTools to identify performance issues

    • Consider implementing a content delivery network (CDN) to improve website

  • Answered by AI
  • Q9. Docker command to transfer an image from one machine to another without using docker registry
  • Ans. 

    Docker save and Docker load commands can be used to transfer an image from one machine to another without using a Docker registry.

    • Use the 'docker save' command to save the image as a tar file on the source machine

    • Transfer the tar file to the destination machine using any file transfer method (e.g., scp)

    • On the destination machine, use the 'docker load' command to load the image from the tar file

  • Answered by AI
  • Q10. Write a program to reverse a string in Python
  • Ans. 

    A program to reverse a string in Python

    • Use the slicing technique to reverse the string

    • Start with the last character and move backwards

    • Store the reversed string in a new variable

  • Answered by AI
  • Q11. Write ansible playbook to install apache
  • Ans. 

    Ansible playbook to install Apache

    • Create a playbook file with .yml extension

    • Define hosts and remote user

    • Add tasks to install Apache package

    • Start Apache service

    • Save and run the playbook using ansible-playbook command

  • Answered by AI
  • Q12. What is the usecase which would require setup of distributed jenkins nodes
  • Ans. 

    Distributed Jenkins nodes are used to handle large-scale builds and improve performance.

    • Large-scale builds: When there are a large number of builds to be executed simultaneously, distributed Jenkins nodes can handle the load by distributing the builds across multiple nodes.

    • Improved performance: By distributing the workload, the overall build time can be reduced, resulting in improved performance.

    • Resource utilization: D...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They have a zoom video call. And it's really lengthy. Goes beyond an hour

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Package and joininv date
Round 2 - HR 

(1 Question)

  • Q1. Salary expected and location constraints

Interview Preparation Tips

Interview preparation tips for other job seekers - Study aws lambda, aws vpc, ansible, aws cloud , aws databases, cludformation, s3 amd aws ami

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions was to explain complete architecture of application and on the basis of answer they will go deeper in questioning to check your knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Preapare mostly from your experience and not from Google top 50/100 questions. These data on Google will never get asked in interview. Be prepared scenario based questions rather than just theory.

I applied via Recruitment Consultant and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic DevOps questions need to be prepared and docker and Jenkins plays vital role in interview
  • Q2. Git, Maven, Sonar, Jenkins docker,any load balancers and scripting must to work

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't dig depth in questions but you should be prepared with all devops tools in ur stack

I appeared for an interview before Mar 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Online interview round with questions based on DSA and Devops.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Create a function that takes a string as input

    • Iterate through the string in reverse order and append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q2. What are Terraform modules?
  • Ans. 

    Terraform modules are reusable components used to organize and manage resources in Terraform configurations.

    • Modules help in organizing Terraform configurations into reusable components

    • They allow for better code reusability and maintainability

    • Modules can be shared and reused across different Terraform configurations

    • They encapsulate a set of resources and their configurations

    • Modules can have input and output variables fo

  • Answered by AI
  • Q3. How would you debug issues with Apache and Nginx?
  • Ans. 

    To debug issues with Apache and Nginx, check error logs, configuration files, server status, and network connectivity.

    • Check error logs for any relevant error messages or warnings.

    • Review configuration files for any misconfigurations or typos.

    • Check server status to ensure services are running and responding correctly.

    • Verify network connectivity to ensure there are no network issues affecting communication.

    • Use tools like ...

  • Answered by AI
  • Q4. How would you prevent a DDoS attack?
  • Ans. 

    To prevent a DDoS attack, implement network security measures, use DDoS mitigation services, and monitor traffic patterns.

    • Implement network security measures such as firewalls, intrusion detection systems, and access control lists.

    • Use DDoS mitigation services from providers like Cloudflare or Akamai to filter out malicious traffic.

    • Monitor traffic patterns and set up alerts for unusual spikes in traffic that could indic...

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

They have a zoom video call. And it's really lengthy.

  • Q1. How do you block specific IPs on your EC2 instance in AWS?
  • Ans. 

    You can block specific IPs on an EC2 instance in AWS by using security groups or network access control lists (NACLs).

    • Use security groups to block specific IPs by creating a new inbound rule with the IP address you want to block and setting the action to 'deny'.

    • Alternatively, you can use network access control lists (NACLs) to block specific IPs by adding a rule to deny traffic from the IP address you want to block.

    • Rem...

  • Answered by AI
  • Q2. What is load average in Linux?
  • Ans. 

    Load average in Linux is a measure of system activity, indicating the average number of processes waiting in the run queue over a period of time.

    • Load average is displayed as three numbers representing the average number of processes in the system run queue over the last 1, 5, and 15 minutes.

    • A load average of 1.0 means the system is at full capacity, while a load average of 0.5 means the system is half as busy.

    • High load...

  • Answered by AI
  • Q3. What is the difference between an inode number and a file descriptor?
  • Ans. 

    Inode number is a unique identifier for a file in a filesystem, while a file descriptor is a reference to an open file.

    • Inode number is a metadata associated with a file, stored in the filesystem's inode table.

    • File descriptor is a reference to an open file in a process, represented by an integer.

    • Inode number remains constant for a file even if it is moved or renamed, while file descriptor changes with each open/close op...

  • Answered by AI
  • Q4. What happens to the load balancer when an instance in AWS is deregistered?
  • Ans. 

    When an instance in AWS is deregistered, the load balancer stops sending traffic to that instance.

    • The load balancer detects the deregistration of the instance and stops routing traffic to it.

    • The load balancer redistributes the traffic to the remaining healthy instances.

    • The deregistered instance is no longer considered part of the load balancer's target group.

    • The load balancer health checks will mark the instance as unh...

  • Answered by AI
Round 3 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round with questions around Devops

  • Q1. How can you copy Docker images from one host to another without using a repository?
  • Ans. 

    Docker images can be copied from one host to another using 'docker save' and 'docker load' commands.

    • Use 'docker save' command to save the image as a tar file on the source host

    • Transfer the tar file to the destination host using SCP or any other file transfer method

    • Use 'docker load' command on the destination host to load the image from the tar file

  • Answered by AI
  • Q2. How do you debug a website template that is very slow?
  • Ans. 

    To debug a slow website template, analyze performance metrics, check for inefficient code, optimize images and assets, and consider server-side improvements.

    • Analyze performance metrics using tools like Chrome DevTools or Lighthouse to identify bottlenecks.

    • Check for inefficient code such as unnecessary loops, redundant CSS rules, or large JavaScript files.

    • Optimize images and assets by compressing files, using lazy loadi...

  • Answered by AI
  • Q3. What is a use case that would require the setup of distributed Jenkins nodes?
  • Ans. 

    Setting up distributed Jenkins nodes is necessary for scaling Jenkins infrastructure and improving performance.

    • When there is a need to run a large number of jobs simultaneously

    • When jobs require different environments or configurations

    • When jobs need to be executed on different platforms or operating systems

    • When there is a need for high availability and fault tolerance

    • When there is a need to reduce build queue times and

  • Answered by AI
  • Q4. Can you write an Ansible playbook to install Apache?
  • Ans. 

    Yes, I can write an Ansible playbook to install Apache.

    • Use the 'apt' module to install Apache on Debian/Ubuntu systems

    • Use the 'yum' module to install Apache on Red Hat/CentOS systems

    • Ensure to start and enable the Apache service after installation

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Devops, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. DevOps methodology, Cloud computing, Java, role in the previous project

Interview Preparation Tips

Interview preparation tips for other job seekers - Sticks to the basics and always have command on the technology and the subject which you have mentioned on the resume, as most of the questions will be from that part itself.

Raw Engineering Interview FAQs

How many rounds are there in Raw Engineering Devops Engineer interview?
Raw Engineering interview process usually has 2 rounds. The most common rounds in the Raw Engineering interview process are Technical and HR.
How to prepare for Raw Engineering 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 Raw Engineering. The most common topics and skills that interviewers at Raw Engineering expect are Automation, Devops, Incident management, Linux and Monitoring.
What are the top questions asked in Raw Engineering Devops Engineer interview?

Some of the top questions asked at the Raw Engineering Devops Engineer interview -

  1. Will you work on 24×7 support requireme...read more
  2. Situation based questions. How would you react if server goes d...read more
  3. Databases like postgresql mongodb redis ca...read more

Tell us how to improve this page.

Raw Engineering Devops Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

HALODOC Interview Questions
2.6
 • 13 Interviews
SurePrep Interview Questions
3.8
 • 12 Interviews
QAD Interview Questions
3.9
 • 12 Interviews
Tracelink Interview Questions
3.0
 • 12 Interviews
PlanSource Interview Questions
3.7
 • 11 Interviews
View all
Raw Engineering Devops Engineer Salary
based on 10 salaries
₹7.3 L/yr - ₹13.8 L/yr
14% more than the average Devops Engineer Salary in India
View more details

Raw Engineering Devops Engineer Reviews and Ratings

based on 5 reviews

1.7/5

Rating in categories

1.6

Skill development

1.3

Work-life balance

2.1

Salary

1.0

Job security

1.1

Company culture

1.6

Promotions

1.1

Work satisfaction

Explore 5 Reviews and Ratings
Applications Engineer
35 salaries
unlock blur

₹5.8 L/yr - ₹23.4 L/yr

QA Engineer
16 salaries
unlock blur

₹4.7 L/yr - ₹12 L/yr

Associate Software Engineer
13 salaries
unlock blur

₹8 L/yr - ₹11 L/yr

Associate Application Engineer
12 salaries
unlock blur

₹7.3 L/yr - ₹9 L/yr

Senior Application Engineer
11 salaries
unlock blur

₹12 L/yr - ₹28 L/yr

Explore more salaries
Compare Raw Engineering with

Global Edge Software

3.5
Compare

Azuga Telematics

3.3
Compare

SurePrep

3.8
Compare

Signzy Technologies

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