Upload Button Icon Add office photos

Filter interviews by

Krenai Services Interview Questions, Process, and Tips

Updated 19 Feb 2024

Top Krenai Services Interview Questions and Answers

View all 6 questions

Krenai Services Interview Experiences

Popular Designations

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

Top Krenai Services Software Developer Interview Questions and Answers

Q1. wap to print pyramid star pattern.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Walk-in and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold

I applied via Naukri.com and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions only ... regarding job and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ... always say the truth ... never try to fake your details

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First question in hr interview is tell about yourself then the hr asked questions what I mentioned in my resume. So put the information in resume what you known well. My unique talent is I'm a stage spea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, be confident, don't put irrelevant information in your resume update yourself relating to your studies

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why Java is platform independent?
  • Ans. 

    Java is platform independent due to its bytecode and JVM.

    • Java code is compiled into bytecode which is platform-independent.

    • JVM (Java Virtual Machine) interprets the bytecode and executes it on any platform.

    • JVM acts as an abstraction layer between the Java code and the underlying hardware.

    • This allows Java programs to run on any platform that has a JVM installed.

    • For example, a Java program written on a Windows machine ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Java is platform-independent because it does not depend on any type of platform. Hence, Java is platform-independent language. In Java, programs are compiled into byte code and that byte code is platform-independent. ... Any machine to execute the byte code needs the Java Virtual Machine.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Description of project
  • Ans. 

    The project involved designing and implementing a new network infrastructure for a large corporation.

    • Conducted a thorough analysis of the existing network infrastructure

    • Designed a new network architecture that met the company's needs

    • Implemented the new network infrastructure with minimal disruption to business operations

    • Tested and optimized the new network to ensure optimal performance

    • Provided ongoing support and maint

  • Answered by AI
  • Q2. Your previous experince

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for your resume

I applied via Walk-in and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Its for FP&A process and the major questions were from the basics of FP&A. How it starts and how its ends and Previous job roles.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's quite a moderate interview but be prepare for more rounds of technical interviews.

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.

Krenai Services Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

Krenai Services Reviews and Ratings

based on 9 reviews

4.3/5

Rating in categories

4.5

Skill development

3.9

Work-life balance

3.9

Salary

4.3

Job security

3.9

Company culture

4.1

Promotions

3.9

Work satisfaction

Explore 9 Reviews and Ratings
Software Developer
15 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

React Native Developer
7 salaries
unlock blur

₹3 L/yr - ₹6 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 - ₹3.2 L/yr

Java Full Stack Developer
4 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Krenai Services with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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