Upload Button Icon Add office photos
Engaged Employer

i

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

KJ System Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 57 Reviews

Filter interviews by

KJ System Software Developer Interview Questions, Process, and Tips

Updated 23 Dec 2024

Top KJ System Software Developer Interview Questions and Answers

KJ System Software Developer Interview Experiences

2 interviews found

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

Java MCQs and coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Oops concepts in java
  • Ans. 

    OOP concepts in Java include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation details and only shows the necessary features t

  • Answered by AI
  • Q2. Types of inheritance
  • Ans. 

    Types of inheritance in object-oriented programming

    • Single inheritance: a subclass inherits from only one superclass

    • Multiple inheritance: a subclass inherits from multiple superclasses

    • Multilevel inheritance: a subclass inherits from a superclass, which in turn inherits from another superclass

    • Hierarchical inheritance: multiple subclasses inherit from a single superclass

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Will you work under stress?
  • Ans. 

    Yes, I am able to work effectively under stress and have experience doing so in previous roles.

    • I have experience working on tight deadlines and handling high-pressure situations.

    • I am able to prioritize tasks and stay focused under stress.

    • I can remain calm and composed while problem-solving under pressure.

  • Answered by AI
  • Q2. Will you be able to work under stress
  • Ans. 

    Yes, I have experience working under stress and can handle pressure effectively.

    • I have successfully completed projects with tight deadlines in my previous roles

    • I am able to prioritize tasks and remain focused under pressure

    • I have experience troubleshooting and resolving issues quickly in high-pressure situations

  • Answered by AI

I applied via Walk-in and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1.  what is arrays
  • Ans. 

    Arrays are a collection of elements of the same data type, stored in contiguous memory locations.

    • Arrays can store multiple values of the same type.

    • Elements in an array are accessed using their index.

    • Arrays have a fixed size, which is determined at the time of declaration.

    • Arrays can be used to store and manipulate data efficiently.

    • Example: string[] names = {"John", "Jane", "Mike"};

  • Answered by AI
  • Q2. What is constructor
  • Ans. 

    A constructor is a special method that is used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can have parameters to initialize object properties.

    • They can be overloaded to have multiple versions with different parameters.

    • Example: class Car { Car() { // constructor code } }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be improve problem solving skills

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to intermediate.net, EF, SQL, C#, OOP
  • Q2. Basics of .Net Core
Round 2 - Technical 

(1 Question)

  • Q1. Deep into.net and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were good and friendly, but HR's does not have any management.

I completed 2 tech rounds, shortlisted in both of them and then HR is saying that my experience is low for the position so they will not move forward. Seriously W.T.F..

And after that HR is not picking up calls
Even while scheduling interviews there were 3-4 rescheduled.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was an online test for interview

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about dijistkras algorithm
  • Ans. 

    Dijkstra's algorithm is a graph search algorithm that finds the shortest path between nodes in a graph.

    • Dijkstra's algorithm uses a priority queue to select the node with the smallest distance from the start node.

    • It maintains a list of tentative distances to each node and updates them as it explores the graph.

    • The algorithm is commonly used in routing and network protocols to find the shortest path between nodes.

    • Example:...

  • Answered by AI
  • Q2. Tell me about your projects

Skills evaluated in this interview

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

I applied via Referral

Round 1 - Coding Test 

Java internals, coding questions 2sum

Round 2 - Technical 

(2 Questions)

  • Q1. Hld of your previous project
  • Ans. 

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

    • Used React.js for front-end development

    • Implemented RESTful APIs for backend using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q2. Question related to self build projects
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location constrain if any
  • Ans. 

    Open to relocation for the right opportunity

    • Willing to relocate for the right job opportunity

    • Flexible with location for the right role

    • Open to considering different locations for the right position

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to moderate apt test here

Round 2 - Coding Test 

Easy to moderate coding questions on array

Round 3 - Technical 

(2 Questions)

  • Q1. Indexing, sqls, queries, triggers
  • Q2. Php versions, features, explain code
Round 4 - HR 

(1 Question)

  • Q1. General discussion based on the experience , salary
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

25 questions , 1 hour

Round 2 - Coding Test 

1 coding , 2 logical question

Round 3 - One-on-one 

(2 Questions)

  • Q1. For loop , 2 logical
  • Q2. About final year projrct
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium to hard questions based on arrays, dp

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Divides array into smaller sub-arrays based on a pivot element

    • Recursively sorts sub-arrays

    • Combines sorted sub-arrays to get final sorted array

    • Time complexity: O(n log n) on average, O(n^2) worst case

    • Example: [3, 6, 8, 10, 1, 2, 1] -> [1, 1, 2, 3, 6, 8, 10]

  • Answered by AI
  • Q2. Modified rotate a matrix
  • Ans. 

    Rotate a matrix by 90 degrees in place

    • Transpose the matrix

    • Reverse each row of the transposed matrix

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study well and at the end, they would not hire anyone

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java, multi threading, singleton

Round 2 - HR 

(2 Questions)

  • Q1. Why should we hire you
  • Q2. Exected ctc for job role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was the ask mostly about DSA

KJ System Interview FAQs

How many rounds are there in KJ System Software Developer interview?
KJ System interview process usually has 3 rounds. The most common rounds in the KJ System interview process are Aptitude Test, One-on-one Round and HR.
What are the top questions asked in KJ System Software Developer interview?

Some of the top questions asked at the KJ System Software Developer interview -

  1. what is arr...read more
  2. what is construct...read more
  3. oops concepts in j...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 KJ System interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
KJ System Software Developer Salary
based on 37 salaries
₹2.4 L/yr - ₹12.3 L/yr
10% less than the average Software Developer Salary in India
View more details

KJ System Software Developer Reviews and Ratings

based on 10 reviews

4.1/5

Rating in categories

3.9

Skill development

3.7

Work-Life balance

3.9

Salary & Benefits

4.3

Job Security

3.6

Company culture

4.1

Promotions/Appraisal

3.6

Work Satisfaction

Explore 10 Reviews and Ratings
Business Analyst
91 salaries
unlock blur

₹2.2 L/yr - ₹5.9 L/yr

Software Developer
37 salaries
unlock blur

₹2.3 L/yr - ₹12.3 L/yr

Quality Analyst
24 salaries
unlock blur

₹2.2 L/yr - ₹7.1 L/yr

UI Developer
19 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Software Programmer
12 salaries
unlock blur

₹2 L/yr - ₹11.5 L/yr

Explore more salaries
Compare KJ System with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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