Upload Button Icon Add office photos
Engaged Employer

i

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

Nabla Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nabla Infotech Interview Questions and Answers

Updated 24 Jan 2025

Nabla Infotech Interview Experiences

Popular Designations

4 interviews found

Software Developer Interview Questions & Answers

user image Gitanjali Ranode

posted on 21 Jan 2025

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

(4 Questions)

  • Q1. What is java and java features
  • Ans. 

    Java is a high-level programming language known for its portability, security, and robustness.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • Java is object-oriented, allowing for modular and reusable code

    • Java is secure, with features like automatic memory management and strong type checking

    • Java is robust, with built-in exception handling and garbage collection

    • Java is wid...

  • Answered by AI
  • Q2. What OOPS and explain with examples?
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Example: Inheritance allows a class to inherit properties and methods from another class.

    • Example: Encapsulation hides the internal state of an object and onl...

  • Answered by AI
  • Q3. What is stringbuffer
  • Ans. 

    StringBuffer is a mutable sequence of characters used for manipulating strings.

    • StringBuffer is part of the Java.lang package in Java.

    • It allows for the modification of strings without creating new objects.

    • Methods like append(), insert(), delete(), and reverse() can be used with StringBuffer.

  • Answered by AI
  • Q4. What is difference between vector and arraylist
  • Ans. 

    Vector is synchronized and arraylist is not. Vector is slower than arraylist. Vector is thread-safe while arraylist is not.

    • Vector is synchronized, meaning only one thread can access it at a time. ArrayList is not synchronized.

    • Vector is slower than ArrayList because of synchronization.

    • Vector is thread-safe, while ArrayList is not. This means Vector is safe to use in a multi-threaded environment.

    • ArrayList is more efficie

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. For java they prefer Java 8 proficiency, Good database knowledge like MySql and Postgresql & decent knowledge on Frameworks and architecture like Spring boot microservices etc

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(1 Question)

  • Q1. Basics of Java, spring boot ,microservoces
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation, terms and conditions

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company to learn and enhance your skills.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (211)

I appeared for an interview in Oct 2020.

Interview Questionnaire 

1 Question

  • Q1. Interview was little tough asked lots of question related core java and they also asked some concept like explained using real time example. also asked some concept related to database

Interview Preparation Tips

Interview preparation tips for other job seekers - Learned perfect core java and gain your practical knowledge do some practice on logical coding

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

Nabla Infotech interview questions for popular designations

 Software Engineer Trainee

 (2)

 Software Engineer

 (1)

 Software Developer

 (1)

Jobs at Nabla Infotech

View all

Interview questions from similar companies

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Total 5 rounds. 1. pen paper coding test at company location (1st one is two pointer and second one is pattern) 2. L1 techinical - oops concept two coding question and some java and advance java concept basic (find palindrome) 3. L2 techinical - two coding question, one puzzle, sql vs nosql, etc (build linked list using class, find min and max element in array), discussion on time complexity 4. L3 managerial round : one basic two loop question and optimmize it , printing pattern question, etc and time complecity 5. HR round- basic hr questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In this round there are two codingquestion firs was pythagora triplet,and second was sort array 0's 1's,2's.and to solve this program time limit was 1 hour.

Round 2 - Technical 

(3 Questions)

  • Q1. OOPs Related Basic question
  • Q2. Exception Handling
  • Q3. Multithreading related basic question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are the technologies used in your college project
  • Q2. Java, Springboot
Round 2 - Coding Test 

Write the program to reverse the letters of the words in a sentence.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should clear your basics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions are there in the test.

Round 2 - Technical 

(2 Questions)

  • Q1. Linked list merging
  • Q2. JavaScript difference between && and &&&
  • Ans. 

    && is a logical AND operator in JavaScript, while &&& is not a valid operator.

    • && is used to combine two logical expressions and returns true only if both expressions are true

    • &&& is not a valid operator in JavaScript and will result in a syntax error

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Contribute to company’s growth.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General numerical problems

Round 2 - Technical 

(3 Questions)

  • Q1. What was the project in last year?
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used Java for backend development

    • Implemented responsive design using HTML, CSS, and JavaScript

    • Integrated payment gateway for online transactions

  • Answered by AI
  • Q2. What was your role in it?
  • Ans. 

    I was responsible for developing and testing new features for the company's mobile application.

    • Developed new features for the mobile application

    • Tested the functionality of the features

    • Collaborated with team members to ensure successful implementation

  • Answered by AI
  • Q3. What was your contribution in it?
  • Ans. 

    I contributed by developing new features, fixing bugs, and optimizing code for the software project.

    • Developed new features based on user requirements

    • Fixed bugs reported by QA team or users

    • Optimized code for better performance and efficiency

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What was your project for last year?
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented backend functionality using Node.js and MongoDB

    • Incorporated user authentication and authorization features

    • Utilized RESTful APIs for communication between front-end and back-end

  • Answered by AI
  • Q2. What are your hobbies?
  • Ans. 

    My hobbies include playing the guitar, hiking, and reading science fiction novels.

    • Playing the guitar

    • Hiking

    • Reading science fiction novels

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

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

  • Q1. What motivates you to join Zidio Development as opposed to other companies?
  • Q2. How will your experience with Zidio development contribute to your career growth?
  • Ans. 

    My experience with Zidio development will enhance my technical skills, teamwork, and problem-solving abilities, crucial for my career growth.

    • Developed proficiency in programming languages like Java and Python, which are essential for software development roles.

    • Collaborated with a diverse team, improving my communication skills and ability to work in a team-oriented environment.

    • Gained hands-on experience with agile meth...

  • Answered by AI

Nabla Infotech Interview FAQs

How many rounds are there in Nabla Infotech interview?
Nabla Infotech interview process usually has 1-2 rounds. The most common rounds in the Nabla Infotech interview process are Technical, HR and Resume Shortlist.
How to prepare for Nabla Infotech 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 Nabla Infotech. The most common topics and skills that interviewers at Nabla Infotech expect are Java, Hibernate, JPA, Spring Boot and Maven.
What are the top questions asked in Nabla Infotech interview?

Some of the top questions asked at the Nabla Infotech interview -

  1. what is difference between vector and arrayl...read more
  2. what OOPS and explain with exampl...read more
  3. what is java and java featu...read more

Tell us how to improve this page.

Nabla Infotech Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
View all

Nabla Infotech Reviews and Ratings

based on 27 reviews

4.4/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

3.9

Salary

4.1

Job security

4.2

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 27 Reviews and Ratings
Urgent hiring For Senior Java Developer, Hyderabad - Hybrid

Hyderabad / Secunderabad

5-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
39 salaries
unlock blur

₹2.4 L/yr - ₹8.3 L/yr

Java Developer
28 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹5.7 L/yr - ₹19.3 L/yr

Software Tester
11 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Software Developer
9 salaries
unlock blur

₹2.4 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Nabla Infotech with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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