Upload Button Icon Add office photos
Engaged Employer

i

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

Infra360 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infra360 Interview Questions and Answers

Updated 18 Jan 2025

Infra360 Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Kubernet Artitecture
  • Q2. Various AWS services
Round 2 - Technical 

(2 Questions)

  • Q1. Related to project artitecture.
  • Q2. Kubernet Deployment
Round 3 - HR 

(2 Questions)

  • Q1. Why you are leaving your current organization
  • Ans. 

    Seeking new challenges and growth opportunities in a more dynamic environment.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking a more dynamic work environment

  • Answered by AI
  • Q2. Why you want to join infra360
  • Ans. 

    I want to join infra360 because of their reputation for cutting-edge technology and collaborative work environment.

    • Reputation for cutting-edge technology

    • Collaborative work environment

    • Opportunities for growth and learning

    • Exciting projects and challenges

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

(2 Questions)

  • Q1. Complete Artitecture of previous company with CTO
  • Ans. 

    The architecture of the previous company with the CTO involved a microservices-based approach with containerization and continuous integration/continuous deployment (CI/CD) pipelines.

    • Microservices architecture was implemented to break down the application into smaller, independent services.

    • Containerization technology like Docker was used to package and deploy these microservices.

    • CI/CD pipelines were set up to automate ...

  • Answered by AI
  • Q2. Various question on AWS and GCP

Interview Preparation Tips

Interview preparation tips for other job seekers - Infra360 repetately asked for salery expection in every round including 1to1,i clearely comunicated them each time,At last they negotitate and give below expection and they complained me about my 30 days notice period and there interview round take 3 monthes, totally waste of time, they even don't have there own office they work in coworks.i advice candiate don't give interview and save your time.

Devops Engineer Interview Questions asked at other Companies

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: "edcba" Input: The first line of input cont... read more
View answer (3)

Devops Engineer Interview Questions & Answers

user image Nayan Tripathi

posted on 15 Jun 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Deploying application on K8s (work flow)
  • Ans. 

    Deploying applications on Kubernetes involves creating Docker containers, defining deployment configurations, and managing resources.

    • Create Docker containers for the application

    • Define deployment configurations using YAML files

    • Use Kubernetes resources like Pods, Services, Deployments, and ConfigMaps

    • Manage resources efficiently to ensure scalability and reliability

    • Monitor application performance and health using tools li

  • Answered by AI

Skills evaluated in this interview

Devops Engineer Interview Questions asked at other Companies

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: "edcba" Input: The first line of input cont... read more
View answer (3)

Jobs at Infra360

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2022. 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 

(12 Questions)

  • Q1. What is the procedure for .net pipeline build process?
  • Ans. 

    The .NET pipeline build process involves several steps including source code management, building, testing, and deployment.

    • Source code is managed using a version control system like Git.

    • The build process involves compiling the code and creating an executable or library.

    • Unit tests are run to ensure the code is functioning correctly.

    • The application is deployed to a testing or staging environment for further testing.

    • Once ...

  • Answered by AI
  • Q2. How do you install nuget? What is the use of nuget restore?
  • Ans. 

    NuGet is a package manager for .NET that simplifies the process of finding, installing, and using third-party libraries.

    • NuGet can be installed using Visual Studio or the NuGet command-line interface (CLI).

    • NuGet restore is used to restore the packages listed in a project's packages.config file.

    • NuGet packages can be used to add functionality to a project, such as libraries, tools, and frameworks.

    • NuGet also allows for the...

  • Answered by AI
  • Q3. In pipelines, what is the approval request procedure?
  • Ans. 

    Approval request procedure in pipelines involves manual or automated approval process before deployment.

    • Approval request is triggered when a pipeline reaches a certain stage or before deployment.

    • The request can be manual or automated depending on the pipeline configuration.

    • Manual approval requires a designated person to review and approve the request.

    • Automated approval can be based on predefined rules or conditions.

    • App...

  • Answered by AI
  • Q4. If pipeline breaks in production environment, how do you handle it?
  • Ans. 

    I would follow the incident management process to identify the root cause and resolve the issue as quickly as possible.

    • Notify the relevant stakeholders and initiate the incident management process

    • Identify the root cause of the issue and take corrective actions

    • Rollback to the previous stable version if necessary

    • Communicate the status and progress of the incident to stakeholders

    • Conduct a post-incident review to identify

  • Answered by AI
  • Q5. Git - One of your colleague updated code in remote app and want to test the code. He doesnt want to bring it to local and overwrite it in local. How do you suggest he does that
  • Q6. Did you write a Docker file from scratch? What is the syntax for Docker file?
  • Ans. 

    Yes, I have written Docker files from scratch. The syntax for Docker file includes instructions and arguments.

    • Docker file is a script that contains instructions to build a Docker image

    • The syntax includes instructions like FROM, RUN, COPY, CMD, etc.

    • Arguments are used to specify details like the base image, working directory, etc.

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

    • Example: COPY .

  • Answered by AI
  • Q7. What are the Docker commands used inside a Docker file?
  • Ans. 

    Docker commands used inside a Dockerfile

    • FROM - specifies the base image

    • RUN - executes a command in the container

    • COPY - copies files from host to container

    • WORKDIR - sets the working directory for subsequent commands

    • CMD - specifies the command to run when the container starts

  • Answered by AI
  • Q8. How do you run a Docker file?
  • Ans. 

    To run a Docker file, use the 'docker build' command followed by the path to the Dockerfile.

    • Navigate to the directory containing the Dockerfile

    • Run the command 'docker build -t .'

    • The '.' at the end of the command specifies the build context

    • Once the build is complete, run the container using 'docker run '

  • Answered by AI
  • Q9. What is the use of Azure Keyvaults?
  • Ans. 

    Azure Keyvaults are used to securely store and manage cryptographic keys, secrets, and certificates.

    • Keyvaults provide a centralized location for managing secrets and keys used in applications.

    • They allow for secure storage and retrieval of sensitive information such as passwords, API keys, and certificates.

    • Keyvaults can be accessed programmatically through APIs or through the Azure portal.

    • They can also be integrated wit...

  • Answered by AI
  • Q10. How do you give permission to a particular secret to a user or application?
  • Ans. 

    To give permission to a secret, grant access to the user or application in the secret management tool.

    • Access control can be managed through the secret management tool.

    • Users or applications can be granted read or write access to a specific secret.

    • Access can be granted based on roles or individual permissions.

    • Examples of secret management tools include HashiCorp Vault and AWS Secrets Manager.

  • Answered by AI
  • Q11. What is your strategy for Kubernetes cluster?
  • Ans. 

    My strategy for Kubernetes cluster is to ensure high availability, scalability, and efficient resource utilization.

    • Implementing auto-scaling to handle sudden spikes in traffic

    • Using Kubernetes' built-in features like horizontal pod autoscaling and cluster autoscaling

    • Ensuring proper resource allocation and utilization through resource quotas and limits

    • Implementing rolling updates to minimize downtime

    • Using Kubernetes' bui...

  • Answered by AI
  • Q12. How do you autoscale in kubernetes?
  • Ans. 

    Autoscaling in Kubernetes can be achieved through Horizontal Pod Autoscaler (HPA) and Cluster Autoscaler.

    • Horizontal Pod Autoscaler (HPA) scales the number of pods based on CPU utilization or custom metrics.

    • Cluster Autoscaler scales the number of nodes in the cluster based on resource utilization.

    • HPA can be configured using kubectl autoscale command or through YAML file.

    • Cluster Autoscaler can be installed as a Kubernete...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Explain what you know about it. If you did not work on a particular technology/tool, be honest and tell them you havent got a chance to work on them.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About Yourself

Interview Preparation Tips

Round: Test
Experience: Test level was medium, as i also sat for mahindra, i found L&T test was harder than mahindra!
Tips: Just study RS agarwal

Round: Group Discussion
Experience: It was easy for me, coz i was aware about tips of GD
Tips: Be the leader, if possibleTalk in between, even if u dont know topic much
Duration: 20 minutes

Round: Interview
Experience: This question was damn easy for me, coz i can talk more based on my activities & resume
Tips: Dont hesitate, stay calm & describe yourself, but not family background

General Tips: Be yourself, no technical knowledge is required(depends on panel u get)
Skill Tips: ""
College Name: IIT Roorkee
Motivation: To get placed!

I applied via PLACEMENT

Interview Preparation Tips

Round: Technical Interview
Experience: Good detailed interview in terms of technical knowledge
Tips: Should be thorough with the projects you have done during the course

General Tips: be confident of what you put in your resume
Technical knowledge regarding projects undertaken during engineering should be sound
Be confident
Skills: Communication, Thinking capability, knowledge applying capability
College Name: V.E.S Institute Of Technology
Motivation: Opportunity to work in a renowned and core technical company
Funny Moments: We consider the interview panelists to be as tough as our viva externals. Interviewers are mostly on your side(contrary to viva professors :P)

I appeared for an interview before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Ocampo, basic electronics and C

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 50

Skills: Embedded Systems, C Programming
College Name: Sahyadri college of engineering

Interview Questionnaire 

3 Questions

  • Q1. Why do you want to join the company
  • Ans. 

    I want to join the company because of its innovative projects and strong company culture.

    • I am impressed by the company's track record of successful projects.

    • I believe the company's values align with my own professional goals.

    • I am excited about the opportunity to work with a talented team of professionals.

    • I see great potential for growth and development within the company.

  • Answered by AI
  • Q2. Why should we choose you
  • Ans. 

    I am a dedicated and hardworking individual with relevant skills and experience.

    • I have a strong work ethic and am committed to delivering high-quality results.

    • I have relevant experience and skills that align with the requirements of the position.

    • I am a quick learner and adaptable to new environments.

    • I am passionate about the industry and eager to contribute to the team.

  • Answered by AI
  • Q3. What profile would you like to like to work in
  • Ans. 

    I would like to work in a marketing and communications profile.

    • Experience in creating marketing campaigns

    • Strong communication skills

    • Ability to analyze market trends and consumer behavior

    • Proficiency in social media and digital marketing

    • Collaboration with cross-functional teams

  • Answered by AI

Interview Preparation Tips

College Name: NIT Kurukshetra

I applied via Campus Placement and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is simply a formal discussion for knowing about candidates' communication & soft skill. It describes that how you present yourself .
Interview comprises "inter + view". So, interviewer only wants that candidate should according to job profile.

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

Interview Questionnaire 

4 Questions

  • Q1. Asked about To mentioned areas of weakness of L&T, or needs improvement?
  • Q2. How to make check or maintain elevation of Underground Piping.
  • Ans. 

    Maintain elevation of underground piping by using level instruments and proper installation techniques.

    • Use a level instrument to check the elevation of the piping during installation.

    • Ensure that the piping is installed with a consistent slope to prevent low spots where water can accumulate.

    • Regularly inspect the piping to ensure that it has not shifted or settled, which can affect the elevation.

    • Consider using supports o...

  • Answered by AI
  • Q3. My Job specific role & responsibility, in previous organisation.
  • Ans. 

    In my previous role as Assistant Manager, I was responsible for overseeing daily operations, managing staff, and ensuring customer satisfaction.

    • Managed a team of employees and delegated tasks effectively

    • Handled customer complaints and resolved issues in a timely manner

    • Created and implemented strategies to improve efficiency and productivity

    • Collaborated with other departments to achieve company goals

    • Conducted performanc

  • Answered by AI
  • Q4. Welding Electrodes for different materials.
  • Ans. 

    Welding electrodes are chosen based on the material being welded. Different materials require different types of electrodes.

    • Electrodes for mild steel have a coating that produces a stable arc and minimal spatter.

    • Stainless steel electrodes have a coating that resists corrosion and produces a smooth, clean weld.

    • Cast iron electrodes have a high nickel content to prevent cracking.

    • Aluminum electrodes have a special coating ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Be confidant, Be Humble, Be aware about your roles & Responsibility during job Period.

Interview Questionnaire 

5 Questions

  • Q1. Pertaining to the mentioned roles and responsibilities in your resume
  • Q2. Planning and work order creation
  • Q3. Piling activities
  • Q4. Introduction
  • Q5. Cross checking of documents

Interview Preparation Tips

Round: Resume Shortlist
Experience: On the criteria that I scored atleast 60% overall and had no gap between job/s.

Infra360 Interview FAQs

How many rounds are there in Infra360 interview?
Infra360 interview process usually has 3 rounds. The most common rounds in the Infra360 interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Infra360 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 Infra360. The most common topics and skills that interviewers at Infra360 expect are Computer Networking, Troubleshooting, CCTV Monitoring, DevOps and Computer Science.
What are the top questions asked in Infra360 interview?

Some of the top questions asked at the Infra360 interview -

  1. Deploying application on K8s (work fl...read more
  2. Various question on AWS and ...read more
  3. Related to project artitectu...read more

Tell us how to improve this page.

Infra360 Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Tata Projects Interview Questions
4.2
 • 427 Interviews
Adani Group Interview Questions
3.9
 • 187 Interviews
GMR Group Interview Questions
4.0
 • 80 Interviews
GAMMON INDIA Interview Questions
3.8
 • 29 Interviews
Essar Group Interview Questions
3.7
 • 28 Interviews
Punj Lloyd Interview Questions
4.3
 • 18 Interviews
View all

Infra360 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
DevOps Engineer AWS/Azure

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Director of DevOps and Cloud Operations

Gurgaon / Gurugram

10-15 Yrs

Not Disclosed

DevOps Intern

Gurgaon / Gurugram

3-4 Yrs

Not Disclosed

Explore more jobs
Compare Infra360 with

Larsen & Toubro Limited

4.0
Compare

Tata Projects

4.2
Compare

GMR Group

4.0
Compare

Reliance Infrastructure

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