Upload Button Icon Add office photos

Nucleus Software Exports

Compare button icon Compare button icon Compare

Filter interviews by

Nucleus Software Exports Assistant Software Engineer Interview Questions, Process, and Tips

Updated 27 Jun 2024

Top Nucleus Software Exports Assistant Software Engineer Interview Questions and Answers

View all 7 questions

Nucleus Software Exports Assistant Software Engineer Interview Experiences

11 interviews found

I applied via Campus Placement and was interviewed in Dec 2017. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. 1) What do you understand by "String is Immutable"
  • Ans. 

    String is Immutable means it cannot be changed once created.

    • Immutable means unchangeable or cannot be modified.

    • In programming, when we say string is immutable, it means that once a string object is created, its value cannot be changed.

    • Any operation that appears to modify a string actually creates a new string object with the modified value.

    • For example, if we concatenate two strings, a new string object is created with ...

  • Answered by AI
  • Q2. 2) What is multithreading, difference between multitasking and multiprocessing ?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently. Multitasking is the ability of an OS to run multiple tasks concurrently. Multiprocessing is the ability of a system to have multiple CPUs.

    • Multithreading allows for concurrent execution of multiple threads within a single process.

    • Multitasking allows for concurrent execution of multiple processes within an OS.

    • Multiprocessing allows for concu...

  • Answered by AI
  • Q3. 3) What is Generics?
  • Ans. 

    Generics allow classes, interfaces, and methods to be written with type parameters.

    • Generics provide type safety and reduce code duplication.

    • They allow for the creation of reusable code.

    • Examples include List, Dictionary, and Nullable.

    • Generics are used extensively in Java and C# programming languages.

Answered by AI
  • Q4. 4) Any feature you know from java 8 so i told about lambda expression and modularity feature of java 9
  • Q5. 5) What do you mean by collection , i told this as a predefined data structure of java which has list , map etc.
  • Q6. 6) What is graph data structure
  • Ans. 

    Graph data structure is a collection of nodes and edges that represent connections between them.

    • Nodes represent entities and edges represent relationships between them

    • Graphs can be directed or undirected

    • Examples include social networks, road networks, and computer networks

  • Answered by AI
  • Q7. 7) Interface and abstract class , write a abstract method and interface with same name and call it in a class how it will work And so many other, my viva goes for around half an hour. So basically it cove...
  • Q8. Basic introduction - tell me about yourself and family.
  • Interview Preparation Tips

    Round: Test
    Experience: Aptitude and Reasoning Test

    General Tips: I was a fresher and in November 2017 i.e during my 7th semester of B.Tech, nucleus software came in my college , they brief us about the company and i already knows many thing about the company , this is another story that is after end of my 3rd year i did core java training from Ex Nucleus employee who started coaching institute on various technologies near my home, so a lot of things i already knows about this during my 2 months training , so now back to the main story, so in the introduction about the company by HR mam , she asked us about did you know anything about nucleus or visited its website, nobody there at that time knows about it, so i stood up and told her that it is a mnc that works on lending domain , building lending softwares and i had already gone through its website also. After introduction ppt in which package and selection criteria was discussed then we went to it labs for online aptitude and reasoning test , then next day results were out , only few (around 20) students were selected for next interview round (technical + hr) in company itself, and then a week later we reached company for the interview , both technical and hr were at the same time , it is mostly technical and rarely hr but it changes according to the requirement of the company and profile and then out of 20 , only 4 people were selected from my college including me , i was the only one from computers and other three were from electronics background , so backround doesn't matters for your selection as they will going to train you for next 2 months and then 6 months internship (total 8 months training cum internship) is going to take place and after that you are going to get the profile of assistant software engineer with a 3.46 lpa package. This procedure is for on campus placed as well as for freshers. And i am the lucky one who is able to crack all the rounds and finally feeling proud to work as an employee at nucleus software exports ltd. This was my short lucky story.
    Skills: Logical ability, Basic Programming knowledge
    Duration: <1 week
    College Name: HMR Institute of Technology & Management

    Skills evaluated in this interview

    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.

    Assistant Software Engineer Interview Questions Asked at Other Companies

    Q1. 2) What is multithreading, difference between multitasking and mu ... read more
    Q2. 1) What do you understand by "String is Immutable"
    asked in TCS
    Q3. Why is inheritance important in our programming ? Explain it with ... read more
    asked in TCS
    Q4. 1) Introduction 2) why python ... any project in python ? 3) what ... read more
    Q5. 6) What is graph data structure
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    More than 8 weeks
    Result
    Selected Selected

    I applied via campus placement at Kanpur Institute of Technology, Kanpur 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.
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    6-8 weeks
    Result
    Selected Selected

    I applied via Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

    Round 1 - Technical 

    (1 Question)

    • Q1. Basic coding question of adding 2 numbers without using 3rd variable

    Nucleus Software Exports interview questions for designations

     Software Engineer

     (6)

     Assistant Software Developer

     (1)

     Associate Software Engineer

     (4)

     Senior Software Engineer

     (3)

     Software Engineer Trainee

     (1)

     Software Developer

     (1)

     Softwaretest Engineer

     (1)

     Senior Sse Software Engineering Analyst

     (1)

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

    I applied via campus placement at United College of Engineering & Research, Allahabad and was interviewed in Sep 2022. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    Around 10 Reasoning questions 10 Aptitude and 10 English questions

    Round 2 - Coding Test 

    1 coding problem and time alloted was 25 minutes

    Round 3 - Technical 

    (3 Questions)

    • Q1. Basically this was technical + HR 1.For technical questions regarding Final year project.
    • Q2. Python language basics
    • Q3. In HR, overall engineering experiences

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Stick to one language and have a good knowledge over that.
    Clear your basics and do focus on the final year project you are working upon

    Get interview-ready with Top Nucleus Software Exports Interview Questions

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

    I applied via Campus Placement and was interviewed in Jul 2022. There were 5 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 - Aptitude Test 

    Normal level apti test with questions from work and time and some reasoning based questions.

    Round 3 - Coding Test 

    2 coding questions were there, both were between easy and medium and only java and c++ was allowed.

    Round 4 - Technical 

    (1 Question)

    • Q1. Asked me 3 puzzles and then one coding question, question was-- an array is given and a number x is given we have to bring all the numbers of the array to the front which equals to x. Then some questions o...
    Round 5 - HR 

    (1 Question)

    • Q1. Asked me about my project, internship , told me to explain merge sort from basic level. 1 puzzle . asked me what dificulties i faced while building my project. asked me about last problem i solved . it wen...

    Interview Preparation Tips

    Interview preparation tips for other job seekers - medium level dsa is required.
    know famous algo's.
    prepare about your project.
    be confident and happy.
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via campus placement at Arya College of Engineeringg, Jaipur and was interviewed in Jun 2022. There were 4 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - Aptitude Test 

    Medium level aptitude questions

    Round 3 - Coding Test 

    Two coding questions were asked

    Round 4 - Technical 

    (2 Questions)

    • Q1. Tell me about yourself
    • Ans. 

      I am a dedicated and passionate Assistant Software Engineer with a strong background in programming and problem-solving.

      • Proficient in multiple programming languages such as Java, C++, and Python

      • Experience in developing and maintaining software applications

      • Strong understanding of data structures and algorithms

      • Ability to work collaboratively in a team environment

      • Excellent problem-solving and analytical skills

      • Continuous l...

    • Answered by AI
    • Q2. Oops concept were asked

    Interview Preparation Tips

    Interview preparation tips for other job seekers - That was easy interview easy to clear just 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 in Apr 2022. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Cora java concepts, database and initial knowledge of graduation subjects

    Interview Preparation Tips

    Topics to prepare for Nucleus Software Exports Assistant Software Engineer interview:
    • OOPS
    • Core Java
    • Database
    • DSA
    Interview preparation tips for other job seekers - Prepare for dsa questions from any competitive site
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via campus placement at HMR Institute of Technology and Management, Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    All Aptitude related

    Round 2 - Coding Test 

    Some Java Programs and Database questions.

    Round 3 - Technical 

    (3 Questions)

    • Q1. Java related questions.
    • Q2. SQL related questions.
    • Q3. Networking related questions.

    I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

    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 - Coding Test 

    Normal questions

    Round 3 - Technical 

    (1 Question)

    • Q1. DS, OPPs related questions
    Round 4 - HR 

    (5 Questions)

    • Q1. What are your salary expectations?
    • Q2. What is your family background?
    • Q3. Why should we hire you?
    • Q4. What are your strengths and weaknesses?
    • Q5. Tell me about yourself.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Please clear basic knowledge and coding

    I applied via Naukri.com and was interviewed before Sep 2021. There were 4 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 - Coding Test 

    Basic to intermediate coding test, learn searching and sorting algorithm along with basic trees and arrays data structures questions

    Round 3 - Technical 

    (1 Question)

    • Q1. Intermediate level of database , algorithm and data structures, Java related questions
    Round 4 - HR 

    (1 Question)

    • Q1. Usual and light hr questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Not very tough interview to crack , after you clear interview learn spring and hibernate framework before joining. It will help you a lot.

    Nucleus Software Exports Interview FAQs

    How many rounds are there in Nucleus Software Exports Assistant Software Engineer interview?
    Nucleus Software Exports interview process usually has 3-4 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 Assistant 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 Nucleus Software Exports. The most common topics and skills that interviewers at Nucleus Software Exports expect are Core Java, Hibernate, J2Ee, Java and OOPS.
    What are the top questions asked in Nucleus Software Exports Assistant Software Engineer interview?

    Some of the top questions asked at the Nucleus Software Exports Assistant Software Engineer 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. 6) What is graph data structu...read more
    How long is the Nucleus Software Exports Assistant Software Engineer interview process?

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

    Tell us how to improve this page.

    Nucleus Software Exports Assistant Software Engineer Interview Process

    based on 10 interviews

    4 Interview rounds

    • Resume Shortlist Round
    • Coding Test Round
    • Technical Round - 1
    • Technical Round - 2
    View more
    Nucleus Software Exports Assistant Software Engineer Salary
    based on 182 salaries
    ₹3 L/yr - ₹5.5 L/yr
    7% more than the average Assistant Software Engineer Salary in India
    View more details

    Nucleus Software Exports Assistant Software Engineer Reviews and Ratings

    based on 27 reviews

    2.9/5

    Rating in categories

    3.7

    Skill development

    2.6

    Work-life balance

    2.8

    Salary

    2.9

    Job security

    3.0

    Company culture

    2.8

    Promotions

    2.8

    Work satisfaction

    Explore 27 Reviews and Ratings
    Software Engineer
    908 salaries
    unlock blur

    ₹3.5 L/yr - ₹11.2 L/yr

    Senior Software Engineer
    483 salaries
    unlock blur

    ₹7 L/yr - ₹26.5 L/yr

    Technical Lead
    208 salaries
    unlock blur

    ₹10.6 L/yr - ₹34.4 L/yr

    Assistant Software Engineer
    182 salaries
    unlock blur

    ₹3 L/yr - ₹5.5 L/yr

    Software Developer
    113 salaries
    unlock blur

    ₹3.5 L/yr - ₹13.2 L/yr

    Explore more salaries
    Compare Nucleus Software Exports with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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