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 18 May 2025
Popular Designations

27 Interview questions

A Software Engineer was asked 1mo 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 1mo 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 3mo 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
A Software Engineer was asked 3mo ago
Q. What is one-to-one mapping?
Ans. 

One-one mapping is a relationship between two sets where each element of one set is associated with exactly one element of the other set.

  • Each element in the first set maps to exactly one element in the second set.

  • No two elements in the first set map to the same element in the second set.

  • Example: Mapping employee IDs to employee names in a database.

View all Software Engineer interview questions
A Softwaretest Engineer was asked 9mo ago
Q. What is LOS?
Ans. 

LOS stands for Line of Sight, which refers to the unobstructed path between two points.

  • LOS is important in wireless communication to ensure a clear signal between devices.

  • LOS is also crucial in video games for determining visibility and targeting.

  • LOS can be affected by obstacles such as buildings, trees, or terrain.

View all Softwaretest Engineer interview questions
An Assistant Software Engineer was asked 12mo ago
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
Are these interview questions helpful?
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
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

Nucleus Software Exports Interview Experiences

43 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning Questions were given to do.

Round 2 - Technical 

(4 Questions)

  • Q1. What is Lending?
  • Ans. 

    Lending is the act of giving money to someone with the expectation of being paid back with interest.

    • Lending involves providing financial assistance to individuals or businesses in need of funds.

    • The lender typically charges interest on the loan amount, which is the cost of borrowing the money.

    • Common examples of lending include personal loans, mortgages, and business loans.

    • Lending can be done by banks, credit unions, or ...

  • Answered by AI
  • Q2. What is Lending Cycle?
  • Ans. 

    Lending cycle refers to the process of borrowing money, using it, and then repaying it over a specified period of time.

    • Lending cycle starts with a borrower applying for a loan from a lender.

    • Once approved, the borrower receives the funds and uses them for a specific purpose.

    • The borrower then makes regular payments to the lender, including interest, until the loan is fully repaid.

    • Examples: Mortgage loans, car loans, pers...

  • Answered by AI
  • Q3. What is LOS ?
  • Ans. 

    LOS stands for Line of Sight, which refers to the unobstructed path between two points.

    • LOS is important in wireless communication to ensure a clear signal between devices.

    • LOS is also crucial in video games for determining visibility and targeting.

    • LOS can be affected by obstacles such as buildings, trees, or terrain.

  • Answered by AI
  • Q4. What if LMS ?
  • Ans. 

    LMS stands for Learning Management System, a software application for the administration, documentation, tracking, reporting, and delivery of educational courses or training programs.

    • LMS is used by educational institutions, corporations, and government agencies to deliver online learning and training programs.

    • It allows for the creation and management of courses, assessments, and user profiles.

    • LMS typically includes fea...

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

(3 Questions)

  • Q1. How do you rate yourself in LOS ?
  • Ans. 

    I rate myself highly in LOS as I have extensive experience in testing software applications and ensuring their quality.

    • I have a strong understanding of the software development life cycle (SDLC) and how testing fits into each phase

    • I am proficient in creating test plans, test cases, and executing tests to identify and report bugs

    • I have experience with various testing tools and techniques such as manual testing, automati...

  • Answered by AI
  • Q2. How do your rate yourself in LMS ?
  • Ans. 

    I rate myself highly in LMS as I have extensive experience and expertise in using various Learning Management Systems.

    • I have successfully implemented and managed LMS platforms such as Moodle, Blackboard, and Canvas.

    • I have customized LMS to meet specific organizational needs and integrated them with other systems.

    • I have trained users on how to effectively utilize LMS features and functionalities.

    • I have troubleshooted an...

  • Answered by AI
  • Q3. Why should I hire you if I have good developer ?
  • Ans. 

    I bring a unique skill set focused on testing and quality assurance that complements the developer's strengths.

    • I specialize in identifying and fixing bugs before they reach production, saving time and resources.

    • I have experience in creating comprehensive test plans and executing test cases to ensure software reliability.

    • I can collaborate effectively with developers to improve code quality and prevent future issues.

    • My a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a complete knowledge of Lending domain apart from your tech stack.

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
  • Ans. 

    I have extensive experience in merchandising, focusing on product selection, inventory management, and visual displays.

    • Managed product selection for seasonal collections, increasing sales by 20%.

    • Conducted market research to identify trends, leading to a successful launch of a new product line.

    • Collaborated with suppliers to negotiate better pricing, improving profit margins by 15%.

    • Designed and implemented visual merchan...

  • Answered by AI
  • 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.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Aptitude ,Coding MCQ, Coding Test

Round 2 - Technical 

(4 Questions)

  • Q1. OOPs Programming, Web Development, Coding Question (Reverse a String)
  • Q2. Pillers Of OOPs
  • Ans. 

    Pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

    • Polymorphism: Ability to present the same interface for different data types.

  • Answered by AI
  • Q3. Explain Inheritance with 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 Shape { ....

  • Answered by AI
  • Q4. 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 the e...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basic Programming in a Language(JAVA, C++, Python) of Your choice with a proper understanding of OOPs knowledge.
Learn Basic Web Development.

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
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 Aptitude Test.
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 38 interview experiences

Difficulty level

Easy 17%
Moderate 74%
Hard 9%

Duration

Less than 2 weeks 71%
2-4 weeks 13%
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.3
 • 304 Interviews
HighRadius Interview Questions
2.8
 • 197 Interviews
Chetu Interview Questions
3.3
 • 195 Interviews
AVASOFT Interview Questions
2.9
 • 173 Interviews
Oracle Cerner Interview Questions
3.7
 • 161 Interviews
Brane Enterprises Interview Questions
2.0
 • 138 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
View all

Nucleus Software Exports Reviews and Ratings

based on 562 reviews

3.5/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

3.3

Salary

3.9

Job security

3.3

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 562 Reviews and Ratings
IBM BAW Developer

Chennai

4-8 Yrs

Not Disclosed

Developer IBM Datacap

Chennai

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
991 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Senior Software Engineer
518 salaries
unlock blur

₹7.2 L/yr - ₹27.4 L/yr

Technical Lead
229 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Assistant Software Engineer
163 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Software Developer
117 salaries
unlock blur

₹4.3 L/yr - ₹14.9 L/yr

Explore more salaries
Compare Nucleus Software Exports with

KPIT Technologies

3.3
Compare

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Oracle Cerner

3.6
Compare
write
Share an Interview