Upload Button Icon Add office photos

Filter interviews by

Digital Nirvana Information Systems Interview Questions and Answers

Updated 14 Aug 2024

Digital Nirvana Information Systems Interview Experiences

Popular Designations

2 interviews found

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Case Study 

Asked me to prepare an equity research report on a company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your financial concepts right.

Equity Research Analyst Interview Questions asked at other Companies

Q1. 1) how many financial statements 2) defference b/w share and debentures 3)why we prepare cash flow statement 4)what is non performing asset 5) derivatives 6)private equity funds 7)nav calculation and mutual funds 8)how many types of dividen... read more
View answer (1)

I applied via Walk-in and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Command over English is checked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be yourself

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response

I was interviewed in Sep 2024.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself which is not on resume
  • Q2. Scenario based questions for customer interaction knowledge check eg how to handle difficult customer,critical users etc
  • Q3. Basics of troubleshooting tools
  • Q4. As it was just for checking learning agility,asked me about me learing experience in previous company,certifications,how to prioritize issues incase of multiple sev1 issues
  • Q5. Have you handles sev1/sev2 all at once,how did you interacted
  • Ans. 

    Yes, I have handled multiple sev1/sev2 incidents simultaneously by prioritizing tasks and communicating effectively.

    • Prioritized tasks based on severity and impact on users

    • Communicated with stakeholders to provide updates and manage expectations

    • Coordinated with other team members to resolve issues efficiently

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,stay calm,learn about company before appearing and prepare well according to JD provided
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Golang questions
  • Q2. Dsa questions like binary search and remove duplicate inplace

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't know what process these people follow, i guess they gave me chance for 2nd interview just to reject.

I prepared hell a lot for this round and answered each every question. Still they reject. I think they are just looking for cheap labour.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude Had around 50 Questions which cover Logical,Quantitative, Code snippets

Round 2 - Technical 

(3 Questions)

  • Q1. Two Sum in Coding
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Differences in final,Finally,Finalize
  • Ans. 

    final, finally, and finalize are related terms in programming but have different meanings and usage

    • final is a keyword in Java used to restrict inheritance, method overriding, and variable reassignment

    • finally is a block of code in exception handling that always executes, regardless of whether an exception is thrown

    • finalize is a method in Java used for cleanup operations before an object is garbage collected

  • Answered by AI
  • Q3. Basic Sql operations
Round 3 - Technical 

(3 Questions)

  • Q1. Array List Implementation in Stack for Push and pop
  • Ans. 

    Array List can be implemented in a stack by using an array and keeping track of the top element.

    • Create an array to store the elements of the stack.

    • Keep track of the top element using a variable.

    • For push operation, add the element to the top of the stack and increment the top index.

    • For pop operation, remove the top element and decrement the top index.

  • Answered by AI
  • Q2. Finding 3rd Largest Number in an Array without using Sort
  • Ans. 

    Find 3rd largest number in array without sorting

    • Iterate through array to find largest, 2nd largest, and 3rd largest numbers

    • Keep track of these numbers as you iterate

    • Return the 3rd largest number found

  • Answered by AI
  • Q3. Finding the min number of Swap in Sorting of Array
  • Ans. 

    To find the minimum number of swaps needed to sort an array

    • Use graph theory to find cycles in the array

    • Count the number of swaps needed to fix each cycle

    • Add up the swaps needed for all cycles to get the total minimum swaps

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn About a PL clearly and Do more of DSA.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Explain HR core operating principles and workforce metrics that strengthen the Value preposition of workforce.
  • Ans. 

    HR core operating principles and workforce metrics enhance the value proposition of the workforce by aligning HR strategies with business goals.

    • HR core operating principles include fairness, transparency, compliance, and continuous improvement.

    • Workforce metrics such as turnover rate, employee engagement, productivity, and diversity can help measure the effectiveness of HR strategies.

    • By focusing on these principles and ...

  • Answered by AI
  • Q2. Unique Challenges Faced from the Business Stakeholders and solution approached.
  • Ans. 

    Business stakeholders often have unique challenges that require tailored solutions from an Associate HRBP Lead.

    • Building strong relationships with stakeholders to understand their needs and concerns

    • Customizing HR strategies and solutions to align with business goals

    • Providing proactive communication and support to address stakeholder challenges

    • Collaborating with cross-functional teams to implement effective solutions

    • Leve...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I felt I would have prepared better for the Interview, but I gained a good learning as the Interviewer Amrita was very clear and learned professional shared a solutions to the ones I couldn't answer aptly. But the recruiter was rude when I was followingup they just hangup phones on me and didnt bother to under my curiosity as a job seeker. overall Interview experience was excellent and happy to connect with a learned HR Leader. Unfortunately, may be I was not able to clear the Interview . my advice to the job seekers pls make a good prep up
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fibonacci, swap without 3rd var
  • Q2. Non repetitive char in string
  • Ans. 

    Find the first non-repetitive character in a string.

    • Iterate through the string and count the occurrences of each character.

    • Return the first character with a count of 1.

  • Answered by AI
Round 2 - Case Study 

Scenario based questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. TCP/IP related questions, what happens when you search a webpage?
  • Q2. Past projects discussions
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions on how would you tackle a particular scenario
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Apti was easy. Technical OOP basic, SQL Basic questions were added too.

Code snippets

Platform: Hackerank

Round 2 - Coding Test 

Coding questions were of basic level.
1.megre two sorted array
2.Find repeated string (case sensitive)

Round 3 - Technical 

(3 Questions)

  • Q1. OOP concepts were asked
  • Q2. SQL queries in good depth
  • Q3. In and out of projects
  • Ans. 

    In and out of projects refers to the involvement and contribution of a QA QC Engineer throughout the project lifecycle.

    • QA QC Engineer is involved in the planning phase to ensure quality standards are defined and met.

    • During the execution phase, they conduct inspections, tests, and audits to verify compliance.

    • In the closing phase, they review project deliverables and document lessons learned for future projects.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Focused on projects
Round 5 - HR 

(2 Questions)

  • Q1. Basic HR questions
  • Q2. Relocation related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack if you prepare well for OOP, Hacker Rank Basic Array and string questions.

SQL basic queries were part of aptitude assessment
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Amrita School of Engineering, Bangalore

Round 1 - Coding Test 

Basic DSA linked list, stack etc

Round 2 - Coding Test 

System design food delivery application

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Why Appviewx and what do u know about it

Interview Preparation Tips

Topics to prepare for AppViewX Software Developer interview:
  • DSA

Digital Nirvana Information Systems Interview FAQs

How many rounds are there in Digital Nirvana Information Systems interview?
Digital Nirvana Information Systems interview process usually has 1 rounds. The most common rounds in the Digital Nirvana Information Systems interview process are Case Study.
How to prepare for Digital Nirvana Information Systems interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Digital Nirvana Information Systems. The most common topics and skills that interviewers at Digital Nirvana Information Systems expect are Angular, Python, AWS, Javascript and MySQL.

Tell us how to improve this page.

People are getting interviews through

based on 2 Digital Nirvana Information Systems interviews
WalkIn
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Mphasis Interview Questions
3.4
 • 790 Interviews
Movate Interview Questions
3.3
 • 244 Interviews
ValueLabs Interview Questions
3.8
 • 186 Interviews
Indium Software Interview Questions
4.1
 • 152 Interviews
Merkle Sokrati Interview Questions
3.8
 • 30 Interviews
FinThrive Interview Questions
3.8
 • 19 Interviews
View all

Digital Nirvana Information Systems Reviews and Ratings

based on 122 reviews

3.8/5

Rating in categories

3.7

Skill development

3.7

Work-Life balance

3.3

Salary & Benefits

3.6

Job Security

3.7

Company culture

3.2

Promotions/Appraisal

3.7

Work Satisfaction

Explore 122 Reviews and Ratings
Financial Reporter
38 salaries
unlock blur

₹2.1 L/yr - ₹5.7 L/yr

Associate Financial Reporter
31 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Softwaretest Engineer
29 salaries
unlock blur

₹1 L/yr - ₹7.9 L/yr

Software Engineer
25 salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Senior Media Analyst
24 salaries
unlock blur

₹3 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Digital Nirvana Information Systems with

Prime Focus Technologies

3.4
Compare

FinThrive

3.8
Compare

Spectraforce Technologies

3.3
Compare

Suyati Technologies

4.3
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