Upload Button Icon Add office photos

Filter interviews by

Krenai Services Software Developer Interview Questions and Answers

Updated 7 Oct 2023

6 Interview questions

A Software Developer was asked
Q. What are procedures in SQL?
Ans. 

Procedures in SQL are reusable blocks of code that perform a specific task.

  • Procedures are stored in the database and can be called multiple times.

  • They can accept input parameters and return output parameters.

  • Procedures can contain SQL statements, control-of-flow statements, and error handling.

  • Example: CREATE PROCEDURE GetEmployeeDetails AS SELECT * FROM Employees;

  • Example: EXEC GetEmployeeDetails;

A Software Developer was asked
Q. What is the difference between == and .equals?
Ans. 

== is used for comparing reference equality, while .equals is used for comparing object equality in Java.

  • == compares memory addresses of objects

  • .equals compares the actual content of objects

  • == is used for comparing primitive data types

  • .equals is used for comparing objects in Java

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. Explain the quick sort algorithm.
Ans. 

Quick sort is a sorting algorithm that uses divide and conquer approach to sort an array efficiently.

  • Divide the array into two sub-arrays based on a pivot element

  • Recursively sort the sub-arrays

  • Combine the sorted sub-arrays to get the final sorted array

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

A Software Developer was asked
Q. Write a program to print a pyramid star pattern.
Ans. 

Print a pyramid star pattern using nested loops.

  • Use nested loops to print spaces and stars in each row

  • Increment the number of stars in each row to form a pyramid shape

A Software Developer was asked
Q. What are SQL joins?
Ans. 

SQL joins are used to combine rows from two or more tables based on a related column between them.

  • Joins are used to retrieve data from multiple tables in a single query.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id;

A Software Developer was asked
Q. Explain selection sort.
Ans. 

Selection sort is a simple sorting algorithm that repeatedly selects the minimum element from an unsorted portion of the array and swaps it with the first unsorted element.

  • Iterate through the array to find the smallest element.

  • Swap the smallest element with the first unsorted element.

  • Repeat the process for the remaining unsorted portion of the array.

  • Time complexity is O(n^2) and space complexity is O(1).

Krenai Services Software Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Explain selection sort.
  • Ans. 

    Selection sort is a simple sorting algorithm that repeatedly selects the minimum element from an unsorted portion of the array and swaps it with the first unsorted element.

    • Iterate through the array to find the smallest element.

    • Swap the smallest element with the first unsorted element.

    • Repeat the process for the remaining unsorted portion of the array.

    • Time complexity is O(n^2) and space complexity is O(1).

  • Answered by AI
  • Q2. What are sql joins.
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables in a single query.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id;

  • Answered by AI
  • Q3. What are procedures in sql.
  • Ans. 

    Procedures in SQL are reusable blocks of code that perform a specific task.

    • Procedures are stored in the database and can be called multiple times.

    • They can accept input parameters and return output parameters.

    • Procedures can contain SQL statements, control-of-flow statements, and error handling.

    • Example: CREATE PROCEDURE GetEmployeeDetails AS SELECT * FROM Employees;

    • Example: EXEC GetEmployeeDetails;

  • Answered by AI
  • Q4. Basics of core java.
Round 2 - Technical 

(4 Questions)

  • Q1. Wap to print pyramid star pattern.
  • Ans. 

    Print a pyramid star pattern using nested loops.

    • Use nested loops to print spaces and stars in each row

    • Increment the number of stars in each row to form a pyramid shape

  • Answered by AI
  • Q2. Difference between == and .equals.
  • Ans. 

    == is used for comparing reference equality, while .equals is used for comparing object equality in Java.

    • == compares memory addresses of objects

    • .equals compares the actual content of objects

    • == is used for comparing primitive data types

    • .equals is used for comparing objects in Java

  • Answered by AI
  • Q3. Explain quick sort.
  • Ans. 

    Quick sort is a sorting algorithm that uses divide and conquer approach to sort an array efficiently.

    • Divide the array into two sub-arrays based on a pivot element

    • Recursively sort the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

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

  • Answered by AI
  • Q4. Questions from collections like what is linked list etc

Interview Preparation Tips

Topics to prepare for Krenai Services Software Developer interview:
  • Core Java
  • MySQL
  • DSA
  • Spring Boot
Interview preparation tips for other job seekers - Keep your fundamentals of core java and sql strong.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Krenai Services ?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview Questionnaire 

3 Questions

  • Q1. Mathematical ,verbal, logical, puzzles, pseudo code
  • Q2. Verbal
  • Q3. Logical

Interview Preparation Tips

Interview preparation tips for other job seekers - Help me for infosys apptitude test interview

I applied via Campus Placement and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Explore your self , add studies,hobbies,short term and long term goals.keep it short and simple.

Interview Questionnaire 

2 Questions

  • Q1. What is software configuration management?
  • Ans. 

    Software configuration management is the process of tracking and controlling changes made to software throughout its lifecycle.

    • It involves version control, build management, and release management.

    • It ensures that changes are made in a controlled and systematic manner.

    • Examples include Git, SVN, and Jenkins.

    • It helps to maintain the integrity and quality of the software.

    • It is essential for collaboration among team members...

  • Answered by AI
  • Q2. What are software requirements?
  • Ans. 

    Software requirements are the functional and non-functional specifications that a software system must meet.

    • Software requirements define what the software should do and how it should behave

    • They include functional requirements (what the software should do) and non-functional requirements (how well it should do it)

    • Requirements are typically documented in a requirements specification document

    • They are used to guide the dev...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 👉 First of all you have a good communication skills,Technical skills
👉 Be Confidential and be prepared
👉 Review common interview questions
👉 And finally End the interview with a good impression

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 2 hours
Round difficulty - Medium

In the 1st round 
Aptitude
Reasoning
English
Automata fix( code debug) 
Timing in morning
Environment is good
Interviewer was very cool and interactive

  • Q1. 

    Encode the Message Problem Statement

    Given a text message, your task is to return the Run-length Encoding of the given message.

    Run-length encoding is a fast and simple method of encoding strings, repres...

  • Ans. 

    Implement a function to encode a text message using run-length encoding.

    • Iterate through the message and count consecutive characters

    • Append the character and its count to the encoded message

    • Handle edge cases like single characters or empty message

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This is interview round 
Ques from basic electronics
C language

  • Q1. 

    Print Name and Age Problem Statement

    Create a class named Person with a string variable 'name' and an integer variable 'age', such that these variables are not accessible outside the class. Implement a me...

  • Ans. 

    Create a class Person with private variables name and age, and methods to set and get their values.

    • Create a class Person with private variables 'name' and 'age'.

    • Implement a method setValue to set the variables' values.

    • Implement a method getValue to print the variables' values.

    • Ensure the name is a non-empty string and the age is a non-negative integer.

    • Encapsulate the data and provide a clear interface for setting and ge...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaCognizant interview preparation:Topics to prepare for the interview - Electronics basics, C language , Data structure, OOPS, ProjectsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do aptitude from indiabix. Go through your basics. At least one language u know. Learn about your branch basics. Know concept of data structure and oops. 
Tip 2 : prepare your final project well. 

Application resume tips for other job seekers

Tip 1 : the skills you know very well mention in resume
Tip 2 : mention project in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Based on programming

Interview Questionnaire 

2 Questions

  • Q1. Hibernate,Java 7,Multithreading
  • Q2. Prepare well on the above topics
Round 1 - Aptitude Test 

HTML

Round 2 - Aptitude Test 

Aptitude and resume shortlist and HTML

Round 3 - 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

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips

Krenai Services Interview FAQs

How many rounds are there in Krenai Services Software Developer interview?
Krenai Services interview process usually has 3 rounds. The most common rounds in the Krenai Services interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Krenai Services Software Developer interview?

Some of the top questions asked at the Krenai Services Software Developer interview -

  1. wap to print pyramid star patte...read more
  2. What are procedures in s...read more
  3. Difference between == and .equa...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Krenai Services Software Developer Salary
based on 16 salaries
₹3 L/yr - ₹7 L/yr
56% less than the average Software Developer Salary in India
View more details

Krenai Services Software Developer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

5.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 2 Reviews and Ratings
Software Developer
16 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

React Native Developer
7 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Junior Software Developer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.2 L/yr

Assistant Manager Operations
4 salaries
unlock blur

₹3 L/yr - ₹3.4 L/yr

Mobile Application Developer
4 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Explore more salaries
Compare Krenai Services with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview