Upload Button Icon Add office photos

Filter interviews by

Kreatio Software Software Engineer Trainee Interview Questions and Answers

Updated 10 Jun 2024

Kreatio Software Software Engineer Trainee Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude along with 15 to 20 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Oops related concenpts.
Round 3 - Technical 

(2 Questions)

  • Q1. Linux commands.
  • Q2. Oops related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't even give interview here it's waste of time. I was hired here only to get laid off after a month. Waste of time and energy

Interview questions from similar companies

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

Recursive program of binary tree and basic HTML bootstrap

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic java questions
  • Q2. Sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude followed with english and reasoning

Round 2 - Technical 

(3 Questions)

  • Q1. Core java technical questions , spring , spring boot
  • Q2. What is JIT in java
  • Ans. 

    JIT stands for Just-In-Time compilation in Java. It dynamically compiles bytecode into machine code at runtime for improved performance.

    • JIT is a part of the Java Virtual Machine (JVM) that optimizes the execution of Java programs.

    • It analyzes the frequently executed parts of the bytecode and compiles them into native machine code.

    • This compilation happens at runtime, just before the code is executed, hence the name Just-...

  • Answered by AI
  • Q3. Explain lifecyxle of thread in java
  • Ans. 

    The lifecycle of a thread in Java includes several stages from creation to termination.

    • A thread is created using the Thread class or implementing the Runnable interface.

    • The thread goes through the new, runnable, and blocked states before running.

    • Once running, the thread can be paused, resumed, or stopped.

    • Finally, the thread reaches the terminated state and cannot be restarted.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Questions was based on SQL
  • Q2. SQL queries and joins and

Interview Preparation Tips

Interview preparation tips for other job seekers - was good and easy process, HR was supportive but i did not get selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 5 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 - Aptitude Test 

This is the aptitude round in this round quant questions were asked

Round 3 - Coding Test 

In this round 2 java coding questions were there

Round 4 - Technical 

(2 Questions)

  • Q1. What is the framework
  • Ans. 

    A framework is a set of rules, guidelines, and standards that provide a structure for developing software applications.

    • A framework provides a common structure for developers to work within

    • It includes pre-written code and libraries that can be used to speed up development

    • Frameworks can be specific to a programming language or platform

    • Examples include AngularJS, React, and Ruby on Rails

  • Answered by AI
  • Q2. What is the java explain
  • Ans. 

    Java is a widely used programming language known for its platform independence and object-oriented approach.

    • Java is an object-oriented language that follows the 'write once, run anywhere' principle.

    • It is used for developing a wide range of applications, from desktop to web and mobile applications.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It provides built-in libraries and f...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. What is your salary, tell your expectations
  • Q2. What is your location

Interview Preparation Tips

Topics to prepare for Tradebulls System Engineer interview:
  • Java
  • API
  • C
Interview preparation tips for other job seekers - this is very good company's interview ilike the process basically its overall interview and your are judged basis on your skills

Skills evaluated in this interview

Round 1 - Coding Test 

Basic to medium questions on array string SQL

Round 2 - Technical 

(1 Question)

  • Q1. Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they hire for freshers because company doesn't have budget to hire good experienced people. So just go through basics because senior people who are working there are also not that knowledgeable.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is your minimum salary expectation?
  • Q2. Are you planning to stay long-term in this position?
  • Ans. 

    I am committed to long-term growth and contribution in this position, aligning my goals with the company's vision.

    • I believe in building strong relationships with my team and the organization, which takes time and dedication.

    • For example, I aim to take on increasing responsibilities and contribute to long-term projects.

    • I am eager to develop my skills and grow within the company, ensuring I can add value over time.

    • I see t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cautious about Bonus, because they will delay bonus. Will make you wait longer for appraisal
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. How internally work HashMap ?
  • Ans. 

    HashMap uses key-value pairs, hashing, and buckets for efficient data retrieval and storage.

    • HashMap stores data in key-value pairs, where each key is unique.

    • It uses a hash function to compute an index (hash code) for each key.

    • The computed index points to a bucket in an array where the value is stored.

    • If multiple keys hash to the same index (collision), they are stored in a linked list or tree structure.

    • Example: For a k...

  • Answered by AI
  • Q2. Write the logic of prime number
  • Ans. 

    A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.

    • A prime number has exactly two distinct positive divisors: 1 and itself.

    • Examples of prime numbers include 2, 3, 5, 7, 11, and 13.

    • The number 1 is not prime because it has only one positive divisor.

    • The number 4 is not prime because it can be divided by 1, 2, and 4.

    • To check if a number n is prime, test divisi

  • Answered by AI
  • Q3. Difference between hash map and hash set?
  • Ans. 

    HashMap stores key-value pairs; HashSet stores unique keys without values.

    • HashMap allows duplicate values but not duplicate keys. Example: {1: 'A', 2: 'B', 1: 'C'} results in {1: 'C', 2: 'B'}.

    • HashSet only stores unique elements. Example: {1, 2, 2} results in {1, 2}.

    • HashMap provides O(1) average time complexity for get and put operations.

    • HashSet provides O(1) average time complexity for add, remove, and contains operati...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2023. There were 3 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 - One-on-one 

(2 Questions)

  • Q1. Work experience
  • Q2. How many experiance
  • Ans. 

    I have 5 years of experience as an Assistant Manager.

    • I have worked as an Assistant Manager for 5 years.

    • During my time as an Assistant Manager, I successfully led a team of 10 employees.

    • I have experience in budgeting, scheduling, and performance management.

    • I have a proven track record of achieving targets and improving operational efficiency.

    • I am familiar with various management software and tools.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Current ctc discussion

Kreatio Software Interview FAQs

How many rounds are there in Kreatio Software Software Engineer Trainee interview?
Kreatio Software interview process usually has 3 rounds. The most common rounds in the Kreatio Software interview process are Technical and Aptitude Test.
What are the top questions asked in Kreatio Software Software Engineer Trainee interview?

Some of the top questions asked at the Kreatio Software Software Engineer Trainee interview -

  1. Oops related concenp...read more
  2. Oops related questio...read more
  3. Linux comman...read more

Tell us how to improve this page.

Kreatio Software Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Oxane Partners Interview Questions
3.5
 • 25 Interviews
Wishup Interview Questions
4.2
 • 23 Interviews
Axis Sales Interview Questions
4.3
 • 19 Interviews
Tradebulls Interview Questions
3.2
 • 16 Interviews
50 Hertz Interview Questions
2.0
 • 9 Interviews
YourDOST Interview Questions
3.4
 • 9 Interviews
Muthoot Money Interview Questions
3.7
 • 8 Interviews
NADSOFT Interview Questions
3.2
 • 7 Interviews
View all
Kreatio Software Software Engineer Trainee Salary
based on 7 salaries
₹3.2 L/yr - ₹4 L/yr
20% less than the average Software Engineer Trainee Salary in India
View more details

Kreatio Software Software Engineer Trainee 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
Software Engineer
53 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Software Developer
21 salaries
unlock blur

₹2.4 L/yr - ₹7.1 L/yr

Devops Engineer
12 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Software Engineer Trainee
7 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Linux System Administrator
6 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Kreatio Software with

Tradebulls

3.2
Compare

Axis Sales

4.3
Compare

Muthoot Money

3.7
Compare

SysArc Infomatix

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