Upload Button Icon Add office photos
Engaged Employer

i

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

Iksula Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Iksula Senior Software Engineer Interview Questions and Answers

Updated 16 Jul 2021

Iksula Senior Software Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Hybris core, commerce question and next round was on java spring hybris and scenario questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear on technical stuff

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for theoretical Java questions with less coding.

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

Round 1 - Coding Test 

I was asked t solve 2 coding questions got 20 minutes for each, both were on DS and Algo moderate problems. 1 on trees and second on linked list.

Round 2 - Technical 

(1 Question)

  • Q1. System design round where i was asked to design a parking lot followed by few DB questions
Round 3 - Technical 

(1 Question)

  • Q1. Then there was a UI round where i had to answer few Typescript questions and then was given a case study which i had t solve and propose a UI/UX solution.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall i felt moderate difficulty so if you are prepared for DS/Algo you will have an offer from Apptio.

I applied via Naukri.com and was interviewed in Oct 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. WAP to count Duplicate String using Java 8
  • Ans. 

    WAP to count Duplicate String using Java 8

    • Use Java 8 Stream API to group and count duplicate strings

    • Create a Map to store the count of each string

    • Filter the map to get only the strings with count > 1

    • Return the size of the filtered map as the number of duplicate strings

  • Answered by AI
  • Q2. Basic Questions on Collections framework , Spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Coding practise for String ,Collections,Arrays

Skills evaluated in this interview

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

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

(6 Questions)

  • Q1. Create Custom annotation
  • Ans. 

    Custom annotations can be created using @interface in Java.

    • Create a new interface with @interface keyword

    • Add required elements and default values

    • Use the annotation by adding @ followed by the annotation name

    • Example: @CustomAnnotation(value = "example")

    • Annotations can be used for compile-time checks or runtime behavior

  • Answered by AI
  • Q2. Memory management in Java 8
  • Ans. 

    Java 8 uses automatic memory management through garbage collection.

    • Java 8 uses a garbage collector to automatically manage memory.

    • The garbage collector frees up memory by removing objects that are no longer in use.

    • Java 8 introduced the G1 garbage collector which is designed to reduce pause times.

    • Developers can also use tools like jmap and jstat to monitor memory usage.

  • Answered by AI
  • Q3. What algo Java 8 Garbage collector follow
  • Ans. 

    Java 8 Garbage collector follows the algorithm called G1 (Garbage-First).

    • G1 divides the heap into regions and collects garbage in small portions called 'garbage-first' regions.

    • It uses multiple parallel threads for garbage collection.

    • G1 aims to minimize pause times by dynamically adjusting the amount of garbage collected in each region.

    • It uses a combination of young and old generation collection to achieve better perfor...

  • Answered by AI
  • Q4. @retension annotation
  • Q5. Java Design Patterns
  • Q6. What is SOLID Principal? and Explain L into it?
  • Ans. 

    SOLID is a set of principles for object-oriented programming. L stands for Liskov Substitution Principle.

    • SOLID principles help in creating maintainable and scalable software.

    • Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the correctness of the program.

    • This principle ensures that the behavior of the program remains consistent even ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prep rate with Basic Java Concepts and Spring boot and SQL and Hibernate

Skills evaluated in this interview

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

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

Average coding test on arrays and string

Round 3 - Technical 

(1 Question)

  • Q1. Java 8 features, Microservices, Springboot features, kafka, docker and kubernetes, security
Round 4 - Behavioral 

(1 Question)

  • Q1. Previous experience, technical insight, discussion on work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good preparation, keep positive atitude and be confident.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jan 2023. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. Approach to resolve memory leak
  • Ans. 

    Memory leaks can be resolved by identifying the source of the leak and freeing up the allocated memory.

    • Use memory profiling tools to identify the source of the leak

    • Analyze the code to find any unnecessary memory allocations

    • Ensure all allocated memory is freed up after use

    • Use smart pointers or garbage collection to automate memory management

    • Test thoroughly to ensure the issue is resolved

  • Answered by AI
  • Q2. Approach to resolve memory
  • Ans. 

    Memory issues can be resolved by identifying and fixing memory leaks, optimizing memory usage, and using appropriate data structures.

    • Identify and fix memory leaks using tools like Valgrind or AddressSanitizer

    • Optimize memory usage by reducing unnecessary allocations and deallocations

    • Use appropriate data structures like arrays, linked lists, and hash tables

    • Avoid using global variables and excessive recursion

    • Consider usin...

  • Answered by AI
  • Q3. What is static storage class
  • Ans. 

    Static storage class is used to declare variables that have a lifetime throughout the program execution.

    • Variables declared with static storage class are initialized only once and retain their value between function calls.

    • They have a default value of 0 if not initialized explicitly.

    • Static functions and variables are only visible within the file they are declared in.

    • Static variables can be used to count the number of tim...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have hands-on experience
For the topics you prepared for

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Design Patters, C#, SOLID Principles
Round 2 - Technical 

(1 Question)

  • Q1. Design Patterns,C#,SOLID Principles
Round 3 - Technical 

(1 Question)

  • Q1. Application Architecture, Coding Standards

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 and 2 were all related to my skillset and it was really good.
Round 3 was taken by some guy who was 10 minutes late to the interview and was pretentious. He was asking questions which arent in my skillset and was a total waste of time. He was reading the resume as we were talking during the interview.

Make sure to react if someone is being arrogant to you as we are also spending effort when attending the interview.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

An online coding test at coderByte. Medium level question.

Round 2 - Technical 

(2 Questions)

  • Q1. Find sum of distinct elements from two given array.
  • Ans. 

    Sum of distinct elements from two arrays

    • Create a set to store distinct elements from both arrays

    • Iterate through each array and add elements to the set

    • Calculate the sum of elements in the set

  • Answered by AI
  • Q2. Discussion around Java,Spring-boot.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Core java questions related to collections, exceptions. SAGA design pattern, Adapter design pattern, proxy design pattern, Transational in MS

Interview Preparation Tips

Interview preparation tips for other job seekers - Java core basics should be strong. Interviewer did had much time so it was like quick fire round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Luxoft Interview Questions
3.7
 • 124 Interviews
Thryve Digital Interview Questions
3.8
 • 68 Interviews
Dyninno India Interview Questions
3.9
 • 28 Interviews
Gammastack Interview Questions
3.7
 • 24 Interviews
Apptio Interview Questions
3.9
 • 19 Interviews
Tech2Globe Interview Questions
4.1
 • 15 Interviews
View all
Iksula Senior Software Engineer Salary
based on 15 salaries
₹10 L/yr - ₹35.5 L/yr
29% more than the average Senior Software Engineer Salary in India
View more details

Iksula Senior Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
E-Commerce Executive
156 salaries
unlock blur

₹0.9 L/yr - ₹3.2 L/yr

Senior E Commerce Executive
62 salaries
unlock blur

₹1.5 L/yr - ₹3.8 L/yr

Senior Executive
59 salaries
unlock blur

₹1.3 L/yr - ₹3.8 L/yr

Team Lead
53 salaries
unlock blur

₹1.8 L/yr - ₹7.9 L/yr

Samsung experience Consultant
41 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Iksula with

Luxoft

3.7
Compare

Thryve Digital

3.8
Compare

Mantra Technologies

3.7
Compare

Hitech Digital Solutions

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