Upload Button Icon Add office photos

Filter interviews by

Mirafra Technologies Senior Software Developer Interview Questions, Process, and Tips

Updated 1 Apr 2024

Mirafra Technologies Senior Software Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain Angular File structure
  • Ans. 

    Angular file structure organizes code into modules, components, services, and assets.

    • Angular projects have a src folder containing app and assets folders

    • App folder contains modules, components, services, and other files

    • Components have their own folder with HTML, CSS, and TypeScript files

    • Services are placed in a separate folder for reusability

    • Assets folder stores static files like images and fonts

  • Answered by AI
  • Q2. Explain auth guards
  • Ans. 

    Auth guards are used in software development to control access to certain resources based on user authentication and authorization.

    • Auth guards are used in web applications to restrict access to certain routes or resources based on user authentication.

    • They are commonly used in frameworks like Angular and Laravel to protect routes from unauthorized access.

    • Auth guards can check if a user is authenticated and authorized to...

  • Answered by AI
  • Q3. Explain Http client module
  • Ans. 

    Http client module is a module in programming languages that allows communication with HTTP servers.

    • Http client module is used to send requests to servers and receive responses.

    • It can handle various HTTP methods like GET, POST, PUT, DELETE, etc.

    • It can also handle headers, cookies, and other request/response parameters.

    • Examples include HttpClient in Java, requests module in Python, axios in JavaScript.

  • Answered by AI
  • Q4. Explain Angular life cycle Hook
  • Ans. 

    Angular life cycle hooks are methods that allow you to tap into specific points in a component's life cycle.

    • ngOnChanges: Called when an input property changes

    • ngOnInit: Called once the component is initialized

    • ngDoCheck: Called during every change detection run

    • ngAfterContentInit: Called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: Called after every check of the projected content

    • ...

  • Answered by AI
  • Q5. Explain CSS box model
  • Ans. 

    CSS box model is a fundamental concept in web design that defines the structure and layout of elements on a webpage.

    • The box model consists of content, padding, border, and margin.

    • Content area is where text or images are displayed.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding.

    • Margin is the space outside the border.

    • Each of these components can be styled using CSS pr

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Its basically a test comprising 32 mcq
12- logical reasoning
20- core C,DBMS, OS , Computer Networks

2 coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. He just Gave me to design a React Page and removed all the starting code and gave me blank folder and asked to code all by myself
  • Q2. He asked me SQL queries which was quite tough as its of nested queries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of stages called normal forms, with the most common being First Normal Form (1NF)...

  • Answered by AI
  • Q2. Code for armstrong alogrithm
  • Ans. 

    Armstrong algorithm is used to find Armstrong numbers in a given range.

    • Iterate through the numbers in the given range

    • Calculate the sum of cubes of each digit in the number

    • Check if the sum is equal to the original number

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Multiple C, C++ DSA Questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to wireless communication concepts
  • Q2. C and c++ coding concepts
Round 2 - HR 

(2 Questions)

  • Q1. Why are you looking for change
  • Q2. Are you ready to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on fundamentals and have good knowledge about the projects mentioned in resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Java theory questions and system questions with 2 DSA question

Round 2 - Assignment 

System design question with api designs

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

I applied via Referral and was interviewed in Nov 2023. 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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

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 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

Mirafra Technologies Interview FAQs

How many rounds are there in Mirafra Technologies Senior Software Developer interview?
Mirafra Technologies interview process usually has 1 rounds. The most common rounds in the Mirafra Technologies interview process are Technical.
What are the top questions asked in Mirafra Technologies Senior Software Developer interview?

Some of the top questions asked at the Mirafra Technologies Senior Software Developer interview -

  1. Explain Angular life cycle H...read more
  2. Explain Angular File struct...read more
  3. Explain Http client mod...read more

Tell us how to improve this page.

Mirafra Technologies Senior Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Mirafra Technologies Senior Software Developer Salary
based on 9 salaries
₹9 L/yr - ₹18.5 L/yr
At par with the average Senior Software Developer Salary in India
View more details

Mirafra Technologies Senior Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
263 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Member Technical Staff
135 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Software Engineer
110 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Physical Design Engineer
55 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Software Engineer2
49 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Explore more salaries
Compare Mirafra Technologies with

Sasken

3.8
Compare

Einfochips

3.3
Compare

Cyient

3.7
Compare

L&T Technology Services

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