Upload Button Icon Add office photos
Engaged Employer

i

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

PrismHR Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PrismHR Software Engineer Interview Questions and Answers

Updated 1 Jul 2023

PrismHR Software Engineer Interview Experiences

2 interviews found

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

I applied via Naukri.com and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Its very easy and some questions are very logical to do.

Round 3 - Group Discussion 

In GD, there are 5 given topics you have to chose there own topic to discuss or explain individually for 4 to 5 minutes.

Round 1 - Technical 

(3 Questions)

  • Q1. Features of es6 and your favorite one out of all of them
  • Ans. 

    ES6 introduced many new features like arrow functions, let and const, classes, and more. My favorite feature is template literals.

    • Template literals allow for easier string interpolation and multiline strings.

    • They use backticks (`) instead of quotes and allow for embedded expressions.

    • Example: `Hello ${name}, today is ${date}`

    • This feature improves code readability and reduces the need for concatenation.

  • Answered by AI
  • Q2. Difference between sql and nosql databases and when to prefer one over the other
  • Ans. 

    SQL is a relational database while NoSQL is non-relational. SQL is good for structured data while NoSQL is good for unstructured data.

    • SQL databases use tables with predefined schema while NoSQL databases use documents, key-value pairs, or graphs

    • SQL databases are good for complex queries and transactions while NoSQL databases are good for scalability and flexibility

    • SQL databases are ACID compliant while NoSQL databases ...

  • Answered by AI
  • Q3. Favorite programming language and all of the languages you have worked on so far
  • Ans. 

    My favorite programming language is Python. I have also worked with Java, C++, and JavaScript.

    • Python is my favorite language due to its simplicity and versatility

    • I have used Java for developing enterprise applications

    • C++ was my go-to language for performance-critical applications

    • JavaScript was used for developing web applications and front-end development

  • Answered by AI

Interview Preparation Tips

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

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Static methods belong to the class itself, while instance methods belong to individual objects of the class.

    • Static methods are called using the class name, while instance methods are called using object references.

    • Static methods cannot access instance variables directly, while instance methods can access both static and instance variables.

    • Static methods are shared among all instances of the class, while instance method...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m

  • Answered by AI
  • Q3. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
  • Ans. 

    ClassNotFoundException occurs when a class is not found during runtime, while NoClassDefFoundError occurs when a class was found during compilation but not during runtime.

    • ClassNotFoundException is a checked exception, while NoClassDefFoundError is an Error.

    • ClassNotFoundException occurs when a class is not found at runtime, usually due to a missing classpath or incorrect class name.

    • NoClassDefFoundError occurs when a cla...

  • Answered by AI
  • Q4. What is the difference between an Error and an Exception in Java?
  • Ans. 

    Error is a serious issue that cannot be handled at runtime, while Exception is a recoverable issue that can be caught and handled.

    • Error is a subclass of Throwable and is usually caused by the environment or system, such as running out of memory or stack overflow.

    • Exception is also a subclass of Throwable but is caused by the application code, such as invalid input or file not found.

    • Errors are unchecked and are not meant...

  • Answered by AI
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    SerialVersionUID is a unique identifier used by Java to ensure the compatibility of serialized objects.

    • SerialVersionUID is a static final long variable in a class that implements Serializable interface.

    • It is used to ensure that the serialized object can be deserialized correctly even if the class definition has changed.

    • If the SerialVersionUID of the serialized object does not match the one in the class, an InvalidClass...

  • Answered by AI
  • Q6. What are the requirements for creating an immutable class in Java?
  • Ans. 

    Requirements for creating an immutable class in Java

    • Make the class final so it cannot be extended

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • Ensure that mutable objects are not returned in getter methods

    • Override equals() and hashCode() methods for proper comparison

    • Consider making defensive copies of mutable fields in constructor or getter methods

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic SQL Queries, some very basic Java questions, the interviewer herself didn't know much about coding in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yodlee is a big company will several departments, every department has its own requirements.

I was inducted into the IAE department as an ASE through pool-campus placement.

The issue at Yodlee is that it's IAE department that they actively hire for, is the worst department as far as technical growth and knowledge are concerned. There is no learning. Hence usually the interviewers (mostly the directors, managers, and leads in IAE) who have been in the organization for a very large part of their career, are also very weak as far as their technical skills are concerned. Their political and toxic managerial skills skyrocket though. They stay there for too long and become virtually outdated in terms of their technical skills.

Therefore you can rest be assured that the interview quality will be well below average as far as IAE is concerned. I am not sure about other departments, but I would not assume otherwise. I would suggest, if you have to absolutely join IAE in Yodlee, just an average preparation would be more than enough. If you have other opportunities, I would suggest prioritizing them over Yodlee.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain basics of c#
  • Ans. 

    C# is a programming language developed by Microsoft for building a wide range of applications on the .NET framework.

    • C# is an object-oriented language with features like classes, inheritance, and polymorphism.

    • It is strongly typed, meaning variables must be declared with a specific data type.

    • C# supports modern programming concepts like async/await for asynchronous programming.

    • It is commonly used for developing desktop, w...

  • Answered by AI
  • Q2. C# basics oops sql server

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Good technical round, you can manage, mainly Java questions used to come

Round 2 - HR 

(2 Questions)

  • Q1. HR round is also good package discussion will happen
  • Q2. Company personal so kept secret

Interview Preparation Tips

Topics to prepare for Yodlee Senior Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - With ML & advanced technology in working condition in place, they require less staffs
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 50 question out of which if you score 20 you were passed out to next round, No negative markings.

PrismHR Interview FAQs

How many rounds are there in PrismHR Software Engineer interview?
PrismHR interview process usually has 2 rounds. The most common rounds in the PrismHR interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for PrismHR Software Engineer 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 PrismHR. The most common topics and skills that interviewers at PrismHR expect are Consulting, Troubleshooting, SQL, Agile and C#.
What are the top questions asked in PrismHR Software Engineer interview?

Some of the top questions asked at the PrismHR Software Engineer interview -

  1. difference between sql and nosql databases and when to prefer one over the ot...read more
  2. features of es6 and your favorite one out of all of t...read more
  3. favorite programming language and all of the languages you have worked on so ...read more

Tell us how to improve this page.

PrismHR Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
PrismHR Software Engineer Salary
based on 12 salaries
₹4.5 L/yr - ₹14.8 L/yr
At par with the average Software Engineer Salary in India
View more details

PrismHR Software Engineer Reviews and Ratings

based on 3 reviews

3.2/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.2

Salary

3.7

Job security

3.7

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
12 salaries
unlock blur

₹4.5 L/yr - ₹14.8 L/yr

Customer Service Manager
12 salaries
unlock blur

₹8.3 L/yr - ₹13 L/yr

Assistant Service Delivery Manager
11 salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Delivery Analyst
8 salaries
unlock blur

₹4.1 L/yr - ₹5 L/yr

Delivery Specialist
7 salaries
unlock blur

₹6.4 L/yr - ₹8.5 L/yr

Explore more salaries
Compare PrismHR with

Prime Focus Technologies

3.3
Compare

Yodlee

3.8
Compare

Global Edge Software

3.5
Compare

Bravura Solutions

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