Upload Button Icon Add office photos

Mirafra Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Mirafra Technologies Intern Interview Questions and Answers

Updated 18 Nov 2023

Mirafra Technologies Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 4 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 Resume tips
Round 2 - Coding Test 

C++,DSA,OOPs Concept

Round 3 - Technical 

(4 Questions)

  • Q1. Virtual function inheritance Tree Graph STL
  • Q2. Virtual Function
  • Q3. Unordered Map Map Multimap
  • Ans. 

    Unordered Map is a container that stores key-value pairs with unique keys. Map is a container that stores key-value pairs with unique keys. Multimap is a container that stores key-value pairs with duplicate keys.

    • Unordered Map does not maintain any particular order of elements.

    • Map maintains the order of elements based on the key's comparison function.

    • Multimap allows duplicate keys and stores them in sorted order.

  • Answered by AI
  • Q4. Polymorphism runtime
Round 4 - One-on-one 

(1 Question)

  • Q1. Smart Pointer Function pointer Operator overloading

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Apr 2021. 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 Resume tips
Round 2 - Aptitude Test 

My resume

Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I like the it companies and technologies

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

Interview Preparation Tips

Round: Test
Experience: Very easy questions. Practice R.S Agarwal aptitude and verbal books.
Duration matters. Solve the questions fast.Skip the questions if you think you don't know dont kill time on them.

In verbal most of the questions on subject verb agrement-wikipedia links are enough to practice on them.

It's easy just try to solve as many as u can and dont leave the questions unanswered,no negative marking.
Duration: 80 minutes
Total Questions: 120

Skill Tips: Talk in english. Be confident. smile in face.
Skills: c Language, Thinking ability, English fluency
College Name: K L University
Funny Moments: Im very bad in solving puzzles. The HR over there asking puzzles to every one.
It's my turn the 1st question he asked me was what are you bad at?
no 2nd thought I said solving puzzles...In that way he didnt ask me any puzzles. He checked my confidence, english fluency...e.t.c.

I was interviewed in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Question on specific language
  • Q2. Based on company

Interview Preparation Tips

Round: Test
Experience: There was 7 sections. And each section has a 60% sectional cutoff
Tips: Attempt questions which you know and you are confident about
Duration: 50 minutes
Total Questions: 70

Round: Story writing
Experience: Write a story based on picture
Tips: No grammatical errors must be there

Round: Technical Interview
Experience: 1 hour interview but based on technical and daily life
Tips: Be confident

Round: HR Interview
Experience: Just a simple round..bcoz u are almost selected
Tips: Be positive

Skills: Communication And Confidence

Interview Preparation Tips

Round: Resume Shortlist
Experience: The eligibility criteria was > 65% in academics.it was a pool campus drive in which nearly 5-6 college students participated in it

Round: Test
Duration: 1 hour

College Name: Institute of aeronautical engineering

Software Engineer Interview Questions & Answers

Wipro user image Rohit Karnatakapu

posted on 11 Nov 2015

Interview Preparation Tips

Round: Test
Experience: They conducted two tests.If you are an 8 pointer you should give the technical test,else you should give both the technical and aptitude test.It was conducted on amcat.If you have any material related to amcat,go through it once.They will select more people who give technical than people who give both technical and apti.

Round: Technical Interview
Experience: It's both technical and hr round.Some basic questions on your core subjects.Small puzzles.For some they have two rounds like technical and hr.People who do not give their hr also get recruited,so don't panic.They asked me why did you choose wipro?.And if you get a job in product based company will you go there?
Tips: Be cool and focussed. Answer properly.

Skills:
College Name: VIT Vellore

Interview Preparation Tips

General Tips: For EEE students it is very important to know your strengths. Also you got to plan effectively if you are taking GRE and other exams. Try to make your resume company specific. Having too many electronics or other research projects may hurt your chance of getting in companies which don't have suitable profile. For EEE students it is safe to learn basic programming skills in C , C++ . Having any software projects done in C,C++,Java languages is helpful. Unless anyone is interested in power systems related company it is beneficial for others to learn basic programming. Generally first round is toughest round to clear. So familiarity in basic aptitude questions is necessary. Interviews again require company specific preparation. A lot depends on luck at this stage to get a final offer.
Skill Tips: I went through Data structures and algorithms section in geeksforgeeks site.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Q2. Why wipro
  • Q3. What is pointer?Why do we need it and the applications of it?
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. It is used to manipulate data indirectly.

    • Pointers allow for dynamic memory allocation

    • Pointers can be used to pass data between functions efficiently

    • Pointers are used extensively in data structures such as linked lists and trees

  • Answered by AI
  • Q4. Multithreading
  • Q5. Wap to check a number whether prime or not
  • Ans. 

    A program to check if a number is prime or not.

    • A prime number is only divisible by 1 and itself.

    • Loop through all numbers from 2 to n-1 and check if n is divisible by any of them.

    • If n is divisible by any number, it is not prime.

    • If n is not divisible by any number, it is prime.

  • Answered by AI
  • Q6. Wap to implement bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the first element is greater than the next element, swap them

    • Repeat this process for all elements in the list

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q7. What is cloud
  • Ans. 

    Cloud is a network of remote servers where data and applications can be stored and accessed over the internet.

    • Cloud computing allows for on-demand access to computing resources

    • Cloud services can be public, private, or hybrid

    • Examples of cloud services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform

  • Answered by AI
  • Q8. What is data abstrction and encapsulation with examples
  • Ans. 

    Data abstraction and encapsulation are OOP concepts that help in hiding implementation details and providing a simplified interface.

    • Data abstraction is the process of hiding implementation details while showing only the necessary information to the user.

    • Encapsulation is the process of wrapping data and code into a single unit, preventing direct access to data from outside the unit.

    • Example of data abstraction: A car das...

  • Answered by AI
  • Q9. What is data structre and y do we need it?
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures help in efficient data storage and retrieval

    • They provide a way to organize and manage large amounts of data

    • Examples include arrays, linked lists, trees, and graphs

  • Answered by AI
  • Q10. What is database and normalization?
  • Ans. 

    A database is a collection of data organized in a structured way. Normalization is the process of organizing data to minimize redundancy.

    • A database is used to store and manage data.

    • Normalization is the process of breaking down data into smaller, more manageable pieces.

    • Normalization helps to minimize data redundancy and improve data consistency.

    • There are different levels of normalization, such as first normal form (1NF)...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It was amazing experience. He was impressed with my answers.
Tips: Whatever you answer,answer with examples so that the interviewer will feel that you know the concept.
And don't give up easily,try to answer it if you can't then ask for a HINT.

Skills: Confidence,Body language,Eagerness to learn,adaptibility,
College Name: KIIT University

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Mirafra Technologies Interview FAQs

How many rounds are there in Mirafra Technologies Intern interview?
Mirafra Technologies interview process usually has 4 rounds. The most common rounds in the Mirafra Technologies interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for Mirafra Technologies Intern 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 Mirafra Technologies. The most common topics and skills that interviewers at Mirafra Technologies expect are IT Recruitment, Non IT Recruitment and Talent Acquisition.
What are the top questions asked in Mirafra Technologies Intern interview?

Some of the top questions asked at the Mirafra Technologies Intern interview -

  1. Unordered Map Map Multi...read more
  2. Smart Pointer Function pointer Operator overload...read more
  3. Virtual function inheritance Tree Graph ...read more

Recently Viewed

DESIGNATION

INTERVIEWS

Deloitte

No Interviews

INTERVIEWS

Tamilnadu Newsprint Papers

No Interviews

INTERVIEWS

AGI Glaspac

No Interviews

INTERVIEWS

Nath Pulp & Paper Mills

No Interviews

INTERVIEWS

Infosys

No Interviews

DESIGNATION

INTERVIEWS

Hindusthan National Glass

No Interviews

INTERVIEWS

International Paper APPM

No Interviews

INTERVIEWS

Texas Instruments

No Interviews

Tell us how to improve this page.

Mirafra Technologies Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Mirafra Technologies Intern Salary
based on 4 salaries
₹1.6 L/yr - ₹10 L/yr
23% more than the average Intern Salary in India
View more details

Mirafra Technologies Intern Reviews and Ratings

based on 4 reviews

4.2/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

3.7

Salary

4.5

Job security

4.2

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
257 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
139 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
106 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Physical Design Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mirafra Technologies with

Sasken

3.8
Compare

Einfochips

3.3
Compare

Cyient

3.6
Compare

L&T Technology Services

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent