Upload Button Icon Add office photos

Filter interviews by

Krenai Services Interview Questions and Answers

Updated 19 Feb 2024
Popular Designations

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;

View all Software Developer interview questions
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

View all Software Developer interview questions
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]

View all Software Developer interview questions
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

View all Software Developer interview questions
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;

View all Software Developer interview questions
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).

View all Software Developer interview questions

Krenai Services Interview Experiences

2 interviews 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

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Several sql question

Round 2 - Coding Test 

Array question reverse

Round 3 - HR 

(1 Question)

  • Q1. Several questions about project

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 applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

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

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance
Are these interview questions helpful?

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

Interview Questionnaire 

2 Questions

  • Q1. Accounting question asked
  • Q2. Answer has been given accordingly

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an average interview. If you have good experience of MNC culture and you have short notice period of your existing company then they can hire you.

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked the basic Core java questions along with the OOPS concepts as well as Springboot and REST API with some database basic questions. The next round will be a managerial round where you will be ask...

Interview Preparation Tips

Interview preparation tips for other job seekers - Some tips that worked for me :
1. Don’t mention the things in your resume that you are not confident about. Doesn’t matter if your resume is not full of skills, it should be crisp and on-point
2. If you don’t know answer to any of the questions then politely say you are not sure about this question . Its better than giving gibberish answers.
3. Be confident and have faith in yourself.
ALL THE BEST

Krenai Services Interview FAQs

How many rounds are there in Krenai Services 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.
How to prepare for Krenai Services interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Krenai Services . The most common topics and skills that interviewers at Krenai Services expect are Android, Architecting, IOS, Infrastructure and Javascript.
What are the top questions asked in Krenai Services interview?

Some of the top questions asked at the Krenai Services 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 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
Deloitte Interview Questions
3.7
 • 3k Interviews
View all

Krenai Services Reviews and Ratings

based on 11 reviews

4.2/5

Rating in categories

4.6

Skill development

3.6

Work-life balance

3.6

Salary

4.2

Job security

3.6

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 11 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.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview