Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by MBit Computraining Team. If you also belong to the team, you can get access from here

MBit Computraining Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

MBit Computraining Linux System Administrator Interview Questions and Answers

Updated 14 Sep 2022

MBit Computraining Linux System Administrator Interview Experiences

1 interview found

Round 1 - Technical 

(2 Questions)

  • Q1. How to extent lvm size
  • Ans. 

    To extend LVM size, we need to add physical volumes and then extend the logical volume.

    • Add a new physical volume using the 'pvcreate' command

    • Extend the volume group using the 'vgextend' command

    • Extend the logical volume using the 'lvextend' command

    • Resize the file system using the appropriate command for the file system type

  • Answered by AI
  • Q2. What is appache server configuration file
  • Ans. 

    The Apache server configuration file is a text file that contains directives for configuring the Apache web server.

    • The default location of the configuration file is /etc/httpd/conf/httpd.conf on Red Hat-based systems and /etc/apache2/apache2.conf on Debian-based systems.

    • The configuration file is used to set options such as the server's port number, document root directory, and virtual hosts.

    • The file can be edited manua...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Usermenegaement file system crontab lvm like sum servers

Skills evaluated in this interview

Saint-Gobain

We thank our employees for rating us 4/5 on AmbitionBox

Join a company where our employee's ratings speak volumes.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How many numbers consulting in this year?

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction your self. project. skills

I applied via Company Website

Interview Questionnaire 

1 Question

  • Q1. How are you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just chill

I was interviewed before May 2021.

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 - One-on-one 

(1 Question)

  • Q1. Why sales why not technical

Interview Preparation Tips

Interview preparation tips for other job seekers - A a a. A aa a. A a a a. Aa a a. A a a a a a a a a a a a a a a a a a a a a. Aa. Aa a a a a. Aa a

Interview Questionnaire 

1 Question

  • Q1. Any type of questions in data field

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Protocols IPV4 and IPV6
  • Q2. Routers and nodes

Interview Preparation Tips

Interview preparation tips for other job seekers - Just and Ok interview. No tough questions were asked

I was interviewed in May 2022.

Round 1 - Aptitude Test 

Speed distance, relations, coding decoding, work time

Round 2 - Coding Test 

Strings, LinkedList

Round 3 - Coding Test 

Basic bath included and Strings sorting, leetcode medium basic SQL and some basic web related things

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and attend the interview, easy to medium will be asked.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. 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 - HR 

(1 Question)

  • Q1. Introduction, background, why sales, goals etc
Round 3 - One-on-one 

(1 Question)

  • Q1. Introduction, background, pitch, product knowledge etc
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 Jul 2022. There were 5 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 - HR 

(3 Questions)

  • Q1. Normal question about your previous experience
  • Q2. Tell about yourself
  • Q3. Are you flexible with domestic or international clients
Round 3 - Assignment 

Various questions related to sale. How to close a deal. What are the process involved. What is value selling. Difference between marketing and sales

Round 4 - Technical 

(1 Question)

  • Q1. With the operation manager discussion about the process involved in closing a sale. How to understand client requirements. How to streamline the process of selling. How to get referral.how to convince the ...
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join us and where do you see yourself 5 years down the lane
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is method overloading?
  • Ans. 

    Method overloading is when multiple methods in a class have the same name but different parameters.

    • Allows multiple methods with the same name but different parameters to be defined in a class

    • Parameters can differ in number, type, or order

    • Example: void print(int num) and void print(String text) are overloaded methods

  • Answered by AI
  • Q2. What is method overiding ?
  • Ans. 

    Method overriding is a feature in object-oriented programming that allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • Method overriding is done when a subclass provides a specific implementation for a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • M...

  • Answered by AI
  • Q3. What is sigleton class ?
  • Ans. 

    A singleton class is a class that can only have one instance created and provides a global point of access to that instance.

    • Singleton classes are often used for logging, caching, database connections, and thread pools.

    • They typically have a private constructor to prevent instantiation from outside the class.

    • The class itself usually provides a static method to access the single instance.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What are Oops Pillars?
  • Ans. 

    Oops Pillars are the four main concepts of Object-Oriented Programming: Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundles data and methods into a single unit, protecting data from outside interference.

    • Polymorphism: Allows objects to be treated as instances of their parent class, enabling flexibility in code.

    • ...

  • Answered by AI
  • Q2. What is Dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI

Skills evaluated in this interview

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

MBit Computraining Interview FAQs

How many rounds are there in MBit Computraining Linux System Administrator interview?
MBit Computraining interview process usually has 1 rounds. The most common rounds in the MBit Computraining interview process are Technical.
What are the top questions asked in MBit Computraining Linux System Administrator interview?

Some of the top questions asked at the MBit Computraining Linux System Administrator interview -

  1. What is appache server configuration f...read more
  2. How to extent lvm s...read more

Recently Viewed

INTERVIEWS

iLabz Technology

No Interviews

INTERVIEWS

MBit Computraining

No Interviews

INTERVIEWS

MBit Computraining

5.6k top interview questions

SALARIES

MBit Computraining

SALARIES

ICG Medical

INTERVIEWS

SDNA Global

No Interviews

INTERVIEWS

MBit Computraining

No Interviews

INTERVIEWS

MBit Computraining

No Interviews

SALARIES

Skillventory

INTERVIEWS

MBit Computraining

No Interviews

Tell us how to improve this page.

HCLTech

There's no stopping you

Interview Questions from Similar Companies

CMS IT Services Interview Questions
3.1
 • 132 Interviews
NIIT Interview Questions
3.6
 • 84 Interviews
Edureka Interview Questions
3.2
 • 26 Interviews
Aptech Interview Questions
3.5
 • 23 Interviews
Hire Glocal Interview Questions
4.7
 • 17 Interviews
View all

MBit Computraining Linux System Administrator Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

4.0

Skill development

3.1

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Information Technology Recruiter
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Tester
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MBit Computraining with

Aptech

3.5
Compare

NIIT

3.6
Compare

Jetking Infotrain

3.7
Compare

IIHT

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