Upload Button Icon Add office photos

MicroGenesis Techsoft

Compare button icon Compare button icon Compare

Filter interviews by

MicroGenesis Techsoft Devops Engineer Interview Questions and Answers

Updated 20 Jun 2024

MicroGenesis Techsoft Devops Engineer Interview Experiences

1 interview found

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

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

Round 1 - Aptitude Test 

Basic aptitude test from some third party

Round 2 - One-on-one 

(2 Questions)

  • Q1. Question regarding your project
  • Q2. Contribution to the projects and other skillset you have
Round 3 - Technical 

(2 Questions)

  • Q1. What is devops and the features of devops
  • Ans. 

    DevOps is a software development methodology that combines software development (Dev) with IT operations (Ops) to shorten the systems development life cycle.

    • DevOps focuses on collaboration and communication between development and operations teams

    • Automation of processes is a key feature of DevOps

    • Continuous integration and continuous delivery (CI/CD) are important practices in DevOps

    • Infrastructure as code (IaC) is commo...

  • Answered by AI
  • Q2. Asked me to give a 10 slide presentation on devops

Interview Preparation Tips

Interview preparation tips for other job seekers - Join at own risk, this is only for mbrdi account im unsure of other projects

Skills evaluated in this interview

Devops Engineer Jobs at MicroGenesis Techsoft

View all

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Apr 2023. 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. Detailed discussion on the projects worked on
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions and answers
Round 4 - Technical 

(1 Question)

  • Q1. Face to face interview
Round 5 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and.
This is the correct place if yo want to gain more technical knowledge
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Aptitude Test 

Sorry cant provide the details

Round 2 - Technical 

(2 Questions)

  • Q1. On Amazon Web Services
  • Q2. On DEVOPS like Jenkins etc......

Interview Preparation Tips

Interview preparation tips for other job seekers - GOOOD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was of 75 minutes. And Questions are related from Quantitative, logical reasoning and Coding.

Round 2 - Coding Test 

DSA Questions were asked there

Interview Preparation Tips

Interview preparation tips for other job seekers - Do all the bsics and keep calm while solving questions

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Devops concepts
  • Q2. Kubernetes oriented questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions on the concept of oops and SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

MicroGenesis Techsoft Interview FAQs

How many rounds are there in MicroGenesis Techsoft Devops Engineer interview?
MicroGenesis Techsoft interview process usually has 3 rounds. The most common rounds in the MicroGenesis Techsoft interview process are Aptitude Test, One-on-one Round and Technical.
How to prepare for MicroGenesis Techsoft 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 MicroGenesis Techsoft. The most common topics and skills that interviewers at MicroGenesis Techsoft expect are Agile Coaching, Agile Methodology, Bamboo, Bash Scripting and Bitbucket.
What are the top questions asked in MicroGenesis Techsoft Devops Engineer interview?

Some of the top questions asked at the MicroGenesis Techsoft Devops Engineer interview -

  1. What is devops and the features of dev...read more
  2. Asked me to give a 10 slide presentation on dev...read more

Tell us how to improve this page.

MicroGenesis Techsoft Devops Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 28 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.2
 • 23 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Knoldus Inc Interview Questions
3.9
 • 20 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
View all
MicroGenesis Techsoft Devops Engineer Salary
based on 17 salaries
₹4.8 L/yr - ₹15 L/yr
5% more than the average Devops Engineer Salary in India
View more details

MicroGenesis Techsoft Devops Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

2.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
DevOps Engineer

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
171 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Associate Software Engineer
125 salaries
unlock blur

₹2.4 L/yr - ₹6.8 L/yr

Senior Software Engineer
87 salaries
unlock blur

₹5 L/yr - ₹16.6 L/yr

Devops Engineer
17 salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Lead Engineer
16 salaries
unlock blur

₹8.3 L/yr - ₹16.5 L/yr

Explore more salaries
Compare MicroGenesis Techsoft with

Accel Frontline

4.0
Compare

Pitney Bowes

3.7
Compare

Apmosys Technologies

3.5
Compare

DynPro

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