Upload Button Icon Add office photos

MBit

Compare button icon Compare button icon Compare

Filter interviews by

MBit Interview Questions and Answers

Updated 24 Sep 2024
Popular Designations

9 Interview questions

A Software Development Engineer 1 was asked 9mo ago
Q. What are setup and hold times?
Ans. 

Setup and hold time are timing constraints in digital circuits to ensure proper operation of flip-flops.

  • Setup time is the minimum amount of time data must be stable before the clock edge for proper capture.

  • Hold time is the minimum amount of time data must be stable after the clock edge for proper capture.

  • Violating setup time can lead to metastability issues, while violating hold time can lead to data corruption.

  • Ex...

View all Software Development Engineer 1 interview questions
A Software Development Engineer 1 was asked 9mo ago
Q. Can you elaborate on your project?
Ans. 

Developed a web application for online shopping with user authentication and payment gateway integration.

  • Implemented user registration and login functionality using JWT tokens

  • Integrated Stripe API for secure payment processing

  • Designed responsive UI using HTML, CSS, and JavaScript

  • Utilized Node.js and Express for backend development

View all Software Development Engineer 1 interview questions
An Associate Engineer was asked 9mo ago
Q. What are the differences between malloc and calloc?
Ans. 

malloc is used to allocate memory without initializing it, while calloc is used to allocate memory and initialize it to zero.

  • malloc allocates a block of memory of specified size but does not initialize the memory contents

  • calloc allocates a block of memory of specified size and initializes all bytes to zero

  • malloc is faster than calloc as it does not initialize the memory

  • calloc is useful when you want to ensure that...

View all Associate Engineer interview questions
An Associate Engineer was asked 9mo ago
Q. What does malloc return?
Ans. 

malloc will return a pointer to the allocated memory block

  • malloc returns a void pointer (void *)

  • It returns NULL if it fails to allocate memory

  • Example: int *ptr = (int *)malloc(sizeof(int));

View all Associate Engineer interview questions
A Trainee was asked
Q. How do you want to grow professionally?
Ans. 

I want to grow by continuously learning and developing new skills.

  • I plan to attend workshops and seminars to gain new knowledge.

  • I will seek out mentors to guide me in my career.

  • I will take on challenging projects to expand my skill set.

  • I will actively seek feedback to improve my performance.

  • I will network with professionals in my field to gain new perspectives.

View all Trainee interview questions
A Trainee was asked
Q. How did you hear about us?
Ans. 

I found out about your company through a job search website.

  • I was actively searching for trainee positions in my field

  • I came across your company's job posting on a popular job search website

  • I was impressed by the company's mission and values, and decided to apply

View all Trainee interview questions
A Software Engineering Consultant was asked
Q. 1. How can we perform better tracking for the system errors for the background jobs and how we can handle these cases? 2. How we can scale this system for usage in a banking system or data warehouse where t...
Ans. 

Answering questions on error tracking and system scalability for software engineering consultant role.

  • For error tracking, use logging frameworks like Log4j or Logback to log errors and exceptions. Use a centralized logging system like ELK stack to collect and analyze logs.

  • For handling errors, use error handling techniques like try-catch blocks, error codes, and error messages. Use monitoring tools like Nagios or Z...

View all Software Engineering Consultant interview questions
Are these interview questions helpful?
A Software Engineering Consultant was asked
Q. 1. what are multilevel and multiple inheritances 2. data structures in python 3. what is GIL 4. what is concurrency and can we achieve this in python 5. Find the third highest number from a given list
Ans. 

Questions on inheritance, data structures, concurrency, and coding problem

  • Multilevel inheritance is when a subclass inherits from a superclass, which in turn inherits from another superclass

  • Multiple inheritance is when a subclass inherits from multiple superclasses

  • Python has built-in data structures like lists, tuples, sets, and dictionaries

  • GIL stands for Global Interpreter Lock and is a mechanism in Python that a...

View all Software Engineering Consultant interview questions
A Software Development Engineer 1 was asked 9mo ago
Q. Non synthesizable operators
Ans. 

Non-synthesizable operators are used in software development to perform operations that cannot be directly translated into hardware logic.

  • Non-synthesizable operators include file operations, dynamic memory allocation, and floating-point arithmetic.

  • These operators are used in software development for tasks that are not directly related to hardware implementation.

  • Examples of non-synthesizable operators include 'mall...

View all Software Development Engineer 1 interview questions

MBit Interview Experiences

5 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is setup and hold time
  • Ans. 

    Setup and hold time are timing constraints in digital circuits to ensure proper operation of flip-flops.

    • Setup time is the minimum amount of time data must be stable before the clock edge for proper capture.

    • Hold time is the minimum amount of time data must be stable after the clock edge for proper capture.

    • Violating setup time can lead to metastability issues, while violating hold time can lead to data corruption.

    • Example...

  • Answered by AI
  • Q2. Give an elaboration on ur project
  • Ans. 

    Developed a web application for online shopping with user authentication and payment gateway integration.

    • Implemented user registration and login functionality using JWT tokens

    • Integrated Stripe API for secure payment processing

    • Designed responsive UI using HTML, CSS, and JavaScript

    • Utilized Node.js and Express for backend development

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Synthesiszable operators
  • Q2. Non synthesizable operators
  • Ans. 

    Non-synthesizable operators are used in software development to perform operations that cannot be directly translated into hardware logic.

    • Non-synthesizable operators include file operations, dynamic memory allocation, and floating-point arithmetic.

    • These operators are used in software development for tasks that are not directly related to hardware implementation.

    • Examples of non-synthesizable operators include 'malloc' f...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Priority inversion
  • Q2. Binary semaphore
Round 2 - One-on-one 

(2 Questions)

  • Q1. Malloc vs calloc
  • Ans. 

    malloc is used to allocate memory without initializing it, while calloc is used to allocate memory and initialize it to zero.

    • malloc allocates a block of memory of specified size but does not initialize the memory contents

    • calloc allocates a block of memory of specified size and initializes all bytes to zero

    • malloc is faster than calloc as it does not initialize the memory

    • calloc is useful when you want to ensure that the ...

  • Answered by AI
  • Q2. What malloc will return
  • Ans. 

    malloc will return a pointer to the allocated memory block

    • malloc returns a void pointer (void *)

    • It returns NULL if it fails to allocate memory

    • Example: int *ptr = (int *)malloc(sizeof(int));

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. I didn't get selected

Skills evaluated in this interview

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 tips
Round 2 - Coding Test 

Duration - 1hr
topics covered - Python basics, Python advance, SQL, data structure (mainly focused on python),
OOPS, concepts.
Platform - Google meet

Round 3 - Technical 

(3 Questions)

  • Q1. Duration - 1 hr topics - 1. Asked about designing-based questions for developing seamless software solutions. 2. Gives a brief about how their system works 3. Ask questions about how to better the curren...
  • Q2. 1. what are multilevel and multiple inheritances 2. data structures in python 3. what is GIL 4. what is concurrency and can we achieve this in python 5. Find the third highest number from a given list
  • Ans. 

    Questions on inheritance, data structures, concurrency, and coding problem

    • Multilevel inheritance is when a subclass inherits from a superclass, which in turn inherits from another superclass

    • Multiple inheritance is when a subclass inherits from multiple superclasses

    • Python has built-in data structures like lists, tuples, sets, and dictionaries

    • GIL stands for Global Interpreter Lock and is a mechanism in Python that allows...

  • Answered by AI
  • Q3. 1. How can we perform better tracking for the system errors for the background jobs and how we can handle these cases? 2. How we can scale this system for usage in a banking system or data warehouse where ...
  • Ans. 

    Answering questions on error tracking and system scalability for software engineering consultant role.

    • For error tracking, use logging frameworks like Log4j or Logback to log errors and exceptions. Use a centralized logging system like ELK stack to collect and analyze logs.

    • For handling errors, use error handling techniques like try-catch blocks, error codes, and error messages. Use monitoring tools like Nagios or Zabbix...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MBit Software Engineering Consultant interview:
  • Data Structures
  • Python
  • Node.Js
  • Design
Interview preparation tips for other job seekers - Study data structure and algorithm part. And if you are an experienced person and have worked in an individual capacity in any of your projects then prepare the design level question regarding those projects.

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Vishnu Paleri

posted on 30 Aug 2022

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. At first MBit called me and asked me about the basic details. After that they set up a meeting with TCS mulitple project leaders. MBit doesnt take ur interview, they only setup a call with TCS or the Clien...

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont be nervous, i got multiple calls from TCS team / different leads for interviews.

Trainee Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2022

I applied via Referral and was interviewed before Oct 2021. 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 

Java with multithreading questions

Round 3 - HR 

(2 Questions)

  • Q1. How you come to know abput us?
  • Ans. 

    I found out about your company through a job search website.

    • I was actively searching for trainee positions in my field

    • I came across your company's job posting on a popular job search website

    • I was impressed by the company's mission and values, and decided to apply

  • Answered by AI
  • Q2. How you want to grow?
  • Ans. 

    I want to grow by continuously learning and developing new skills.

    • I plan to attend workshops and seminars to gain new knowledge.

    • I will seek out mentors to guide me in my career.

    • I will take on challenging projects to expand my skill set.

    • I will actively seek feedback to improve my performance.

    • I will network with professionals in my field to gain new perspectives.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice as much as you can,try solving data structure

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about MBit?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Technical quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically

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

Interview Questionnaire 

1 Question

  • Q1. General HR questions and some current related topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak till recruiter stops you
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Java c c++

Interview Questionnaire 

1 Question

  • Q1. Your past exp?

Interview Questionnaire 

2 Questions

  • Q1. Questions were mostly situations based.
  • Q2. Technical explanation is required

MBit Interview FAQs

How many rounds are there in MBit interview?
MBit interview process usually has 2-3 rounds. The most common rounds in the MBit interview process are Technical, One-on-one Round and HR.
What are the top questions asked in MBit interview?

Some of the top questions asked at the MBit interview -

  1. 1. How can we perform better tracking for the system errors for the background ...read more
  2. 1. what are multilevel and multiple inheritances 2. data structures in python 3...read more
  3. What is setup and hold t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 4 interview experiences

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

MBit Reviews and Ratings

based on 59 reviews

3.5/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

3.6

Salary

3.0

Job security

3.4

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 59 Reviews and Ratings
Software Developer
18 salaries
unlock blur

₹3.5 L/yr - ₹6.1 L/yr

Java Developer
12 salaries
unlock blur

₹5.2 L/yr - ₹7 L/yr

Information Technology Recruiter
9 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Linux System Administrator
7 salaries
unlock blur

₹4.5 L/yr - ₹7.5 L/yr

Software Engineer
6 salaries
unlock blur

₹4.5 L/yr - ₹8.2 L/yr

Explore more salaries
Compare MBit with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview