Upload Button Icon Add office photos

Filter interviews by

Minerva Technologies full stack .net developer Interview Questions and Answers

Updated 24 Oct 2023

Minerva Technologies full stack .net developer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Oct 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 - Coding Test 

Ask simple coading questions

Round 3 - HR 

(1 Question)

  • Q1. Discuss about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops is important

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. OOPS Concepts, single web frame structure, Angular, React JS.... .Net MVC , .Net Core , Entity Frame Works etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go With Some deepth of knowledge on what mentions in interview Questions
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 Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was mainly java, interviewers are very good and supportive to elaborate more about problem.
  • Q2. Scenario based on your earlier work experience
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic level react questions
Round 2 - Technical 

(1 Question)

  • Q1. Some react coding and some basic level react questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic react stuff and you will be fine
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Aptitude Test 

Quantitative , figure ,mcq question based on tech stack and 2 coding question which are basic. 90 minute time limit.

Round 2 - Technical 

(2 Questions)

  • Q1. Angular question
  • Q2. .net question and sql question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Discuss about OWASP features

Interview Preparation Tips

Interview preparation tips for other job seekers - Discuss about Payments flow ?
Discuss about different types of cards?
Discuss about Java 8 features?
Discuss about project?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Longest common substring in an array
  • Ans. 

    Find the longest common substring in an array of strings.

    • Iterate through each string in the array and compare with all other strings to find common substrings.

    • Keep track of the longest common substring found so far.

    • Return the longest common substring at the end.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain Virtual DOM in React
  • Ans. 

    Virtual DOM in React is a lightweight copy of the actual DOM, used for efficient updates and rendering.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created in memory.

    • When changes are made to the UI, React compares the Virtual DOM with the actual DOM to identify the differences.

    • React then updates only the necessary parts of the actual DOM, minimizing the number of DOM manipulations for better p...

  • Answered by AI
  • Q2. How to optimise a React application
  • Ans. 

    Optimising a React application involves code splitting, lazy loading, using memoization, reducing unnecessary re-renders, and optimizing network requests.

    • Implement code splitting to load only necessary code for each route or component.

    • Use lazy loading to load components only when they are needed, reducing initial load time.

    • Utilize memoization techniques like useMemo and useCallback to prevent unnecessary re-renders.

    • Avo...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jul 2023. 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 - screening 

(2 Questions)

  • Q1. The initial screening Round was done
  • Q2. Expectations, CTC, job role
Round 3 - Technical 

(2 Questions)

  • Q1. Questions fired from java spring and react
  • Q2. Answered all and cleared the interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Had one of the worst experiences with this Quest Global.

the lack of professionalism was evident and it was a complete waste of time. which I spent on the interview process.

During the screening, I mentioned that I'm holding an offer of X LPA, and then after asking my expectation we moved ahead and I cleared the technical round.
during the HR round, I was offered X+2 LPA and was told she would get back to me.
2 days passed and no response, third day I was told that the offer can only be rolled for 40% less than what was offered to me. which was 5 LPA less than the offer I was holding.

Zero Ethics, no morals, and very unprofessional and Disappointing.
I had a highly unpleasant experience and would not recommend to anyone
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(4 Questions)

  • Q1. Tell me about your self?
  • Q2. What is oops in javascript?
  • Ans. 

    Object-oriented programming concepts in JavaScript.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Objects can inherit properties and methods from other objects.

    • Polymorphism: Objects can share the same interface but have different implementations.

  • Answered by AI
  • Q3. What is props in react js?
  • Ans. 

    Props in React JS are read-only properties that are passed from parent components to child components.

    • Props allow you to pass data from a parent component to a child component.

    • Props are immutable and cannot be changed by the child component.

    • Props are accessed in the child component using this.props.

    • Example: where 'name' is a prop passed from the parent component.

  • Answered by AI
  • Q4. Props in react js?
  • Ans. 

    Props in React JS are used to pass data from parent components to child components.

    • Props are read-only and cannot be modified by the child component.

    • Props are passed down the component tree using custom attributes.

    • Props help in creating reusable components by passing dynamic data.

    • Example:

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Find All Subsets

    Given an array arr consisting of 'N' distinct integers, your task is to generate all possible non-empty subsets of the given array.

    You can return the subsets in any order.

    Input:

    The ...
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Medium

The technical question was mainly based on my resume, followed by coding questions.

Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was a coding round

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from MVJ College of Engineering. I applied for the job as Full Stack Engineer in BengaluruEligibility criteria7 CGPAMicrofocus interview preparation:Topics to prepare for the interview - OOPS, Operating Systems, Data Structures, Database, Machine Learning, AngularTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Maintain a clean resume and have in-depth knowledge of the projects, as in the technical round the interviewer mainly asks technical questions regarding the projects. Questions based on projects are predictable and answering them can give a good impression during the interview.
Tip 2 : Be clear in explaining the approach to coding questions.
Tip 3 : Admit it, if you are not confident in a particular topic. Accepting your weakness is better than a wrong answer.

Application resume tips for other job seekers

Tip 1 : Use formal resume templates and maintain a neat resume.
Tip 2 : Have few development projects on the resume with brief summary of the skills implemented.
Tip 3 : Mention your skills in proper sub-sections.

Final outcome of the interviewSelected

Skills evaluated in this interview

Minerva Technologies Interview FAQs

How many rounds are there in Minerva Technologies full stack .net developer interview?
Minerva Technologies interview process usually has 3 rounds. The most common rounds in the Minerva Technologies interview process are Resume Shortlist, Coding Test and HR.

Tell us how to improve this page.

Minerva Technologies full stack .net developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
View all

Minerva Technologies full stack .net developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
7 salaries
unlock blur

₹1.1 L/yr - ₹3.6 L/yr

Junior Programmer
5 salaries
unlock blur

₹1.1 L/yr - ₹4.2 L/yr

Trainee
4 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Senior Programmer
3 salaries
unlock blur

₹5.9 L/yr - ₹6.7 L/yr

Senior UI Designer
3 salaries
unlock blur

₹6.4 L/yr - ₹19 L/yr

Explore more salaries
Compare Minerva Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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