Upload Button Icon Add office photos
Engaged Employer

i

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

Nirsan Connect Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 12 Reviews

Filter interviews by

Nirsan Connect Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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 Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Personal background
  • Q2. Why I had a career break in my profile?
  • Q3. Why I wanted to pivot into a Social Media profile?
  • Q4. Why I left the previous organisation?

Interview Preparation Tips

Topics to prepare for Onion Insights Marketing interview:
  • mystery shopping
  • Customer Experience
  • Market Research
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Laboratory technician
  • Q2. Laboratory technician qualified
Round 2 - One-on-one 

(2 Questions)

  • Q1. Laboratory technician
  • Q2. Laboratory technician Qualify
Round 3 - Technical 

(2 Questions)

  • Q1. Quality control
  • Q2. Complete process

Interview Preparation Tips

Interview preparation tips for other job seekers - Laboratory technician working
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Multiple choice questions were asked.

Round 2 - One-on-one 

(1 Question)

  • Q1. Introduction was asked.
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 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y

I applied via Walk-in and was interviewed in Nov 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Salary and job role discussions and confirmation
  • Q2. Questions about experience and medical knowledge
  • Q3. What was your previous job role about?
  • Q4. How are dental diseases related to systemic diseases?
  • Q5. Questions about short term and long term goals.

Interview Preparation Tips

Topics to prepare for Cotiviti Clinical Analyst interview:
  • US healthcare
  • CMS
  • Medicaid
Interview preparation tips for other job seekers - Be well prepared for interviews. Go through basics of US healthcare- terms and overview of how it works.

Interview Questionnaire 

5 Questions

  • Q1. Self introduction
  • Q2. What are the basic of creating the tables in excel
  • Ans. 

    Creating tables in Excel involves defining column headers, entering data, and formatting the table.

    • Define column headers by selecting the first row and entering the header names

    • Enter data in the rows below the header row

    • Select the data and click on the 'Insert Table' button in the 'Insert' tab

    • Format the table by selecting a style and adjusting column widths

    • Add or remove rows and columns as needed

  • Answered by AI
  • Q3. Are You willing to work in night shift
  • Q4. What is pivot table and explain how to create the tables in excel
  • Ans. 

    A pivot table is a data summarization tool used in Excel to analyze and present data in a more organized manner.

    • Select the data range you want to summarize

    • Go to the Insert tab and click on the PivotTable button

    • Choose the location where you want to place the PivotTable

    • Drag and drop the fields you want to summarize into the Rows and Columns areas

    • Add any necessary calculations or filters to the PivotTable

  • Answered by AI
  • Q5. Describe the place you have born

Skills evaluated in this interview

I applied via

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 - Assignment 

Focus on basics ..what you have applied for ...for associate position.

Round 3 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. Why should we hire you?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please focus on basics.suppose if you are applied for Oil and gas..then Please go through value chain,Crytsral clear understanding in all segment..I think guys you understand what I am say...Be confident and positive.

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Accounting basics: consolidation accounting, accounting for associates/JVs
  • Q2. Valuation related: DCF, EV, which Ke to use
  • Q3. Sector specific questions based on sector expertise
  • Q4. Financial modelling related: key revenue & cost drivers

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with accounting, financial modeling and valuation basics. If you have any sector expertise, be ready to answer questions on current events, trends in the sector

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The online test was scheduled on 10:00 AM. Total 304 students were eligible who appeared for the test. 93 students were shortlisted in this round. MCQs were asked and two coding question

MCQs were of medium to hard level.
OOPS(2 Question)
DBMS(2 questions)
Networking(2 Questions)
Operating System(2 Questions),
Aptitude(2 Questions)

  • Q1. Maximum Subarray Sum

    You are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays.

    A subarr...

  • Ans. 

    A subarray is a contiguous segment of an array. In other words, a subarray can be formed by removing 0 or more integers from the beginning, and 0 or more integers from the end of an array. I used Kadane's algorithm to solve it optimally. 

  • Answered by CodingNinjas
  • Q2. Flipping Coins

    Gary has N coins placed in a straight line. Some coins have head side up, and others have the tail side up.

    Convention:
    1 denotes the HEAD side is up. 
    0 denotes the TAIL side is up. 
    

    N...

  • Ans. Brute force
    1. The idea is to check every subarray.
    2. We can count the number of heads and number tails in every subarray and then calculate the maximum number of heads side up we can obtain if we flip that particular subarray.
    3. We also keep a count of the final start index and final end index that will give us the number of heads side up we can obtain later.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only ...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was technical interview round, which was purely based on coding followed by 1 SQL query. Duration of round was of 1 hour from 10 AM-11AM. Interviewer asked me 2 Coding questions one to solve and run on Hackerrank codepair platform and for another one she asked only my approach to solve problem. In the remaining last 10 minutes interviewer asked me 1 SQL query on JOIN. Total 28 students were shortlisted in this round.

  • Q1. First Missing Positive

    You are given an array 'ARR' of integers of length N. Your task is to find the first missing positive integer in linear time and constant space. In other words, find the lowe...

  • Ans. 

    I gave him the optimized solution.

  • Answered by CodingNinjas
  • Q2. Kth missing element

    Given an increasing sequence 'VEC', find the 'Kth' missing contiguous element in the given sequence starting from the leftmost element of the array.

    Example :
    Given &...
  • Ans. 

    I told the solving approach by using max heap in O(NlogK) time complexity.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. Eligibility criteria7.0 and above CGPA , No current active backlogs/failures, only CS/IT StudentsAthenahealth interview preparation:Topics to prepare for the interview - Data Structures & Algorithms, Dynamic Programming, Hashing,Tree,Graph, Heap, OOPS, SQLTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice a lot of competitive programming.
Tip 2 : Revise complete Data Structures at least 3-4 times. 
Tip 3 : Do practice SQL queries.
Tip 4 : Do at least 1 Internship from a good company.
Tip 5 : Maintain CGPA up to 7.5

Application resume tips for other job seekers

Tip 1 : Keep it short, Do not repeat the same achievements in different sections.
Tip 2 : Do participate in extracurricular activities and Hackathons.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. 1st round was an online test, which was pretty forward, thereafter I went onto a technical interview with Director & Lead Data Scientist where they asked very few basic questions.
  • Q2. The interview was really basic and any fresher can achieve iff they want you to get in!
  • Q3. Questions were asked on the topics like SQL, Python programming questions, a couple of coding questions, and some HR-related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience for me but feedback is expected because the questions asked from them were easy and I don't know how did they judge me based on that.

Tell us how to improve this page.

Nirsan Connect Reviews and Ratings

based on 12 reviews

4.0/5

Rating in categories

4.0

Skill development

3.8

Work-Life balance

4.1

Salary & Benefits

3.9

Job Security

4.0

Company culture

3.9

Promotions/Appraisal

3.9

Work Satisfaction

Explore 12 Reviews and Ratings
Associate
6 salaries
unlock blur

₹5 L/yr - ₹5.9 L/yr

Business Analyst
4 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Explore more salaries
Compare Nirsan Connect with

Transparency Market Research

2.3
Compare

Adsum Advisory Services

4.5
Compare

Azista Industries

3.6
Compare

E Merge Tech Global Services

3.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview