Upload Button Icon Add office photos

Filter interviews by

Neural IT Python Software Developer Interview Questions and Answers

Updated 22 Sep 2023

Neural IT Python Software Developer Interview Experiences

1 interview found

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

I applied via Indeed and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. General question regarding your resume
Round 3 - Technical 

(1 Question)

  • Q1. 1 simple question that is print yes or no using for loop if a given number is present in the list
  • Ans. So I had answered it wrong knowingly because I didn't wanted to waste more of my time Simple 2 line code for this is Result = "no" For i in given_list : If i == given_number: Result = 'yes' Break print(result) I also provided other methods but the interviewer was expecting of a specific solutions my solutions was more easier That's below code if given_number in given_list: Print(yes) Els
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Neural IT Python Software Developer interview:
  • Basic python
Interview preparation tips for other job seekers - This company is not for normal developers it's more like a jail as as I observed during my interview process. No phones are allowed on floor which is weird for developer role also each time an employee was passing through the door even for taking a phone call or for a washroom break the gaurd is noting the in and out time of each employee and asking there name to keep record so thats super weird that it's like a jail where each employee is a convict and need to note there in and out time
And one more point unnecessary waiting for 3..4 hours even if 2..to 3 person are present for giving interview the process was way simpler for the time it took for the interview

Interview questions from similar companies

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

(1 Question)

  • Q1. 3 dsa problem asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Covers basics aps around 15 question

Round 2 - Coding Test 

DSA based questions from leetcode easy and medium

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

I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. Core java, Java 8
Round 2 - Coding Test 

Random Programming questions

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

Basic aptitude and coding problems were asked

Round 2 - Coding Test 

System design and advanced algorithms were asked

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 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 - Technical 

(1 Question)

  • Q1. Questions on IOT and related
Round 3 - Coding Test 

Questions mainly from Linked list.

Round 4 - Technical 

(1 Question)

  • Q1. Basically coding round, with basic questions from arrays. One needs to have good communication skills to explain to interviewers.

Interview Preparation Tips

Topics to prepare for VassarLabs Software Engineer interview:
  • DSA
  • IOT
Interview preparation tips for other job seekers - It is an startup, you need to ready for any questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 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 

Basic java questions

Round 3 - Technical 

(2 Questions)

  • Q1. Explain Linked list implementation and stack
  • Ans. 

    Linked list is a data structure where each element points to the next element. Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Linked list implementation involves creating nodes with data and a pointer to the next node.

    • Stack implementation involves pushing elements onto the stack and popping them off in reverse order.

    • Example: Linked list - 1 -> 2 -> 3 -> NULL, Stack - push(1), push(2), push(3)

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Company Website

Round 1 - Technical 

(2 Questions)

  • Q1. Life cycle of thread
  • Ans. 

    Thread life cycle includes new, runnable, running, blocked, and terminated states.

    • Thread is created in 'new' state

    • It becomes 'runnable' when start() method is called

    • Thread enters 'running' state when CPU starts executing its run() method

    • It can go to 'blocked' state if it's waiting for a resource

    • Finally, thread reaches 'terminated' state when run() method completes or stop() method is called

  • Answered by AI
  • Q2. İnternal working of hash map
  • Ans. 

    Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash map consists of an array of buckets, each containing a linked list of key-value pairs.

    • When inserting a key-value pair, the hash function is used to determine the index of the bucket where the pair should be stored.

    • To retrieve a value, the hash function is used to find the corresponding bucket...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Why I want to change the job
  • Ans. 

    Seeking new challenges, growth opportunities, and a better work-life balance.

    • Looking for new challenges and opportunities to learn and grow

    • Seeking a better work-life balance

    • Interested in working with new technologies or in a different industry

    • Wanting to advance career progression

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

  • Q1. What is JPA
  • Ans. 

    JPA (Java Persistence API) is a specification for managing relational data in Java applications using object-relational mapping.

    • JPA provides a way to map Java objects to database tables.

    • It simplifies database interactions through an object-oriented approach.

    • Common implementations include Hibernate, EclipseLink, and OpenJPA.

    • Example: Using JPA annotations like @Entity to define a persistent class.

    • JPA supports querying wi...

  • Answered by AI
  • Q2. Write a program to find duplicate elements in the list
  • Ans. 

    This program identifies and returns duplicate elements from a given list.

    • Use a set to track seen elements and a list for duplicates.

    • Iterate through the list and check if an element is in the set.

    • If it is, add it to the duplicates list; otherwise, add it to the set.

    • Example: For the list [1, 2, 3, 2, 4, 3], the output should be [2, 3].

  • Answered by AI

I applied via Walk-in and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About my projects
  • Q2. My previous internship experience and what i have learned there.

Interview Preparation Tips

Interview preparation tips for other job seekers - Its both HR and technical interview. But they didn't asked much.

Neural IT Interview FAQs

How many rounds are there in Neural IT Python Software Developer interview?
Neural IT interview process usually has 3 rounds. The most common rounds in the Neural IT interview process are Resume Shortlist, HR and Technical.

Tell us how to improve this page.

Neural IT Python Software Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Neural IT Python Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Data Processor
41 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Legal Associate
32 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Medical Content Writer
31 salaries
unlock blur

₹2.5 L/yr - ₹3.8 L/yr

Software Developer
26 salaries
unlock blur

₹1.9 L/yr - ₹4.2 L/yr

Medical Writer
17 salaries
unlock blur

₹2 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Neural IT with

Karvy Financial Services

3.8
Compare

Reliance Money

3.6
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

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