Upload Button Icon Add office photos

Filter interviews by

Clear (1)

BugsMirror Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

BugsMirror Software Developer Intern Interview Experiences

1 interview found

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

This round was carried out on Amcat. It was very user friendly platform and easily understandable. Countdown Timer was located at the top right corner that helped me to keep a check on the remaining time and I planned my answers and code accordingly.

  • Q1. 

    Ninja's Jump Task

    The Ninja has been given a challenge by his master to reach the last stone. These stones are represented as an array of numbers. The Ninja can jump using either odd-numbered or even-numb...

  • Ans. 

    Find the number of starting indices from which a Ninja can reach the last stone by following specific jump rules.

    • Iterate through the array and keep track of the possible jumps for each index.

    • Use dynamic programming to efficiently calculate the number of starting indices.

    • Consider odd and even jumps separately to determine the valid jumps.

    • Handle edge cases where there are no possible jumps from certain indices.

    • Return the...

  • Answered by AI
  • Q2. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves determining the number of distinct ways to climb from the 0th to the Nth stair by climbing one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • Define a recursive function to calculate the number of ways to reach each stair based on the number of ways to reach the previous two stairs.

    • Consider base cases for 0th and 1st stairs.

    • Use modulo operation to handle large numb...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

This was carried out on skype and the questions asked were relatively difficult, I wasn't very much sure with my answers. Although, this platform is nice and it wasn't the first time, I was using skype but still the final results didn't went in my faour.

  • Q1. 

    Find the Lone Set Bit

    Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N. The representation contains exactly one '1' and the rest are...

  • Ans. 

    Find the position of the lone '1' bit in the binary representation of a given non-negative integer.

    • Iterate through the bits of the integer to find the position of the lone '1'.

    • Use bitwise operations to check if there is exactly one '1' bit in the binary representation.

    • Return the position of the lone '1' or -1 if there isn't exactly one '1'.

  • Answered by AI
  • Q2. What is the difference between deadlock and livelock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource, while livelock is a situation where two or more processes continuously change their states in response to changes in the other processes without making any progress.

    • Deadlock involves a circular wait condition where processes are stuck waiting for resources held by each other.

    • Livelock in...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriastudents from cs and ece branchBugsMirror interview preparation:Topics to prepare for the interview - Pointers, OOPS, System Design, Algorithms, Dynamic Programming, tress and graphs and their algorithmsspanning treesTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice regularly on geeksforgeeks and coding ninjas like platforms
Tip 2 : solve all the must do questions from gfg
Tip 3 : compete in codechef long challenge

Application resume tips for other job seekers

Tip 1 : try to keep only those things in resume on which you have very good command and you should be able to answer all of the questions(upto moderate level) related to your technical skills
Tip 2 : mention your projects with brief description, try avoiding very high level description because some times reader might not be able to understand your work, keep it descriptive and understandable

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I was interviewed in Oct 2020.

Interview Questionnaire 

3 Questions

  • Q1. Final round is HR. In this round they will explain the working hours, CTC, etc and some set of HR questions will be also expected here
  • Q2. Tell me some of your strengths Weaknesses Where would you see yourself after 5 years Etc
  • Q3. Followed by 1st round written Examination F2F Technical interview is done. In this round we any expect all the technical questions of our subjects and the interviewer will check for our personality, commun...

Interview Preparation Tips

Interview preparation tips for other job seekers - All the Best Guys.prepare well and face the interview.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of 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 next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Basic mathematical questions

Round 2 - Technical 

(2 Questions)

  • Q1. What was your last sem project ? write code for fibonacci series write code for swapping two numbers
  • Ans. 

    I wrote code for Fibonacci series and swapping two numbers in my last semester project.

    • For Fibonacci series, I used a loop to generate the series up to a given number.

    • For swapping two numbers, I used a temporary variable to store one value while swapping the other.

    • Both codes were written in C++ language.

    • I also added error handling to ensure the input values were valid.

  • Answered by AI
  • Q2. Write code to find if input is palindrome tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers interview the technical round will be all about your past project ,the technology you are aware about and your overall education and interests.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic logical reasoning and verbal questions . Easy to clear

Round 2 - HR 

(2 Questions)

  • Q1. 1.Tell me about yourself? 2.What are Your achievements?
  • Q2. 3. Your strengths? 4. How did you face a situation using your key skills?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident . Care to explain more instead of giving single word answers . Good luck
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Cvent

No Interviews

INTERVIEWS

e2open

No Interviews

INTERVIEWS

ION Group

No Interviews

INTERVIEWS

Cvent

No Interviews

INTERVIEWS

Doppio Group

No Interviews

INTERVIEWS

Cvent

No Interviews

INTERVIEWS

Cvent

No Interviews

INTERVIEWS

Doubtnut

No Interviews

Tell us how to improve this page.

Compare BugsMirror with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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