Upload Button Icon Add office photos

Filter interviews by

Naresh i Technologies Interview Questions, Process, and Tips

Updated 24 Jun 2024

Top Naresh i Technologies Interview Questions and Answers

View all 9 questions

Naresh i Technologies Interview Experiences

Popular Designations

12 interviews found

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

(2 Questions)

  • Q1. Python question
  • Q2. Machine learning questions

Mentor Trainer Interview Questions asked at other Companies

Q1. What is Java and show some coding
View answer (1)

Lab Mentors Interview Questions & Answers

user image Anonymous

posted on 20 Mar 2023

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

I applied via Walk-in and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

I coding round ask a question.
a. Print palindrome.
b. Delete duplicate number.
c. Fibonnaci Series.
d. Prime number.

Round 2 - Technical 

(2 Questions)

  • Q1. Q 1. What is constructor. Q 2. What is oops and its features. Q 3.Difference between abstraction and interface. Q 4. Difference between checked and unchecked. Q 5.Throw and throws keyword.
  • Ans. 

    Answers to common programming interview questions.

    • Constructor is a special method that is called when an object is created.

    • OOPs is Object-Oriented Programming which focuses on objects and their interactions.

    • Abstraction is a concept of hiding implementation details while interface is a blueprint of a class.

    • Checked exceptions are checked at compile-time while unchecked exceptions are not.

    • Throw keyword is used to throw an...

  • Answered by AI
  • Q2. 1.Comparable and Comparator. 2.ArrayList and Array.

Interview Preparation Tips

Topics to prepare for Naresh i Technologies Lab Mentors interview:
  • Collection Framework
  • Exception Handling
  • Multithreading
  • OOPS
  • Java8 featurrs
  • Jvm
  • Jre
  • JDK
Interview preparation tips for other job seekers - My advice for jobseeker is whatever you learn and read learn with good concept and with one real time practical example.
It will help to you to crack your any interview.

I have already attend interview I faced such a practical example from interviewer side.
One thing more don't much focus on theory part try to focus on practical, do implement what you learn it will help.

This is my advice for all jobseeker.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2023. There were 2 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 

(2 Questions)

  • Q1. Which is responsible for execute java program
  • Ans. 

    Java Virtual Machine (JVM) is responsible for executing Java programs.

    • JVM is a virtual machine that interprets compiled Java code.

    • It provides a runtime environment for Java programs to run.

    • JVM is platform-independent and provides memory management, security, and other features.

    • Java programs are compiled into bytecode, which is then executed by the JVM.

    • JVM is responsible for loading classes, verifying bytecode, and exec

  • Answered by AI
  • Q2. Why are not remove Servlet from Java technology
  • Ans. 

    Servlets are still relevant for web development in Java

    • Servlets provide a lightweight and efficient way to handle HTTP requests and responses

    • They can be used for dynamic web content generation and server-side processing

    • Servlets are extensible and can be integrated with other Java technologies like JSP and JDBC

    • Alternative technologies like Spring MVC and RESTful APIs build on top of Servlets

    • Removing Servlets would break...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Naresh i Technologies Junior Java Developer interview:
  • Spring Boot
  • Spring Mvc
  • Core Java
  • Advanced Java
Interview preparation tips for other job seekers - Fresher Java Developer
Who is know skill Core java Advanced Java Spring Framework
Good Communication Skills,
Must be English Required.

Skills evaluated in this interview

Junior Java Developer Interview Questions asked at other Companies

Q1. Why we need Oops concepts? What is Constructor? Need of Constructor? StringBuilder? etc.
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2023. 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 - Assignment 

Aptitude test,Codding test,Technical test,HR

Round 3 - Coding Test 

Coding Test Collection Interface

Round 4 - Technical 

(2 Questions)

  • Q1. Technical by Manager
  • Q2. Java Oops concepts,SQL (Basic),JDBC & Servlets

Interview Preparation Tips

Interview preparation tips for other job seekers - Every one have bad day,but don't Worry.Refresh Reset & Restart ,do hard work on your weakness.
Whenever you can't reach on your Goal;

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Naresh i Technologies interview questions for popular designations

 Java Developer

 (2)

 Associate

 (1)

 DOT NET Developer

 (1)

 Junior Java Developer

 (1)

 Mentor Trainer

 (1)

 Project Trainee

 (1)

 Python Developer

 (1)

 Quality Engineer

 (1)

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

I applied via Walk-in and was interviewed before Oct 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. How do you find missing number in a given integer arrary 1to 100 how do you find duplicate how do you find largest and smallest element in arrary find multiple duplicate value in an arrary
  • Ans. 

    To find missing number, duplicate, largest and smallest elements, and multiple duplicates in an array.

    • To find missing number, calculate the sum of all numbers from 1 to 100 and subtract the sum of the given array.

    • To find duplicate, use a hash set to store elements as you iterate through the array and check for duplicates.

    • To find largest and smallest elements, initialize variables with the first element and update them ...

  • Answered by AI
  • Q2. How do you reverse an array
  • Ans. 

    To reverse an array of strings, iterate through the array and swap elements from start to end.

    • Iterate through the array using two pointers, one starting from the beginning and the other from the end.

    • Swap the elements at the two pointers and move the pointers towards the center until they meet or cross each other.

  • Answered by AI
  • Q3. How to find median in 2 arrays
  • Ans. 

    To find the median in 2 arrays of strings, merge the arrays, sort them, and then calculate the median.

    • Merge the two arrays into one array

    • Sort the merged array

    • Calculate the median based on the length of the array (odd or even number of elements)

  • Answered by AI
  • Q4. Difference between array and Arrarylist
  • Ans. 

    Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic collection that can grow or shrink in size.

    • Array is a static data structure with a fixed size, while ArrayList is a dynamic data structure that can resize itself.

    • Arrays can hold primitive data types and objects, while ArrayList can only hold objects.

    • Arrays are faster than ArrayList for accessing elements, but ArrayList is m...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself tell about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare array ,string questions be confident you can achieve any thing in our life,

Skills evaluated in this interview

Project Trainee Interview Questions asked at other Companies

Q1. What is the basic difference between Quality Assurance and Quality Control?
View answer (1)

I applied via Company Website and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Python and django will be coding in this language and full stack

Round 2 - Aptitude Test 

I want to aptitude test and crack this round and find the job

Round 3 - HR 

(3 Questions)

  • Q1. I want to hr round and introduction about my language and developer language
  • Q2. I want to asked me some questions as related of your won company and cultures
  • Q3. They inform me and how to use and how to development
Round 4 - Group Discussion 

I will ready the group discussion

Interview Preparation Tips

Topics to prepare for Naresh i Technologies Python Developer interview:
  • Python
  • Javascript
  • Django
  • CSS
  • HTML
  • Bootstrap
  • JQuery
Interview preparation tips for other job seekers - This is good opportunity .in my won life and i want to to juon this big opportunity and get the job .thx

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Jobs at Naresh i Technologies

View all

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. About C# and ASP.net and Design patterns
Round 3 - Technical 

(1 Question)

  • Q1. About C# and ASP.net and MVC

Interview Preparation Tips

Interview preparation tips for other job seekers - Respected sir/madam,
I am looking for .net developer because I did internship in Naresh IT and I have some knowledge in c#,Asp.net and MVC

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (10)
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 - Aptitude Test 

Basics about aptitude and reasoning

Round 3 - Coding Test 

Minimum coding means loops, conditions, about sorting, about merging and etc
...

Round 4 - Technical 

(1 Question)

  • Q1. Self details Basics of oops Operation of JVM Basic concepts about string handling
Round 5 - HR 

(1 Question)

  • Q1. Oops Multi Threading Exception handling String, stringbuffer, stringbuilder Access modified About class, innerclass, inner methods, enum About JVM

Interview Preparation Tips

Interview preparation tips for other job seekers - Please heve with patience
Observe every moment in the student while taking interview

Student Intern Interview Questions asked at other Companies

Q1. Have you finished the database and data structures courses in you study program?
View answer (1)

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Designation related question
Round 2 - One-on-one 

(1 Question)

  • Q1. Quality relative questions
Round 3 - Aptitude Test 

Attitude relative question

Interview Preparation Tips

Interview preparation tips for other job seekers - I am succsessfull of any environment
Punctual & team work

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)

I applied via AmbitionBox and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Case Study 
Round 2 - Technical 

(2 Questions)

  • Q1. Question of Java and sql
  • Q2. Question of core Java and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and increase your knowledge

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Naresh i Technologies Interview FAQs

How many rounds are there in Naresh i Technologies interview?
Naresh i Technologies interview process usually has 3 rounds. The most common rounds in the Naresh i Technologies interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Naresh i Technologies 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 Naresh i Technologies. The most common topics and skills that interviewers at Naresh i Technologies expect are Training, Python, Java, HTML and Communication Skills.
What are the top questions asked in Naresh i Technologies interview?

Some of the top questions asked at the Naresh i Technologies interview -

  1. Q 1. What is constructor. Q 2. What is oops and its features. Q 3.Difference b...read more
  2. how do you find missing number in a given integer arrary 1to 100 how do you fin...read more
  3. Which is responsible for execute java prog...read more

Tell us how to improve this page.

People are getting interviews through

based on 9 Naresh i Technologies interviews
WalkIn
Job Portal
Company Website
56%
22%
11%
11% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
NIIT Interview Questions
3.6
 • 81 Interviews
Aptech Interview Questions
3.6
 • 23 Interviews
IIHT Interview Questions
3.8
 • 2 Interviews
View all

Naresh i Technologies Reviews and Ratings

based on 119 reviews

4.1/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.7

Salary & Benefits

3.7

Job Security

3.8

Company culture

3.6

Promotions/Appraisal

4.0

Work Satisfaction

Explore 119 Reviews and Ratings
Administration Manager

Hyderabad / Secunderabad

5-10 Yrs

₹ 1.5-3.25 LPA

.NET Trainer

Hyderabad / Secunderabad

5-10 Yrs

₹ 5-10 LPA

Trainer - Java (Offline)

Hyderabad / Secunderabad

5-10 Yrs

₹ 5-10 LPA

Explore more jobs
Java Developer
24 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Digital Marketing Executive
14 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Software Developer
12 salaries
unlock blur

₹1.4 L/yr - ₹3.5 L/yr

Trainee
12 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

fresher
11 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Explore more salaries
Compare Naresh i Technologies with

Besant Technologies

3.8
Compare

IIHT

3.8
Compare

Jetking Infotrain

3.7
Compare

NIIT

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview