Upload Button Icon Add office photos
Engaged Employer

i

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

Novopay Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Novopay Solutions Senior Software Engineer Interview Questions and Answers

Updated 26 Apr 2024

Novopay Solutions Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic question on java
Round 2 - Technical 

(1 Question)

  • Q1. Advance concept of java
  • Ans. 

    Advanced concepts in Java include multithreading, design patterns, lambda expressions, and stream API.

    • Multithreading allows multiple threads to run concurrently, improving performance. Example: creating and managing threads using Executor framework.

    • Design patterns are reusable solutions to common problems in software design. Example: Singleton pattern ensures a class has only one instance.

    • Lambda expressions enable func...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sort an array into group of K elements
  • Ans. 

    Sort an array of strings into groups of K elements

    • Iterate through the array and create subarrays of size K

    • Use a loop to go through the array and add elements to the subarrays

    • Handle cases where the array length is not divisible by K

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Start with three pointers: current, prev, and next

    • Iterate through the list, updating the next pointer of each node to point to the previous node

    • Update prev and current pointers for next iteration

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

(2 Questions)

  • Q1. Android In depth
  • Ans. 

    Android is a mobile operating system developed by Google, based on the Linux kernel and designed primarily for touchscreen devices.

    • Android is open-source and allows developers to create applications using Java programming language.

    • Android applications are distributed through the Google Play Store.

    • Android supports a wide range of hardware devices from various manufacturers.

    • Android provides a rich set of APIs for develop...

  • Answered by AI
  • Q2. OOPS related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was pretty rude and was not really open for different opinions. It seemed like he was sitting with a question and answer sheet and he was expecting answers to be same as mentioned in the sheet.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DS Algo type questions, string manipulation etc was asked and explored with more detailed questions
Round 2 - One-on-one 

(1 Question)

  • Q1. In depth android, kotlin discussions and high level mapping questions
Round 3 - HR 

(1 Question)

  • Q1. General managerial questions and working agreements type discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic dsa questions and java spring boot questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Bookmyshow design
  • Q2. Notification service design
  • Ans. 

    Design a notification service for sending alerts to users.

    • Use a scalable messaging system like Kafka or RabbitMQ to handle high volume of notifications.

    • Implement a notification queue to ensure reliable delivery of notifications.

    • Include support for different types of notifications such as email, SMS, and push notifications.

    • Allow users to customize their notification preferences and frequency.

    • Implement monitoring and log...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Project Discussion 

(2 Questions)

  • Q1. Questions on what project you worked on
  • Q2. Design 2 factor authentication
  • Ans. 

    Implementing 2 factor authentication for enhanced security

    • Require users to enter their password as the first factor

    • Send a unique code to the user's registered email or phone as the second factor

    • Prompt the user to enter the code to complete the authentication process

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Leetcode medium - LRU Cache and sliding window question

Round 2 - System Design 

(1 Question)

  • Q1. Design Whatsapp
  • Ans. 

    Design a messaging app like Whatsapp

    • Implement end-to-end encryption for secure messaging

    • Allow users to send text messages, images, videos, and documents

    • Include features like group chats, voice and video calls, status updates

    • Provide option for users to share their location

    • Develop a user-friendly interface with customizable settings

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Basic of os, network snd oops

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

Round 1 - Technical 

(1 Question)

  • Q1. Problem solving (coding)
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical discussion
Round 3 - HR 

(1 Question)

  • Q1. HR discussion, pay discussion

Interview Preparation Tips

Topics to prepare for One Trust Senior Software Engineer interview:
  • Java
  • Angularjs
Interview preparation tips for other job seekers - Less job security, be cautious while accepting the offer. Check for layoff happened on June 9th 2022. There was a mass layoff (removed 950 employees)

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

(3 Questions)

  • Q1. Most questions were on Java 8 and Collections Framework. Some Questions on Core Java and SQL for Round 1
  • Q2. How to Filter from stream.
  • Ans. 

    Filtering from a stream involves selecting specific elements based on certain criteria.

    • Use filter() method to create a new stream with elements that pass a given test.

    • Provide a Predicate functional interface to filter() method.

    • Example: stream.filter(x -> x > 5) will return a new stream with elements greater than 5.

  • Answered by AI
  • Q3. Find Top 3 salary for SQL
  • Ans. 

    To find top 3 salaries for SQL, we need to use the ORDER BY and LIMIT clauses in SQL query.

    • Use ORDER BY clause to sort the salaries in descending order

    • Use LIMIT clause to limit the result to top 3 salaries

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 3

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. HQL, How to write Queries
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion based on previous job

Interview Preparation Tips

Topics to prepare for Kuliza Technologies Senior Software Engineer interview:
  • Java 8
  • Spring Boot
  • Hibernate
  • Collections
  • DSA
Interview preparation tips for other job seekers - Focus on Core Java and its features and Spring Hibernate for 2 Round

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Experience of work done in previous company
  • Q2. Questions related to practical work experience on how to solve particular ground problem using tech in logistics company.
Round 2 - Technical 

(2 Questions)

  • Q1. Android Related Question - Basic to Advance.
  • Q2. Work done in previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare android concepts wells and especially how you will deal with on ground problem and use tech to solve those problem. How you will minimise ongoing issue and take action if operation is hampered ?

Novopay Solutions Interview FAQs

How many rounds are there in Novopay Solutions Senior Software Engineer interview?
Novopay Solutions interview process usually has 2 rounds. The most common rounds in the Novopay Solutions interview process are Technical.
What are the top questions asked in Novopay Solutions Senior Software Engineer interview?

Some of the top questions asked at the Novopay Solutions Senior Software Engineer interview -

  1. advance concept of j...read more
  2. basic question on j...read more

Tell us how to improve this page.

Novopay Solutions Senior Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Fast track your campus placements

View all
Novopay Solutions Senior Software Engineer Salary
based on 4 salaries
₹22.5 L/yr - ₹33 L/yr
69% more than the average Senior Software Engineer Salary in India
View more details

Novopay Solutions Senior Software Engineer Reviews and Ratings

based on 2 reviews

1.1/5

Rating in categories

1.1

Skill development

1.1

Work-life balance

1.1

Salary

1.1

Job security

1.1

Company culture

1.1

Promotions

1.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Development Engineer
26 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Sde1
20 salaries
unlock blur

₹6.5 L/yr - ₹10 L/yr

Software Developer
18 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

Quality Engineer
15 salaries
unlock blur

₹3.5 L/yr - ₹9.9 L/yr

Associate Product Manager
15 salaries
unlock blur

₹11 L/yr - ₹27.3 L/yr

Explore more salaries
Compare Novopay Solutions with

Eko India Financial Services

2.8
Compare

Fino Paytech

3.9
Compare

Paytm

3.3
Compare

Mobikwik

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