Upload Button Icon Add office photos
Premium Employer

i

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

HighRadius Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HighRadius Devops Engineer Interview Questions and Answers

Updated 16 Jan 2022

HighRadius Devops Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They focused on my old projects and asked questions about the projects and technologies were used.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to know end to end architecture, implementation and deployment of your project. In between they may ask questions in BASH, Python etc.,

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There were 20MCQs and 3 easy coding question that a lame coder can solve within 1:30hr

Round 2 - Assignment 

After completion of coding round they have given assignment of clearing the AWS certification ( CCP {within 1month} , SysOps {within 2 months}, DevOps{within 3months} ), after successfully completion of each certificate they will reimburse your money. Post completion of DevOps certificate they will give you Full Time Employment→*IF THEY HAVE VACANCIES FOR THE SAME, ELSE YOU WILL ONLY GET THAT 6MONTHS INTERN CERTIFICATE with 0-industry EXPERIENCE*

Round 3 - HR 

(2 Questions)

  • Q1. They will ask whether you want WFH or On-Site and they will decide package based on your choice
  • Q2. Package for entry level DevOps engineer in CleverTap is similar to a Senior Software Engineer in any company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ask the HR that whether they have enough vacancies for the role in their company or not. They will judge you based on your certificate completion regardless of how much knowledge do you have.
Not Recommended for those- who have 0-DevOps knowledge.

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
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Sep 2024.

Round 1 - Coding Test 

C programming and java

Round 2 - Coding Test 

Advanced coding on c

Round 3 - Technical 

(2 Questions)

  • Q1. Why did you choose this company
  • Ans. 

    I chose this company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that challenge me and allow me to learn new skills

    • Strong company culture that values teamwork and collaboration

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q2. What is your aim
  • Ans. 

    My aim is to continuously improve my technical skills, contribute to innovative projects, and eventually become a technical leader in the field.

    • Continuous learning and skill development

    • Contribution to innovative projects

    • Becoming a technical leader in the field

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Medium level DSA question

Round 2 - Technical 

(2 Questions)

  • Q1. Mirror binary tree
  • Q2. Optimally find n^m
  • Ans. 

    Use the exponentiation by squaring algorithm to optimally find n^m.

    • Use the exponentiation by squaring algorithm to reduce the number of multiplications needed.

    • Divide the exponent by 2 and recursively calculate the result.

    • Handle the cases when the exponent is even or odd separately.

    • Example: n^5 = n * n^2 * n^2

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Edit distance problem
  • Ans. 

    The edit distance problem involves finding the minimum number of operations required to transform one string into another.

    • The edit distance problem can be solved using dynamic programming.

    • Common operations include insertion, deletion, and substitution of characters.

    • Example: Given strings 'kitten' and 'sitting', the edit distance is 3 (substitute 'k' with 's', insert 'g', substitute 'n' with 'g').

  • Answered by AI
  • Q2. Light switch puzzle

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding , 2 SQL with some quants

Round 2 - Technical 

(1 Question)

  • Q1. Remove redundant parentheses in a expression
  • Ans. 

    Remove redundant parentheses in a expression

    • Identify the innermost parentheses

    • Evaluate the expression inside the innermost parentheses

    • Replace the innermost parentheses with the evaluated expression

    • Repeat until no more redundant parentheses exist

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Chargebee?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and focus on your strength and if you screw up a part don’t feel bad

Skills evaluated in this interview

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

A coding test on hackerrank with some basic graph problems

Round 2 - Technical 

(1 Question)

  • Q1. The interviewer asked about my projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2022. There were 6 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 - One-on-one 

(2 Questions)

  • Q1. What's your motivation to join this team?
  • Ans. 

    I am motivated to join this team because of the challenging work and the opportunity to learn and grow.

    • I am excited about the projects this team is working on and the potential impact they can have.

    • I am impressed by the team's expertise and collaborative approach.

    • I am looking for a supportive and innovative work environment where I can contribute my skills and knowledge.

    • I am eager to learn from my colleagues and develo...

  • Answered by AI
  • Q2. What are the projects/initiatives you have worked-on in your current role?
  • Ans. 

    I have worked on multiple projects including developing a new e-commerce platform and implementing a machine learning algorithm for fraud detection.

    • Developed a new e-commerce platform using React and Node.js

    • Implemented a machine learning algorithm for fraud detection using Python and TensorFlow

    • Collaborated with cross-functional teams to ensure project success

    • Improved website performance by optimizing code and reducing

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Design VS code(any IDE)
  • Ans. 

    Designing an IDE like VS code requires a deep understanding of software development and user experience.

    • Identify the target audience and their needs

    • Choose the programming languages and frameworks to support

    • Create a user-friendly interface with customizable features

    • Implement debugging and testing tools

    • Ensure compatibility with different operating systems

    • Continuously update and improve the IDE based on user feedback

  • Answered by AI
  • Q2. Discuss the architechture, limitations and abilities you would want in your app
  • Ans. 

    The app architecture should be scalable, with a user-friendly interface and secure data storage.

    • The app should have a modular architecture to allow for easy scalability and maintenance.

    • The user interface should be intuitive and easy to navigate.

    • The app should have robust security measures in place to protect user data.

    • The app should be able to handle large amounts of data and traffic.

    • The app should be compatible with m...

  • Answered by AI
  • Q3. The objective is not to code, but rather to discuss how would you implement certain features
Round 4 - Technical 

(6 Questions)

  • Q1. No coding involved but deep JavaScript, CSS, Browser, APIs related questions were asked
  • Q2. Need to explain very minute details, explain working and uses
  • Q3. What is a CDN? How does the browser work?
  • Ans. 

    CDN stands for Content Delivery Network. Browser works by sending requests to servers and receiving responses.

    • CDN is a network of servers that deliver content to users based on their geographic location.

    • CDN reduces latency and improves website performance.

    • Browser sends HTTP requests to servers and receives responses containing HTML, CSS, JS, and other assets.

    • Browser renders the received content and displays it to the u

  • Answered by AI
  • Q4. CSS positioning
  • Q5. Flexbox, Grid, Browser internals
  • Q6. NO DSA question ❌
Round 5 - Coding Test 

You get 60 minutes to code an application in your choice of programming stack. Out of which 45 minutes are set aside for implementation and 15 minutes for problem discussion and conclusion.

Make sure that you think out loud while implementing the solution and not just silently coding.

Round 6 - HR 

(1 Question)

  • Q1. Conclude the whole process, discuss salary expectations, perks, benefits, and other policy discussions

Skills evaluated in this interview

HighRadius Interview FAQs

How to prepare for HighRadius 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 HighRadius. The most common topics and skills that interviewers at HighRadius expect are AWS, Devops, Terraform, Docker and Kubernetes.

Tell us how to improve this page.

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 505 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Freshworks Interview Questions
3.5
 • 157 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.5
 • 97 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
View all
HighRadius Devops Engineer Salary
based on 21 salaries
₹4.7 L/yr - ₹17 L/yr
25% more than the average Devops Engineer Salary in India
View more details

HighRadius Devops Engineer Reviews and Ratings

based on 6 reviews

3.4/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

2.7

Salary

3.5

Job security

2.5

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 6 Reviews and Ratings
Associate Software Engineer
408 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
340 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Techno Functional Consultant
199 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
197 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer 2
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HighRadius with

Chargebee

3.9
Compare

Freshworks

3.5
Compare

Zoho

4.3
Compare

CleverTap

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