Upload Button Icon Add office photos
Premium Employer

i

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

KONE Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

KONE Software Developer Intern Interview Questions and Answers

Updated 20 Sep 2022

KONE Software Developer Intern Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is pointer why do we use pointers
  • Ans. 

    Pointers are variables that store memory addresses. They are used to manipulate data and improve performance.

    • Pointers allow us to access and modify data directly in memory

    • They can be used to pass data between functions efficiently

    • Pointers are essential for dynamic memory allocation

    • Examples: int* ptr = # char* str = "hello";

    • Arrays are implemented using pointers

  • Answered by AI
  • Q2. Write a program to find greatest of 3 numbers
  • Ans. 

    Program to find greatest of 3 numbers

    • Take input of 3 numbers from user

    • Compare the first two numbers and store the greater one

    • Compare the stored number with the third number and store the greatest one

    • Print the greatest number

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Some technical basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of C programming and some basic programs like finding factorial or a number,

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Coding Test 

30 question of c code snippet 5 question of aptitude and 2 coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Storage class in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are 4 storage classes in C: auto, register, static, and extern.

    • Auto variables are stored in memory and have local scope.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed by other files.

  • Answered by AI
  • Q2. Mutex and semaphore

Interview Preparation Tips

Interview preparation tips for other job seekers - not selected

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explained about micro front end in react js
Round 2 - Behavioral 

(2 Questions)

  • Q1. Reason for job change
  • Q2. Can i Work from office for 15 days each month?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Aptitude test, quant, grammer, logical

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

I applied via campus placement at Thiagarajar College of Engineering, Madurai and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

On campus drive - 1 st round was aptitude and coding with technical and quantitative aptitude questions, and 2 easy level programming questions .

Round 2 - Group Discussion 

Group discussion on latest general topics ( rarely few groups got technical topics).

Round 3 - Technical 

(4 Questions)

  • Q1. Questions based on area of Interest and the projects done.
  • Q2. 1. Teach me Object oriented programming. (Consider I have no programming knowledge and don't understand classes and objects as such. - Explain using realtime examples.)
  • Q3. What is the difference between aggregation and composition? Abstract class vs interface.
  • Ans. 

    Aggregation is a 'has-a' relationship where one object contains another object, while composition is a stronger form of aggregation where the contained object has no independent existence.

    • Aggregation is a weaker relationship where one object 'has-a' another object, but the contained object can exist independently.

    • Composition is a stronger relationship where one object is composed of another object, and the contained ob...

  • Answered by AI
  • Q4. Why do we need DBMS? What are views, procedures and triggers?
  • Ans. 

    DBMS is needed to efficiently store, retrieve, and manage data. Views, procedures, and triggers are database objects used for data manipulation and automation.

    • DBMS is needed to ensure data integrity, security, and consistency.

    • Views are virtual tables that display data from one or more tables based on a query.

    • Procedures are reusable sets of SQL statements stored in the database for execution.

    • Triggers are special stored ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behaviour oriented questions. Where do you see yourself five years from now? (Questions to check the approch and intent of the candidate).

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is data structures in python
  • Ans. 

    Data structures in Python are ways of organizing and storing data to make it easier to access and manipulate.

    • Data structures in Python include lists, tuples, dictionaries, sets, and arrays.

    • Lists are ordered collections of items, tuples are immutable sequences, dictionaries are key-value pairs, sets are unordered collections, and arrays are used for numerical data.

    • Data structures help optimize operations like searching,...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2022. 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. About my tech experience and some technical questions from my tech stack
  • Q2. What is the toughest project that you have worked so far

Interview Preparation Tips

Topics to prepare for Trane Technologies Software Developer interview:
  • React
  • Javascript
Interview preparation tips for other job seekers - Just say the things which you know don't think knowing too much tech stack can help you to clear interview just learn one programming language correctly if will be enough
Round 1 - Technical 

(1 Question)

  • Q1. They shared the screen an given the logic to write c# program fraction number divided by zero and thrown a issue if denominator is 0.

Interview Preparation Tips

Interview preparation tips for other job seekers - I think the round has been scheduled as assessment before technical. So that's why there is no guiltiness for employees to write code in front of them.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding related to Arrays and String

Round 2 - Technical 

(1 Question)

  • Q1. Explain your project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm, answer confidently
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Observables vs promises Lifecycle hooks Pipes
  • Ans. 

    Observables are used for handling asynchronous operations in a stream-like manner, promises are for handling a single async operation, and lifecycle hooks are methods that allow you to tap into the lifecycle of a component in Angular.

    • Observables are used in Angular for handling asynchronous operations in a stream-like manner, allowing you to work with data over time.

    • Promises are used for handling a single asynchronous ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Lazy loading Dependency injection

Skills evaluated in this interview

KONE Interview FAQs

How many rounds are there in KONE Software Developer Intern interview?
KONE interview process usually has 2 rounds. The most common rounds in the KONE interview process are HR and One-on-one Round.
What are the top questions asked in KONE Software Developer Intern interview?

Some of the top questions asked at the KONE Software Developer Intern interview -

  1. What is pointer why do we use point...read more
  2. Write a program to find greatest of 3 numb...read more
  3. Some technical basic questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

John Deere Interview Questions
4.1
 • 228 Interviews
Caterpillar Inc Interview Questions
4.3
 • 178 Interviews
Hitachi Interview Questions
4.0
 • 82 Interviews
Atlas Copco Interview Questions
4.2
 • 78 Interviews
Schindler Interview Questions
3.9
 • 74 Interviews
TK Elevator Interview Questions
3.9
 • 54 Interviews
Otis Elevator Interview Questions
4.0
 • 48 Interviews
Johnson Lifts Interview Questions
3.9
 • 39 Interviews
Toshiba Interview Questions
4.0
 • 28 Interviews
View all

KONE Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Design Engineer
188 salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Assistant Manager
148 salaries
unlock blur

₹6.2 L/yr - ₹19 L/yr

Senior Engineer
134 salaries
unlock blur

₹5 L/yr - ₹13.3 L/yr

Engineer
115 salaries
unlock blur

₹2.4 L/yr - ₹10.3 L/yr

Process Agent
112 salaries
unlock blur

₹2.3 L/yr - ₹5.2 L/yr

Explore more salaries
Compare KONE with

Schindler

3.9
Compare

Otis Elevator

4.0
Compare

TK Elevator

3.9
Compare

Johnson Lifts

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