Upload Button Icon Add office photos

Filter interviews by

Nsight Inc Linux Administrator Lead Interview Questions and Answers

Updated 11 Sep 2024

Nsight Inc Linux Administrator Lead Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you check network teaming
  • Ans. 

    Network teaming can be checked using tools like ethtool, nmcli, and ifconfig.

    • Use ethtool to check the status of network interfaces and teaming configuration

    • Use nmcli to view and manage network teaming settings

    • Check the output of ifconfig to verify the network teaming configuration

  • Answered by AI
  • Q2. How do you increase or reduce lvm
  • Ans. 

    To increase or reduce LVM, you can use the lvextend or lvreduce commands.

    • To increase LVM, use the lvextend command with the desired size parameter

    • To reduce LVM, use the lvreduce command with the desired size parameter

    • Make sure to resize the filesystem after increasing or reducing LVM using resize2fs or xfs_growfs

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No proper JD from HR. You need to prepare every topic, they may ask anything. The interviewers has some answers in mind, your answer will be correct only if it matches with them. By default they prepare to fail you in the interview.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical related questions, based on your domain
  • Q2. Total 3 rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - good communication,
good technical knowledge based on your domain
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Project description
  • Ans. 

    The project involves developing a new software application for data analysis.

    • Developing a software application for data analysis

    • Utilizing programming languages such as Python and R

    • Implementing statistical models and algorithms

    • Creating visualizations and reports for data interpretation

  • Answered by AI
  • Q2. Project, ML & Stats

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the projects mentioned in the resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. How does RNN work?
  • Ans. 

    RNN stands for Recurrent Neural Network, a type of neural network designed to handle sequential data by maintaining a memory of previous inputs.

    • RNNs have loops within their architecture, allowing information to persist.

    • They are commonly used in natural language processing, speech recognition, and time series analysis.

    • An example of RNN is predicting the next word in a sentence based on previous words.

  • Answered by AI
  • Q2. What do you mean by topic modeling?
  • Ans. 

    Topic modeling is a technique used in natural language processing to discover the hidden thematic structure in a collection of texts.

    • Topic modeling is a type of statistical modeling that allows for the discovery of hidden patterns in a collection of documents.

    • It is often used in text mining to identify topics within a set of documents without the need for manual labeling.

    • One popular algorithm for topic modeling is Late...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics and have overall crisp responses

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Leetcode 125: Valid Palindrome
  • Q2. Leetcode 1971: Find if path exists in graph
  • Ans. 

    Check if a path exists between two nodes in a graph

    • Use depth-first search (DFS) or breadth-first search (BFS) to traverse the graph

    • Start from the source node and explore all connected nodes until the destination node is reached

    • If the destination node is found during the traversal, return true; otherwise, return false

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How will you store passwords in DB
  • Ans. 

    Store passwords securely using hashing algorithms and salt

    • Use strong hashing algorithms like bcrypt or SHA-256

    • Add a unique salt to each password before hashing

    • Store only the hashed password in the database

    • Regularly update hashing algorithms and salts for added security

  • Answered by AI
  • Q2. Explain "this" in JS
  • Ans. 

    In JavaScript, 'this' refers to the current object that is executing the current function.

    • The value of 'this' is determined by how a function is called.

    • When a function is called as a method of an object, 'this' refers to the object itself.

    • When a function is called in the global scope, 'this' refers to the global object (window in a browser, global in Node.js).

    • Arrow functions do not have their own 'this' value and inste...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Nov 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Describe the Project Architecture End-to-End
  • Ans. 

    The project architecture end-to-end includes the overall design and structure of the project from start to finish.

    • The architecture should include the hardware and software components, as well as the communication protocols and data flow.

    • It should also consider the scalability, security, and performance of the system.

    • Examples of project architecture include client-server, microservices, and event-driven architectures.

    • Th...

  • Answered by AI
  • Q2. Explain how will you implement SCD Type 2.
  • Ans. 

    SCD Type 2 is implemented by creating a new record for each change and maintaining a history of changes.

    • Identify the business key and version number for the dimension table.

    • Create a new record with a new version number for each change to the dimension data.

    • End-date the previous record and start-date the new record to maintain a history of changes.

    • Use effective dates to determine which record is active at any given poin...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Display only those elements which do not occur more than once.
  • Ans. 

    Display non-repeated elements

    • Iterate through the elements and count their occurrences

    • Display only those elements with occurrence count of 1

    • Use a hash table or dictionary to store the counts

    • Time complexity: O(n)

  • Answered by AI
  • Q2. Difference between a list and a tuple. Explain a use case where you will use a tuple.
  • Ans. 

    List vs Tuple and use case for Tuple

    • List is mutable while Tuple is immutable

    • List uses square brackets while Tuple uses parentheses

    • Tuple is used when data needs to be protected from modification

    • Tuple is also used for returning multiple values from a function

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Understanding Basics is the key to success.
- Work on SQL Problems

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 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 

(2 Questions)

  • Q1. I am unable to understand why they conduct interview if the interviewer is not fimilier about the role. waste of time to attend the interview
  • Q2. Unrelated queations
Round 3 - Technical 

(1 Question)

  • Q1. Unrelated scenarios and questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please try to avoid the company to join.

I applied via LinkedIn 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 - One-on-one 

(2 Questions)

  • Q1. Applied through LinkedIn and was shortlisted 1st round was a discussion about current experience and domain knowledge, questions around revenue assurance areas
  • Q2. Later was asked some domain questions around telecom frameworks and TMforum frameworks
Round 3 - Case Study 

Was given a business case and was asked to come up with a PPT presentation for a consulting engagement with

Scope
Approach
Timelines
Deliverables
Recommendations

In the area of revenue assurance for a telecom client

Interview Preparation Tips

Topics to prepare for Subex Senior Consultant interview:
  • Telecom
  • SQL
  • Revenue Assurance
  • Analytics
  • Consulting
  • Software developement
Interview preparation tips for other job seekers - This organisation is mostly into telecom domain with expertise in the are of Business Assurance, Revenue Assurance, Fraud management.

Subex has their own analytics product/software such as ROC RA/FM, partner settlement, Hypersense ( Data analytics platform)

There will be ample of international working opportunities and exposure as subex's major customer base are in middle East, Africa, Asia and South America. Recently they have gained some footprints in the US region as well
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 4 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 

Coding covered LC medium and easy questions on recursion, trees n dp.

Round 3 - Technical 

(1 Question)

  • Q1. Technical covered concurrency, ui questions and some logical programming
Round 4 - System Design 

(1 Question)

  • Q1. Design system included your class diagram and lld and codng design patterns and api interfaces.

Interview Preparation Tips

Topics to prepare for Zeta Technical Lead interview:
  • DSA
  • System Design
  • Technical
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Online hackerrank test. Keep time limit in mond. Sas test was easy for me, only had to keep track of time limit.

Round 3 - Technical 

(1 Question)

  • Q1. Not too difficult. Mainly questioned about the projects mentioned in resume.
Round 4 - Technical 

(1 Question)

  • Q1. Very similar to round 2 but got better clarity on role and ptoject

Interview Preparation Tips

Interview preparation tips for other job seekers - This was for a model development project for bfsi client. The main difficulty was in clearing the online hackerrank test. In case of technical glitch though, hr may allow to take it more than once (for SAS or R Or SQL etc).
Then it was followed by two technical rounds. If you have worked hands on in the projects mentioned in resume, you should be able to clear those rounds easily.

Nsight Inc Interview FAQs

How many rounds are there in Nsight Inc Linux Administrator Lead interview?
Nsight Inc interview process usually has 1 rounds. The most common rounds in the Nsight Inc interview process are One-on-one Round.
What are the top questions asked in Nsight Inc Linux Administrator Lead interview?

Some of the top questions asked at the Nsight Inc Linux Administrator Lead interview -

  1. How do you check network team...read more
  2. How do you increase or reduce ...read more

Tell us how to improve this page.

Nsight Inc Linux Administrator Lead Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 208 Interviews
MathCo Interview Questions
2.9
 • 114 Interviews
Zeta Interview Questions
3.4
 • 70 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
XenonStack Interview Questions
3.2
 • 27 Interviews
View all
Technical Lead
38 salaries
unlock blur

₹9.2 L/yr - ₹36.4 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹8 L/yr - ₹21 L/yr

Software Engineer
20 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Associate Software Engineer
14 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Consultant
12 salaries
unlock blur

₹15 L/yr - ₹20 L/yr

Explore more salaries
Compare Nsight Inc with

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

MathCo

2.9
Compare

Innovatiview India Ltd

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