Upload Button Icon Add office photos
Engaged Employer

i

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

RenewBuy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

RenewBuy Linux System Administrator Interview Questions and Answers

Updated 21 Nov 2024

RenewBuy Linux System Administrator Interview Experiences

1 interview found

Linux System Administrator Interview Questions & Answers

user image ansari mohammed rizwan

posted on 21 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is lvm and what's working
  • Ans. 

    LVM (Logical Volume Manager) is a tool used to manage disk storage in Linux systems by creating logical volumes from physical volumes.

    • LVM allows for dynamic resizing of logical volumes without the need to unmount the filesystem.

    • It provides features like striping, mirroring, and snapshotting for better data management.

    • Commands like pvcreate, vgcreate, lvcreate are used to create physical volumes, volume groups, and logi

  • Answered by AI
  • Q2. Different yum and wget command
  • Ans. 

    yum is a package manager for Red Hat-based systems, while wget is a command-line tool for downloading files from the internet.

    • yum is used for installing, updating, and removing packages on Red Hat-based systems

    • wget is used for downloading files from the internet, supports HTTP, HTTPS, and FTP protocols

    • yum command example: yum install httpd

    • wget command example: wget https://example.com/file.zip

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Implement stack using two queue
  • Ans. 

    Implement a stack using two queues

    • Use two queues to simulate stack operations

    • Push operation: Enqueue the element to queue1

    • Pop operation: Dequeue all elements from queue1 to queue2, dequeue the last element from queue1, then swap the queues

    • Top operation: Dequeue all elements from queue1 to queue2, dequeue the last element from queue1, then swap the queues without dequeuing the element

    • Empty operation: Check if both queue

  • Answered by AI
  • Q2. Discuss your previous company projects
  • Q3. Basic oops concept

Interview Preparation Tips

Interview preparation tips for other job seekers - generally asks medium interview questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on DSA and Algo

Round 2 - Technical 

(1 Question)

  • Q1. Low level design
Round 3 - Technical 

(1 Question)

  • Q1. High level design
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Feb 2024.

Round 1 - Aptitude Test 

Normal nomerical qustion

Round 2 - HR 

(1 Question)

  • Q1. Normal tell me your self

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

The round consisted of 2 Coding based based questions.
These question were easy for as I have already done this while preparing.

  • Q1. 

    Flip Equivalent Binary Tree Problem

    Determine whether two binary trees, given by their roots 'ROOT1' and 'ROOT2', are flip equivalent. A tree can be transformed into a flip equivalent through any number o...

  • Ans. 

    The problem is to determine if two binary trees are flip equivalent after performing flip operations on one of the trees.

    • Perform a depth-first search (DFS) on both trees simultaneously

    • At each node, check if the values are equal and the left and right subtrees are either both null or both not null

    • If the above conditions are met, recursively check the flip equivalence of the left and right subtrees

    • If any of the condition...

  • Answered by AI
  • Q2. 

    Split Array Into Increasing Subsequences Problem Statement

    You are provided with an integer array ARR of size N sorted in ascending order. Your task is to determine if it is possible to split this array i...

  • Ans. 

    The task is to determine if an integer array can be split into one or more increasing subsequences with a length of at least 3.

    • Check if the array can be split into increasing subsequences by iterating through the array.

    • Keep track of the current subsequence and its length while iterating.

    • If the difference between the current element and the previous element is not 1, start a new subsequence.

    • If the length of any subseque...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview started a bit late as I it to be at 11:30 am but started at 12:15pm So Had to wait. Apart from these the overall experience was great and the interviewer was also kind and had a smiling face.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Iterate through the array and check if every second element is greater than its left and right element

    • If not, swap the current element with its adjacent element to satisfy the condition

    • Continue this process until the entire array satisfies the condition

    • Return 1 if the array satisfies the condition, else re

  • Answered by AI
Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Easy

10:30 PM 
Interviewer was Cool.

Round 4 - HR 

Round duration - 5 minutes
Round difficulty - Easy

At 10:00 am

Interview Preparation Tips

Eligibility criteriaNo criteria But only 8+ plus CGPA were eventually shortlisted on basis of resumeAcko interview preparation:Topics to prepare for the interview - DSA, DBMS, Puzzles, OS, System DesignTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Never never try to cheat in online interview the interviewer will definitely get to know.
Tip 2 : Psuedo code presentation matters a lot so name Your variable properly and with proper indentation.
Tip 3 : Keep on trying even if You feel that's not the right answer so at least put that idea forward.
Tip 4 : Do Leetcode medium questions as much as possible As they are mostly asked in Interviews.

Application resume tips for other job seekers

Tip 1 : Avoid unnecessary details on Resume
Tip 2 : Make It look clean and also keep it of one page

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I was interviewed before Jun 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA Round & Introduction Round
  • Q2. DP Question related to subsequence
Round 2 - Technical 

(2 Questions)

  • Q1. Design Parking Lot
  • Ans. 

    Design a parking lot system with multiple levels and spots for cars.

    • Create a class for ParkingLot with attributes like levels, spots per level, etc.

    • Implement methods for parking a car, removing a car, checking availability, etc.

    • Consider implementing a ticketing system for tracking parked cars.

    • Utilize data structures like arrays, lists, or maps to manage parking spots efficiently.

  • Answered by AI
  • Q2. Sort Numbers with large file
  • Ans. 

    Use external sorting algorithm like merge sort to efficiently sort numbers in a large file.

    • Break the large file into smaller chunks that can fit into memory

    • Sort each chunk individually using a sorting algorithm like merge sort

    • Merge the sorted chunks back together to get the final sorted result

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apti and coding

Round 2 - Technical 

(1 Question)

  • Q1. Questions on java a d sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Bogus interview . Doesnt matter how you give the interview , they will choose some random guy who is not worthy maybe

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Y r u choosing this job only??
  • Ans. Because I want to share my ideas and innovative to others and to develop our company in good manner.
  • Answered Anonymously
  • Q2. What's your dream?
  • Q3. My dream is to got a job
  • Q4. How much salary will you expected??

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to be positive at any situation and be active .
Don't get feared .
Your dressing is shown ur attitude.
Give respect to the others don't forget these things.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

First round was coding test in online mode which was quite easy.

Round 2 - Technical 

(1 Question)

  • Q1. In the 2nd round they asked the technical questions from SQL , simple coding questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Duration 1Hr
2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Don't remember the questions
  • Q2. Don't remember the questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - easy interview. anyone can crack easily if you are clear with basic concepts.
Contribute & help others!
anonymous
You can choose to be anonymous

RenewBuy Interview FAQs

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

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

  1. What is lvm and what's work...read more
  2. Different yum and wget comm...read more

Recently Viewed

INTERVIEWS

RenewBuy

No Interviews

SALARIES

ESAF Small Finance Bank

INTERVIEWS

RenewBuy

No Interviews

INTERVIEWS

RenewBuy

No Interviews

DESIGNATION

COMPANY BENEFITS

ESAF Small Finance Bank

No Benefits

SALARIES

ESAF Small Finance Bank

SALARIES

ESAF Small Finance Bank

REVIEWS

PhonePe

No Reviews

SALARIES

ESAF Small Finance Bank

No Salaries

Tell us how to improve this page.

RenewBuy Linux System Administrator Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
PolicyBazaar Interview Questions
3.6
 • 348 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
CARS24 Interview Questions
3.5
 • 331 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
Digit Insurance Interview Questions
4.0
 • 142 Interviews
View all

RenewBuy Linux System Administrator Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Relationship Manager
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Sales Manager
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare RenewBuy with

PolicyBazaar

3.6
Compare

Coverfox

4.2
Compare

Turtlemint

3.6
Compare

ACKO

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