Upload Button Icon Add office photos

Filter interviews by

BugsMirror Member Technical Staff Interview Questions and Answers for Freshers

Updated 23 Sep 2023

BugsMirror Member Technical Staff Interview Experiences for Freshers

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 

Basic coding assignment

Round 3 - Coding Test 

Advanced coding assignment based on Flutter and golang

Round 4 - HR 

(5 Questions)

  • Q1. Can you relocate
  • Q2. Why choose startup over MNC
  • Q3. Tell me about yourself
  • Q4. Any work experience
  • Q5. Tell me about your achivements

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Sep 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 - Technical 

(1 Question)

  • Q1. Related to resume and some technical basic questions about projects
Round 3 - Technical 

(1 Question)

  • Q1. Resume and Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience is good

I applied via campus placement at National Institute of Technology (NIT), Durgapur and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1 DP question, 1 simple integer manipulation

Round 2 - One-on-one 

(3 Questions)

  • Q1. 4th smallest element in BST
  • Ans. 

    Find the 4th smallest element in a Binary Search Tree.

    • Traverse the BST in-order and keep track of the count of visited nodes.

    • When the count reaches 4, return the current node's value.

    • If the BST has less than 4 nodes, return null or throw an exception.

  • Answered by AI
  • Q2. Maximum number of distinct elements in every sliding window of size k
  • Ans. 

    Find maximum distinct elements in every sliding window of size k.

    • Create a hash table to store the frequency of each element in the current window.

    • Use two pointers to maintain the current window and slide it over the array.

    • Update the hash table for each new element in the window and remove the old element.

    • Keep track of the maximum number of distinct elements seen so far.

    • Repeat until all windows of size k have been proce

  • Answered by AI
  • Q3. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists

    • Create a new linked list to store the merged list

    • Compare the first nodes of both lists and add the smaller one to the new list

    • Move the pointer of the added node to the next node

    • Repeat until one of the lists is empty

    • Add the remaining nodes of the non-empty list to the new list

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. A probability related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Striver SDE sheet and practice aptitude questions

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Informations is given the coding ,short cuts can used the coding.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussed with company details and then members to others.speak with confidencly.leadeship qualities.
  • Q2. Ask about generally and study the company and myself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Group discussion. How to talk with others people.speak about to confidently

I applied via Approached by Company and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tells About yourself and education ?
  • Ans. 

    I have a diverse educational background and a passion for operations.

    • I have a Bachelor's degree in Business Administration with a focus on Operations Management.

    • I also have a certification in Lean Six Sigma, which has helped me develop strong problem-solving and process improvement skills.

    • During my education, I actively participated in various extracurricular activities, such as organizing events and managing logistics...

  • Answered by AI
  • Q2. Previous employment details and what is your skills ?
  • Ans. 

    I have previous experience in operations and possess a range of skills including problem-solving, communication, and time management.

    • Previous employment: Operations Assistant at XYZ Company

    • Skills: Problem-solving, communication, time management

    • Example: Successfully resolved customer complaints and improved customer satisfaction by implementing a new feedback system

    • Example: Coordinated and managed a team of 10 employees...

  • Answered by AI
Round 3 - Aptitude Test 

1 Excel test?
2 Typing speed ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Very excellent organization and every senior very helpful and kind nature
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Asked few questions in C and Python
  • Q2. C basics and more about pointers and python basics
  • Q3. AWS basic questions
Round 2 - Technical 

(1 Question)

  • Q1. Projects and questions about AWS cloud
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and location

Interview Preparation Tips

Topics to prepare for HCLTech Member Technical Staff interview:
  • C
  • Python
  • AWS

I applied via campus placement at National Institute of Technology (NIT), Durgapur and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1 DP question, 1 simple integer manipulation

Round 2 - One-on-one 

(3 Questions)

  • Q1. 4th smallest element in BST
  • Ans. 

    Find the 4th smallest element in a Binary Search Tree.

    • Traverse the BST in-order and keep track of the count of visited nodes.

    • When the count reaches 4, return the current node's value.

    • If the BST has less than 4 nodes, return null or throw an exception.

  • Answered by AI
  • Q2. Maximum number of distinct elements in every sliding window of size k
  • Ans. 

    Find maximum distinct elements in every sliding window of size k.

    • Create a hash table to store the frequency of each element in the current window.

    • Use two pointers to maintain the current window and slide it over the array.

    • Update the hash table for each new element in the window and remove the old element.

    • Keep track of the maximum number of distinct elements seen so far.

    • Repeat until all windows of size k have been proce

  • Answered by AI
  • Q3. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists

    • Create a new linked list to store the merged list

    • Compare the first nodes of both lists and add the smaller one to the new list

    • Move the pointer of the added node to the next node

    • Repeat until one of the lists is empty

    • Add the remaining nodes of the non-empty list to the new list

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. A probability related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Striver SDE sheet and practice aptitude questions

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Mostly engineering questions only they ask

Round 3 - Technical 

(1 Question)

  • Q1. About the project you done in engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic, interview was quite friendly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

There were hacker rank test and in that round consists of Aptitude,programming,verbal

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview is they will ask the basics of c question like pointers,structures,unions,storage classes and dynamic memory
Round 4 - HR 

(1 Question)

  • Q1. Hr round discussed about the salary and company benefits

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics questions and have good knowledge on one programming language

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Som , first angle projection, manufacturing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well

BugsMirror Interview FAQs

How many rounds are there in BugsMirror Member Technical Staff interview for freshers?
BugsMirror interview process for freshers usually has 4 rounds. The most common rounds in the BugsMirror interview process for freshers are Coding Test, Resume Shortlist and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

BugsMirror Member Technical Staff Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

3.0

Salary & Benefits

1.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Compare BugsMirror with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview