Upload Button Icon Add office photos
Engaged Employer

i

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

SquareBoat Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SquareBoat Senior Devops Engineer Interview Questions and Answers

Updated 27 Apr 2024

SquareBoat Senior Devops Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to Devops
Round 2 - Aptitude Test 

General Aptitude with Verbal, Maths and English

Round 3 - Assignment 

Personality test from and online website 16 personalities

Round 4 - One-on-one 

(1 Question)

  • Q1. Terraform Task and General Information

Interview Preparation Tips

Interview preparation tips for other job seekers - I request you guys stay away from such organisation. They don’t even have budget to hire employees but even though they call them in office. And didn’t update the total number of round, some hrs before the F2F they ask you for some new round. Don’t waste your time and money in squareboat.

Interview questions from similar companies

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

(1 Question)

  • Q1. Explain different LB types in k8s.
  • Ans. 

    Different LB types in k8s include NodePort, LoadBalancer, and Ingress.

    • NodePort: Exposes the service on each Node's IP at a static port.

    • LoadBalancer: Creates an external load balancer in the cloud provider's network.

    • Ingress: Manages external access to services in a cluster.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

It was easy 2 question hackerrank exam

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Ds related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DS and algo and should good logical thinking.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Coding Test 

Machine coding round where SOLID principles are evaluated for real life use case

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you practice one or two in time bound manner
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Machine coding round.

Round 2 - Technical 

(1 Question)

  • Q1. Algorithm to calculate top k flight from source to destinaton.
  • Ans. 

    Use Dijkstra's algorithm to find the top k shortest paths from source to destination.

    • Implement Dijkstra's algorithm to find the shortest paths from source to all other nodes.

    • Store the top k shortest paths found in a priority queue or heap.

    • Return the top k shortest paths as the result.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. I interviewed for Qlikview Team, So most questions were regarding qlikview.
  • Q2. Some questions were regarding SQL also.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2022. There were 5 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 

(1 Question)

  • Q1. Based on core concepts of JavaScript and React fundamentals.
Round 3 - Technical 

(1 Question)

  • Q1. Advance topics of React and JavaScript and easy and medium level of DS algo
Round 4 - Technical 

(1 Question)

  • Q1. More like technical discussion on services that helps them to manage their product and problem solving if discussion not go long.
Round 5 - HR 

(1 Question)

  • Q1. Compensation and others formalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core things and have in depth knowledge of your Techs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System Design question on designing a Tiny URL

I was interviewed before Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to identify all distinct triplets within an array that sum up to a specified number.

    • Iterate through the array and use nested loops to find all possible triplets.

    • Keep track of the sum of each triplet and compare it with the target sum.

    • Print the triplet if the sum matches the target sum, else print -1.

  • Answered by AI
  • Q2. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Can you design a database schema for a support ticketing system, such as Freshdesk?
  • Ans. 

    Designing a database schema for a support ticketing system like Freshdesk.

    • Create a 'Tickets' table with fields like ticket ID, subject, description, status, priority, etc.

    • Include a 'Users' table for customer and agent information.

    • Establish a 'Categories' table for ticket categorization.

    • Implement a 'Comments' table to track communication history.

    • Utilize foreign keys to establish relationships between tables.

  • Answered by AI
  • Q2. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves counting the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • The number of ways to reach the Nth stair is equal to the sum of ways to reach (N-1)th stair and (N-2)th stair.

    • Handle modulo 10^9+7 to avoid overflow issues.

    • Consider base cases for 0th and 1st stair.

    • Optimize the solution by using constant space instead of

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Can you design the Low-Level Design (LLD) and High-Level Design (HLD) for a system like BookMyShow?
  • Ans. 

    Designing the Low-Level Design (LLD) and High-Level Design (HLD) for a system like BookMyShow.

    • For HLD, identify main components like user interface, booking system, payment gateway, and database.

    • For LLD, break down each component into detailed modules and their interactions.

    • Consider scalability, security, and performance in both designs.

    • Example: HLD - User selects movie -> Booking system checks availability -> Pa...

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

This was hiring manager round

Round 5 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

This was culture fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in HyderabadEligibility criteriaNo criteriaFreshworks interview preparation:Topics to prepare for the interview - Data structures, HLD, LLD, Database basics, operating system basicsTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : prepare github profile with few good projects
Tip 2 : solve questions from topics like dp, stack, queue, tree
Tip 3 : prepare HLD, LLD

Application resume tips for other job seekers

Tip 1 : add your github profile, competitive coding profiles
Tip 2 : add few achievements like open source contribution, hackathons
Tip 3 : add few personal projects with github link or working site link

Final outcome of the interviewSelected

Skills evaluated in this interview

SquareBoat Interview FAQs

How many rounds are there in SquareBoat Senior Devops Engineer interview?
SquareBoat interview process usually has 4 rounds. The most common rounds in the SquareBoat interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for SquareBoat Senior 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 SquareBoat. The most common topics and skills that interviewers at SquareBoat expect are Cloud, Devops, IT Infrastructure, Windows OS and AWS.
What are the top questions asked in SquareBoat Senior Devops Engineer interview?

Some of the top questions asked at the SquareBoat Senior Devops Engineer interview -

  1. Terraform Task and General Informat...read more
  2. Related to Dev...read more

Tell us how to improve this page.

SquareBoat Senior Devops Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 748 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Ola Cabs Interview Questions
3.4
 • 138 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
View all
SquareBoat Senior Devops Engineer Salary
based on 4 salaries
₹9 L/yr - ₹11.5 L/yr
42% less than the average Senior Devops Engineer Salary in India
View more details
Software Engineer
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Designer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mobile Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SquareBoat with

CRED

3.5
Compare

Razorpay

3.6
Compare

Freshworks

3.5
Compare

Zoho

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