Upload Button Icon Add office photos

BNP Paribas

Compare button icon Compare button icon Compare

Filter interviews by

BNP Paribas Senior Linux Administrator Interview Questions and Answers

Updated 13 Oct 2024

BNP Paribas Senior Linux Administrator Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is biggest issue facing in the real time work environment and how can you handle it
  • Ans. 

    The biggest issue facing in the real time work environment is managing system downtime effectively.

    • Implementing proper monitoring tools to detect issues early

    • Creating a detailed incident response plan

    • Regularly testing backups and disaster recovery procedures

    • Utilizing automation for routine tasks to reduce human error

    • Establishing clear communication channels for notifying stakeholders during downtime

  • Answered by AI
  • Q3. How can you work on under the deadline
  • Ans. 

    I prioritize tasks, break them down into smaller steps, set milestones, and communicate effectively with team members to ensure timely completion.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller steps to make them more manageable

    • Set milestones to track progress and stay on schedule

    • Communicate effectively with team members to coordinate efforts and address any obstacles

    • Utilize time managemen...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Patching related question
  • Q2. Linux Administrator role commands related questions
  • Q3. Troubleshooting related question
Round 3 - Technical 

(3 Questions)

  • Q1. Day to day activity related questions
  • Q2. What are tools you used and briefly explain and why it is used
  • Ans. 

    Some tools used by Senior Linux Administrators include Ansible, Nagios, and Docker.

    • Ansible - used for automation of tasks and configuration management

    • Nagios - used for monitoring and alerting of system and network resources

    • Docker - used for containerization of applications for easy deployment and management

  • Answered by AI
  • Q3. Troubleshooting related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in your core knowledge and be confident to face the interview and try to answer all the questions

Top trending discussions

View All
Interview Hub
1w
a team lead
FeedCard Image
Got a question about BNP Paribas?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on investment banking operations and the IT department associate with that. Since I was hired for governance team I was asked about some data related queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a commanding communication skills and walk with the confidence. Always believe in yourself and don't tie your ambition with emotions.

Senior Linux Administrator Interview Questions Asked at Other Companies

asked in BNP Paribas
Q1. What tools have you used? Briefly explain each tool and its purpo ... read more
asked in TCS
Q2. How do you detect a newly added disk to an existing disk in a VMw ... read more
asked in TCS
Q3. How can you change the password expiry age for all users at once?
Q4. How do you create a swap partition and ensure it is usable after ... read more
Q5. What is tcs go with the same as the one

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

Interview Questionnaire 

1 Question

  • Q1. Hypothetical Questions - What if the company decides to demote all senior associate s to associate? What will be your reaction??

Interview Preparation Tips

Interview preparation tips for other job seekers - I went for Enterprise Testing Senior Associate. The person who interviewed me was very well known to me. He worked with me for more than a year at the same level. Asked illogical questions. All hypothetical questions he asked in which I was the one who was getting demoted or denied bonus or increment.
He should not have taken my interview as it was conflict of Interest. 99% of questions was asked by this guy and the other lady in VC only asked 1 general question.
I reported conflict of interest issue to the hiring HR but no action was taken not any reply toy email came.

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Be clear with your basics
Round 2 - Technical 

(1 Question)

  • Q1. Maven basics, Design Patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with your basics and be confident

I applied via Naukri.com and was interviewed before Nov 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 - Technical 

(1 Question)

  • Q1. Project related interview questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, Asked some questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended for manual testing. I was little easy
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Behavioral questions

BNP Paribas HR Interview Questions

32 questions and answers

Q. Can you describe your previous work experience?
Q. Why do you want to switch jobs?
Q. What is your motivation to work with us?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you mean by derivatives
  • Q2. What do you mean you capital market
  • Ans. 

    Capital markets refer to financial markets where long-term debt or equity-backed securities are bought and sold.

    • Capital markets are where companies and governments raise long-term funds through the issuance of stocks and bonds.

    • Investors buy these securities in the hope of earning a return on their investment.

    • Examples of capital markets include stock exchanges like the New York Stock Exchange (NYSE) and bond markets.

    • Cap...

  • Answered by AI
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

The one-hour coding test included multiple-choice questions on Java and MySQL, as well as two coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. It was based on Binary Search, Find the target element in the shifted sorted array.
  • Ans. 

    Find a target element in a rotated sorted array using binary search.

    • Identify the pivot point where the array is rotated.

    • Use binary search to determine which half of the array to search.

    • Example: In [4,5,6,7,0,1,2], if target is 0, pivot is 3.

    • Check if the target is in the left or right sorted half.

  • Answered by AI
  • Q2. Comparator vs Comparable. Sort List of employee object using salary attribute
  • Ans. 

    Comparator is used to define custom sorting logic, while Comparable is used to implement natural ordering. Sort list of employee objects by salary using Comparator.

    • Create a Comparator implementation to compare employee objects based on salary attribute

    • Use Collections.sort() method with the custom Comparator to sort the list of employee objects

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

(2 Questions)

  • Q1. Basic OOps concepts.
  • Q2. Dasic DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up Core Java and DBMS.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Questions related to mongo db
  • Q2. Question related to unix
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
  • Q1. How many 0 in 1 mill
  • Q2. Why do you want work life balance when you’re a bachelor
  • Ans. 

    Work-life balance is essential for personal growth, mental health, and sustained productivity, regardless of marital status.

    • Maintaining mental health: A balanced life helps reduce stress and prevent burnout, which is crucial for long-term career success.

    • Pursuing hobbies: Engaging in personal interests outside of work fosters creativity and can enhance problem-solving skills in the workplace.

    • Building relationships: Havi...

  • Answered by AI

BNP Paribas Interview FAQs

How many rounds are there in BNP Paribas Senior Linux Administrator interview?
BNP Paribas interview process usually has 3 rounds. The most common rounds in the BNP Paribas interview process are Technical.
What are the top questions asked in BNP Paribas Senior Linux Administrator interview?

Some of the top questions asked at the BNP Paribas Senior Linux Administrator interview -

  1. What are tools you used and briefly explain and why it is u...read more
  2. Linux Administrator role commands related questi...read more
  3. Day to day activity related questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 627 Interviews
Citicorp Interview Questions
3.7
 • 592 Interviews
HSBC Group Interview Questions
3.9
 • 516 Interviews
American Express Interview Questions
4.1
 • 390 Interviews
BNY Interview Questions
3.8
 • 370 Interviews
UBS Interview Questions
3.9
 • 352 Interviews
Morgan Stanley Interview Questions
3.6
 • 309 Interviews
View all

BNP Paribas Senior Linux Administrator Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
2.4k salaries
unlock blur

₹5.8 L/yr - ₹13.2 L/yr

Assistant Manager
1.6k salaries
unlock blur

₹10.7 L/yr - ₹17.9 L/yr

Associate 1
1.1k salaries
unlock blur

₹3.3 L/yr - ₹7.2 L/yr

Associate
902 salaries
unlock blur

₹3.4 L/yr - ₹7 L/yr

Senior Software Engineer
590 salaries
unlock blur

₹14.1 L/yr - ₹23 L/yr

Explore more salaries
Compare BNP Paribas with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare
write
Share an Interview