Upload Button Icon Add office photos

Nucleus Software Exports

Compare button icon Compare button icon Compare

Filter interviews by

Nucleus Software Exports Interview Questions and Answers

Updated 20 Jul 2025
Popular Designations

28 Interview questions

A Software Engineer was asked 2mo ago
Q. What are the differences between static binding and dynamic binding?
Ans. 

Static binding occurs at compile time, while dynamic binding happens at runtime, affecting method resolution in OOP.

  • Static Binding: Also known as early binding, it resolves method calls at compile time. Example: Method overloading in Java.

  • Dynamic Binding: Known as late binding, it resolves method calls at runtime. Example: Method overriding in Java using polymorphism.

  • Performance: Static binding is generally faster...

View all Software Engineer interview questions
A Software Engineer was asked 2mo ago
Q. What is the difference between local, instance, and global variables?
Ans. 

Local, instance, and global variables differ in scope and lifetime, affecting how and where they can be accessed in code.

  • Local Variables: Defined within a function or block, accessible only within that scope. Example: `void func() { int x = 10; }`.

  • Instance Variables: Belong to an instance of a class, accessible through objects. Example: `class Car { int speed; }`.

  • Global Variables: Defined outside any function or c...

View all Software Engineer interview questions
A Software Engineer was asked 2mo ago
Q. What is the difference between an interface and an abstract class?
Ans. 

Interfaces define contracts for classes, while abstract classes provide a base with shared code and can have state.

  • An interface can only declare methods, while an abstract class can declare methods and provide implementations.

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

  • Interfaces cannot have instance variables, while abstract classes can have both instance variables and m...

View all Software Engineer interview questions
A Software Engineer was asked 5mo ago
Q. Explain the concept of inheritance in object-oriented programming.
Ans. 

Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

  • Allows a class to inherit attributes and methods from another class

  • Promotes code reusability and reduces redundancy

  • Creates a parent-child relationship between classes

  • Derived class can override or extend the functionality of the base class

  • Example: Class 'Car' can inherit from class 'Vehicle' an...

View all Software Engineer interview questions
An Assistant Software Engineer was asked
Q. Write code to add two numbers without using a third variable.
Ans. 

Add two numbers without using a third variable by leveraging arithmetic operations.

  • Use addition and subtraction: a = a + b; b = a - b; a = a - b.

  • Example: For a = 5 and b = 3, after operations, a becomes 8 and b becomes 5.

  • Use bitwise operations: a = a ^ b; b = a & b; a = a ^ b.

  • Example: For a = 5 (0101) and b = 3 (0011), after operations, a becomes 8 (1000) and b becomes 0.

View all Assistant Software Engineer interview questions
An Assistant Software Engineer was asked
Q. Explain Inheritance with a code example.
Ans. 

Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

  • Allows for code reusability and promotes a hierarchical relationship between classes

  • Derived class can access the members of the base class

  • Types of inheritance include single, multiple, multilevel, and hierarchical

  • Example: class Animal { ... } class Dog extends Animal { ... }

  • Example: class Shap...

View all Assistant Software Engineer interview questions

Nucleus Software Exports HR Interview Questions

7 questions and answers

Q. How would you rate your proficiency with LMS?
Q. How would you rate your knowledge of LOS?
Q. Why should I hire you if I already have good developers?
An Assistant Software Engineer was asked
Q. Explain Polymorphism.
Ans. 

Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example: Animal class with methods like eat() can be inherited by Dog and Cat classes which can override ...

View all Assistant Software Engineer interview questions
Are these interview questions helpful?
An Associate Software Engineer was asked
Q. Do you know SQL?
Ans. 

Yes, I know SQL.

  • I have experience writing SQL queries to retrieve and manipulate data from databases.

  • I am familiar with basic SQL syntax and can write SELECT, INSERT, UPDATE, and DELETE statements.

  • I have worked with various database management systems like MySQL, Oracle, and SQL Server.

  • I understand concepts like table relationships, indexes, and normalization.

  • I can use SQL to perform data analysis and generate rep...

View all Associate Software Engineer interview questions
An Assistant Software Engineer was asked
Q. What are the core concepts of Object-Oriented Programming (OOP)?
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

  • Encapsulation: Bundling data and methods in a class. Example: A class 'Car' with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class from an existing class. Example: 'ElectricCar' inherits from 'Car'.

  • Polymorphism: Ability to present t...

View all Assistant Software Engineer interview questions
A Graduate Student was asked
Q. How do you add a text field using HTML?
Ans. 

To add a text field using HTML, use the <input> tag with type='text'

  • Use the <input> tag with type='text' to create a text field

  • Specify the name attribute to identify the field when submitting the form

  • Optionally, set the placeholder attribute to provide a hint to the user

View all Graduate Student interview questions

Nucleus Software Exports Interview Experiences

44 interviews found

Software Engineer Interview Questions & Answers

user image DEEPAK PUNDHIR

posted on 20 Jul 2025

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. About Multithreading and OOPS and String & Array programs
  • Q2. About Spring related questions

Data Scientist Interview Questions & Answers

user image alankrit nirjhar

posted on 4 Jan 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Find Count of even-odd pairs in array.

Software Engineer Interview Questions & Answers

user image Akanksha Bhayekar

posted on 21 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy medium to hard medium

Round 2 - Coding Test 

Questions on array , linked list

Round 3 - Technical 

(1 Question)

  • Q1. Oops ,dbms,cn,operating system
Round 4 - HR 

(1 Question)

  • Q1. Easy question of hr round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Aptitude test(Quants+Reasoning+English)

Round 2 - Coding Test 

1 Beginner+ 1 Intermediate

Round 3 - Technical 

(2 Questions)

  • Q1. Technical CSE & IT Questions
  • Q2. HR Round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Study about the banking. Specifically lending domain. Questions around Repayment schedule of a loan. Some situational questions.

Interview Preparation Tips

Topics to prepare for Nucleus Software Exports Business Analyst interview:
  • Lending Domain
  • Banking Basics
Interview preparation tips for other job seekers - Answer with confidence.
Read about the company.
Study around the topics based the job description.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Online screen test with basic coding questions

Round 2 - Coding Test 

Offline in person basic questions on maps

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding questions codility hacker ranl

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Agile, waterfall model
Round 2 - One-on-one 

(1 Question)

  • Q1. Projects implemented, Project management tools, working styles
Round 3 - One-on-one 

(1 Question)

  • Q1. End to end journey of project.
  • Ans. 

    The end to end journey of a project involves planning, execution, monitoring, and closing phases to achieve project goals.

    • Initiation: Define project scope, objectives, and stakeholders.

    • Planning: Develop project plan, schedule, and budget.

    • Execution: Implement project plan, manage resources, and communicate progress.

    • Monitoring: Track project performance, identify risks, and make adjustments.

    • Closing: Finalize project deli...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Merchandiser Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Your previous experience
  • Q2. Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident!
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

(1 Question)

  • Q1. Moderate Coding questions related to array and string.
Round 2 - One-on-one 

(1 Question)

  • Q1. PI Round + Technical Round

Interview Preparation Tips

Topics to prepare for Nucleus Software Exports Assistant Software Engineer interview:
  • Java
  • Project
  • OOPS
  • PI Questions
Interview preparation tips for other job seekers - Practice Basic Java Concepts and Better to have a good knowledge on what project and technologies you worked on.

Top trending discussions

View All
Interview Hub
2w
a team lead
FeedCard Image
Got a question about Nucleus Software Exports?
Ask anonymously on communities.

Nucleus Software Exports Interview FAQs

How many rounds are there in Nucleus Software Exports interview?
Nucleus Software Exports interview process usually has 2-3 rounds. The most common rounds in the Nucleus Software Exports interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Nucleus Software Exports 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 Nucleus Software Exports. The most common topics and skills that interviewers at Nucleus Software Exports expect are CRM, Hibernate, Java, SAN and Agile.
What are the top questions asked in Nucleus Software Exports interview?

Some of the top questions asked at the Nucleus Software Exports interview -

  1. 2) What is multithreading, difference between multitasking and multiprocessin...read more
  2. 1) What do you understand by "String is Immutabl...read more
  3. 5) What do you mean by collection , i told this as a predefined data structure ...read more
What are the most common questions asked in Nucleus Software Exports HR round?

The most common HR questions asked in Nucleus Software Exports interview are -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Nucleus Software Exports interview process?

The duration of Nucleus Software Exports interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 39 interview experiences

Difficulty level

Easy 17%
Moderate 75%
Hard 8%

Duration

Less than 2 weeks 72%
2-4 weeks 12%
4-6 weeks 4%
6-8 weeks 8%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.2
 • 310 Interviews
Chetu Interview Questions
3.3
 • 203 Interviews
HighRadius Interview Questions
2.8
 • 197 Interviews
AVASOFT Interview Questions
2.7
 • 175 Interviews
Intellect Design Arena Interview Questions
3.9
 • 172 Interviews
Oracle Cerner Interview Questions
3.6
 • 163 Interviews
Brane Enterprises Interview Questions
2.0
 • 138 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 127 Interviews
Thomson Reuters Interview Questions
4.1
 • 126 Interviews
View all

Nucleus Software Exports Reviews and Ratings

based on 571 reviews

3.4/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.2

Salary

3.9

Job security

3.3

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 571 Reviews and Ratings
Account Manager

Noida

9-13 Yrs

Not Disclosed

Developer -OpenText AppWorks

Chennai

3-7 Yrs

Not Disclosed

Developer IBM Datacap

Chennai

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1k salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Senior Software Engineer
495 salaries
unlock blur

₹9.6 L/yr - ₹19 L/yr

Technical Lead
227 salaries
unlock blur

₹17 L/yr - ₹30.6 L/yr

Assistant Software Engineer
191 salaries
unlock blur

₹3 L/yr - ₹7.9 L/yr

Software Developer
118 salaries
unlock blur

₹5.3 L/yr - ₹14 L/yr

Explore more salaries
Compare Nucleus Software Exports with

KPIT Technologies

3.2
Compare

Intellect Design Arena

3.9
Compare

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare
write
Share an Interview