Upload Button Icon Add office photos
Engaged Employer

i

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

ISKPRO Verified Tick

Compare button icon Compare button icon Compare
4.7

based on 90 Reviews

Filter interviews by

ISKPRO Java Developer Interview Questions and Answers for Experienced

Updated 12 Dec 2024

ISKPRO Java Developer Interview Experiences for Experienced

1 interview found

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and good to go

Round 2 - Coding Test 

It was easy and good to go

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview questions from similar companies

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

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Data structures Core java Spring boot Hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2022. 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 

All the questions are very easy and basic

Round 3 - Technical 

(2 Questions)

  • Q1. What opration system you are using. What are the latest version of windows. What are zip and unzip file. Primary key is null . Primary key is zero. What is JVM. What is LAN and WAN.
  • Ans. 

    The questions cover topics like operating systems, file compression, primary keys, JVM, and network types.

    • The latest versions of Windows are Windows 10 and Windows Server 2019.

    • ZIP is a file compression format used to reduce file size and bundle multiple files together.

    • Unzip is the process of extracting files from a ZIP archive.

    • A primary key is a unique identifier for a database record. It cannot be null.

    • A primary key c...

  • Answered by AI
  • Q2. Features of java and why pointer is not supported in java
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented features. It does not support pointers to ensure memory safety and prevent direct memory manipulation.

    • Java uses references instead of pointers to access objects, which provides a level of abstraction and simplifies memory management.

    • Pointers in languages like C and C++ can lead to memory leaks, segmentation faults, and other ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions is asked in the interview.
Don't fear with interview.They are try to see you confidence only .

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question asked from javascript and Angular.
Round 2 - Behavioral 

(1 Question)

  • Q1. Asking how will you handle pressure and whats your strength and weekness.
Round 3 - HR 

(1 Question)

  • Q1. Discussion on Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - I have given my interview for the role of Software Developer, the recruiter schedule an interview:-
1. Techincal Round - clear
2. Managerial Round- clear
The recruiter(Talent Acquisition Team) told me that they will give hike on current salary but in HR round they lied and said company will hire you on current salary after disscussing with HR on salary negotiation i agreed with the same package because at that time I was unemployed.
He said will give you an update regarding offer letter, From that date he never came back and does not release offer letter i followup with recruiter, I called several times but she doesn't pick my call even not replying on msg/whatsapp.

My advice for jobseekers to stay away from this company it will waste your time and energy.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

The interviewer asked about javascript basics and DSA questions and some typescript questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Write a program to check if string is a anagram
  • Ans. 

    Program to check if a string is an anagram

    • Create a function that takes in two strings as input

    • Remove all spaces and convert both strings to lowercase

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI
  • Q2. What is react lifecycle method
  • Ans. 

    React lifecycle methods are special methods that are automatically called by React at specific points in a component's life cycle.

    • React components have several lifecycle methods such as componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • These methods allow developers to perform actions at specific points in a component's life cycle, such as fetching data, updating the UI, or cleaning up resources.

    • Understa...

  • Answered by AI
Round 3 - Coding Test 

Create a web app to perform cred operation

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Guru Gobind Singh Indraprastha University (GGSIU) and was interviewed before Oct 2022. 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 - Aptitude Test 

Basic Aptitude questions were there which I think anyone can clear.

Round 3 - Coding Test 

2 easy level programming questions were asked.

Round 4 - HR 

(1 Question)

  • Q1. Introduction, background, interest, vision.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. DBMS Questions

    What is Normalization?
    What are the different forms for normalization?
    SQL queries

  • Q2. Networking Questions

    TCP/ IP protocols
    OSI model
    Topology
    Routers

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. Pair Sum

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair eq...

  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered by CodingNinjas
Round 3 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

  • Q1. DBMS Questions

    Normalization
    Joins

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Technical Questions

    Asked me to give an example with this pointer. Asked different different C/C++ concepts

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 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 - Aptitude Test 

All the questions are very easy and basic

Round 3 - Technical 

(2 Questions)

  • Q1. What opration system you are using. What are the latest version of windows. What are zip and unzip file. Primary key is null . Primary key is zero. What is JVM. What is LAN and WAN.
  • Ans. 

    The questions cover topics like operating systems, file compression, primary keys, JVM, and network types.

    • The latest versions of Windows are Windows 10 and Windows Server 2019.

    • ZIP is a file compression format used to reduce file size and bundle multiple files together.

    • Unzip is the process of extracting files from a ZIP archive.

    • A primary key is a unique identifier for a database record. It cannot be null.

    • A primary key c...

  • Answered by AI
  • Q2. Features of java and why pointer is not supported in java
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented features. It does not support pointers to ensure memory safety and prevent direct memory manipulation.

    • Java uses references instead of pointers to access objects, which provides a level of abstraction and simplifies memory management.

    • Pointers in languages like C and C++ can lead to memory leaks, segmentation faults, and other ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions is asked in the interview.
Don't fear with interview.They are try to see you confidence only .

Skills evaluated in this interview

ISKPRO Interview FAQs

How many rounds are there in ISKPRO Java Developer interview for experienced candidates?
ISKPRO interview process for experienced candidates usually has 3 rounds. The most common rounds in the ISKPRO interview process for experienced candidates are Aptitude Test, Coding Test and HR.

Tell us how to improve this page.

ISKPRO Java Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
UI Developer
16 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Developer
12 salaries
unlock blur

₹2 L/yr - ₹7.8 L/yr

Front end Developer
11 salaries
unlock blur

₹2.7 L/yr - ₹6.5 L/yr

Softwaretest Engineer
10 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Wordpress Developer
7 salaries
unlock blur

₹3 L/yr - ₹3.9 L/yr

Explore more salaries
Compare ISKPRO with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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