Upload Button Icon Add office photos

Filter interviews by

Keyloop Intern Interview Questions, Process, and Tips

Updated 7 Oct 2024

Keyloop Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

60mins test duration

Round 2 - Technical 

(2 Questions)

  • Q1. What are Linux commands
  • Ans. 

    Linux commands are instructions given to the operating system to perform specific tasks or operations.

    • Linux commands are case-sensitive

    • Commands are typically entered in the terminal

    • Common commands include ls (list files), cd (change directory), mkdir (make directory)

    • Commands can be combined with options and arguments for more specific actions

  • Answered by AI
  • Q2. What is virtualization concept
  • Ans. 

    Virtualization is the process of creating a virtual version of a device or resource, such as a server, storage device, network or operating system.

    • Virtualization allows multiple virtual instances to run on a single physical machine

    • It helps in optimizing resources and improving efficiency

    • Examples include VMware for server virtualization, VirtualBox for desktop virtualization

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. SQL queries and differences b/w delete and truncate
  • Ans. 

    Delete and truncate are SQL commands used to remove data from a table, but with key differences.

    • DELETE is a DML command used to remove specific rows from a table based on a condition.

    • TRUNCATE is a DDL command used to remove all rows from a table, resetting auto-increment values.

    • DELETE can be rolled back, while TRUNCATE cannot be rolled back.

    • DELETE triggers ON DELETE triggers, while TRUNCATE does not trigger any trigger...

  • Answered by AI
  • Q2. What is cloud and aws
  • Ans. 

    Cloud computing is the delivery of computing services like servers, storage, databases, networking, software, analytics, and intelligence over the internet.

    • AWS (Amazon Web Services) is a popular cloud computing platform offered by Amazon.

    • Cloud computing allows users to access resources on-demand without the need for physical infrastructure.

    • AWS provides a wide range of services such as EC2 (Elastic Compute Cloud), S3 (S...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It contained 3 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me questions on dsa and system design and the resume. also one puzzle.
  • Q2. They asked me about file handling, and sorting.

Interview Preparation Tips

Topics to prepare for CDK Global Intern interview:
  • DSA
  • System Design
Interview preparation tips for other job seekers - good to go

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Android components, lifecycle, providers, receivers, fragments, view components, Ui design related questions.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions were high level

Interview Preparation Tips

Topics to prepare for SOTI Software Engineer interview:
  • array
  • Data Dictionary
  • tree
Interview preparation tips for other job seekers - before applying to soti you should have a good coding skill

Associate Interview Questions & Answers

SOTI user image Gurubalaji Balaji

posted on 1 Jul 2024

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

Easy coding round ,like 2d array,pattern

Round 2 - Assignment 

It makes to develop any static website or any static project techniques

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend

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

Interview Questionnaire 

1 Question

  • Q1. What if you found that there is an error in your code which tester missed and the project is going to live in morning. What will you do even they issue remain after trying to fix in extra hours(night).
  • Ans. 

    I would immediately inform the project manager and the testing team about the error and work collaboratively to find a solution.

    • Notify the project manager and testing team about the error

    • Collaborate with the testing team to understand the issue

    • Analyze the code to identify the root cause of the error

    • Work with the development team to fix the error as quickly as possible

    • Perform thorough testing to ensure the issue is reso...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay honest and completely open about work and working style.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Complete Depend on Cv topics and Data structure.
Round 2 - Technical 

(1 Question)

  • Q1. Same as Round 1 but difficulty level in high
Round 3 - Technical 

(1 Question)

  • Q1. Round 3 will be based on previous round and mostly Stack centric.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company, give a Try they offer a good life and work balance.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java core, spring boot
  • Q2. DBMS concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamentals, Revise core java concept

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

Interview Questionnaire 

8 Questions

  • Q1. About last role of mine
  • Q2. Asked about My family background
  • Q3. Salary discussion and negotiation to me
  • Q4. Initially Basics of PHP language.
  • Q5. Oops concepts should have prepared
  • Q6. Questions about laravel frame work
  • Q7. Diff between unique and primary key in sql
  • Ans. 

    Unique key allows null values, primary key does not.

    • Primary key is a unique identifier for a record in a table

    • Unique key allows null values, primary key does not

    • A table can have only one primary key, but multiple unique keys

    • Primary key is automatically indexed, unique key is not necessarily indexed

  • Answered by AI
  • Q8. Use of having clause in sql
  • Ans. 

    HAVING clause is used in SQL to filter data based on aggregate functions.

    • It is used with GROUP BY clause to filter data based on aggregate functions

    • It is used to filter data after grouping has been done

    • It is similar to WHERE clause but operates on grouped data

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared about the framework and Basics of primary skilled programming language.

Skills evaluated in this interview

Keyloop Interview FAQs

How many rounds are there in Keyloop Intern interview?
Keyloop interview process usually has 3 rounds. The most common rounds in the Keyloop interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Keyloop Intern interview?

Some of the top questions asked at the Keyloop Intern interview -

  1. SQL queries and differences b/w delete and trunc...read more
  2. what are Linux comma...read more
  3. What is virtualization conc...read more

Tell us how to improve this page.

Keyloop Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

CarDekho Group Interview Questions
3.7
 • 72 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CDK Global Interview Questions
3.7
 • 36 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Backbase Interview Questions
3.9
 • 22 Interviews
SOTI Interview Questions
3.3
 • 22 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
View all
Consultant
24 salaries
unlock blur

₹13.7 L/yr - ₹25.6 L/yr

Senior Member Technical
22 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Support Analyst
15 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

Technical Support Analyst
14 salaries
unlock blur

₹5.5 L/yr - ₹8.4 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹8.2 L/yr - ₹30 L/yr

Explore more salaries
Compare Keyloop with

CDK Global

3.7
Compare

Reynolds and Reynolds

2.0
Compare

Route One

1.0
Compare

Quikr

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