Upload Button Icon Add office photos

Nucleus Software Exports

Compare button icon Compare button icon Compare

Filter interviews by

Nucleus Software Exports Assistant Software Developer Interview Questions and Answers

Updated 30 Nov 2021

Nucleus Software Exports Assistant Software Developer Interview Experiences

1 interview found

I applied via campus placement at Shri Ram Murti Smarak College of Engineering and Technology, Bareilly and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. The questions were from java, html, css, javascript and a simple factorial question
  • Q2. How to add style using javascript
  • Ans. 

    Styles can be added to HTML elements using JavaScript by manipulating the element's style property.

    • Access the element using document.getElementById() or document.querySelector()

    • Use the style property to set CSS styles, e.g. element.style.color = 'red'

    • Styles can also be set using CSS classes, e.g. element.classList.add('my-class')

  • Answered by AI
  • Q3. What are promises in javascript
  • Ans. 

    Promises are a way to handle asynchronous operations in JavaScript.

    • Promises represent a value that may not be available yet.

    • They have three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() and .catch() methods.

    • They help avoid callback hell and make code more readable.

    • Example: new Promise((resolve, reject) => {...}).then(result => {...}).catch(error => {...})

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be calm and answer the questions by elaborating them, also if you don't know a particular answer always say sorry I cannot remind it

Skills evaluated in this interview

Interview questions from similar companies

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

30min duration simple questions

Round 2 - Coding Test 

Basic array 2 coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Introduce yorself
  • Q2. Explain about final year project
  • Q3. Github link for project
  • Q4. What is oops in java
  • Q5. What is polymorphism explain with examples
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. DSA Array, String and Hashmap questions
  • Q2. Functional programming java questions
Round 2 - Technical 

(5 Questions)

  • Q1. Spring and spring boot related
  • Q2. HLD scenario level questions
  • Q3. SQL queries nested and joins
  • Q4. DB related questions and experience level questions and previous project situations related questions
  • Q5. Security level questions like XSS vulnerability and SQL injection
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. They asked first question related to Spring security .
  • Q2. Questions related to rest API Given scenario and asked approach
  • Q3. Database related like procedures call in db and also in springboot
  • Q4. Core java related to collections
Round 2 - Technical 

(5 Questions)

  • Q1. In second round , interviewer asked me to write logic for Array sort
  • Q2. Singleton class
  • Q3. Design pattern like singleton and factory , dao
  • Q4. Spring data JPA , jdbc connection
  • Q5. Hibernate annotation
Round 3 - Behavioral 

(3 Questions)

  • Q1. Related to projects what we had done
  • Q2. Difficult situations what u face
  • Ans. 

    Handling difficult situations by staying calm, analyzing the problem, and finding a solution.

    • Remaining calm under pressure

    • Identifying the root cause of the problem

    • Collaborating with team members to brainstorm solutions

    • Prioritizing tasks to address the issue efficiently

  • Answered by AI
  • Q3. Code standardization
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding questions java
  • Q2. Logical program s

Interview Preparation Tips

Interview preparation tips for other job seekers - Cheap people, sp hr department, they will force u to sign bond, after signing u r a toy for them , if u do not work accordingly them, simply they won't give u documents relieving letter, won't Mark exit in ur pf service history n lot off even they filed leagal case on my frd
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is aptitude and pesudocode

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly python questions
  • Q2. List questions and basic to mediumprogram

Interview Preparation Tips

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding question for 60 mins. One array based question and one string based question.

Round 2 - Technical 

(2 Questions)

  • Q1. Oops 2 pillars with examples ?
  • Ans. 

    Oops 2 pillars are Abstraction and Encapsulation.

    • Abstraction: Hiding unnecessary details and showing only relevant information. Example: Car dashboard displaying speed without showing internal engine details.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class in object-oriented programming encapsulates data and methods.

  • Answered by AI
  • Q2. Inheritance and it's types with examples ?
  • Ans. 

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

    • Types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance

    • Single inheritance: a class inherits from only one parent class. Example: class Dog inherits from class Animal

    • Multiple inheritance: a class inherits from multiple parent classes. Example:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts and SQL concepts. Web based questions also asked.

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism 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

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

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

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Golang concurrency questions
  • Q2. Random shit chatgpt questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was not interested only, taking rudely from get go, didnt even introduce himself, putting some random questions, not listening and and going on mute in between. What kind joke is this. Total waste of time

Nucleus Software Exports Interview FAQs

What are the top questions asked in Nucleus Software Exports Assistant Software Developer interview?

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

  1. How to add style using javascr...read more
  2. What are promises in javascr...read more
  3. The questions were from java, html, css, javascript and a simple factorial ques...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all
Nucleus Software Exports Assistant Software Developer Salary
based on 7 salaries
₹3 L/yr - ₹4.5 L/yr
5% less than the average Assistant Software Developer Salary in India
View more details

Nucleus Software Exports Assistant Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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
207 salaries
unlock blur

₹10.7 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