Upload Button Icon Add office photos

Filter interviews by

Kanerika Software Software Developer Interview Questions and Answers

Updated 21 Nov 2024

Kanerika Software 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 campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

70 questions in 90 minutes with 7 sections

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. Project description
  • Ans. 

    Developed a web application for tracking project progress and managing tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q3. Second highest salary
  • Ans. 

    To find the second highest salary in a table, you can use a SQL query with the MAX() function and a subquery.

    • Use a SQL query to select the MAX() salary from the table.

    • Use a subquery to select the MAX() salary that is less than the overall MAX() salary.

    • Combine both queries to get the second highest salary.

  • Answered by AI
  • Q4. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick retrieval of data.

    • Indexing involves creating a data structure that maps the values of specific columns in a database table to their physical location on disk.

    • It helps in speeding up data retrieval operations by allowing the database to quickly locate the rows that match a certain condition.

    • Examples o...

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Project description
  • Ans. 

    Developed a web application for tracking project progress and managing tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q3. Difference between truncate and delete
  • Ans. 

    Truncate is a DDL command that removes all records from a table, while delete is a DML command that removes specific records.

    • Truncate is faster than delete as it does not log individual row deletions.

    • Truncate resets the identity seed of the table, while delete does not.

    • Truncate cannot be rolled back, while delete can be rolled back using a transaction.

    • Truncate does not fire triggers, while delete does.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you join company
  • Q2. Where you see yourself after 5 years
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on cutting-edge technologies.

    • Leading a team of developers on innovative projects

    • Continuing to enhance my technical skills and knowledge

    • Contributing to the growth and success of the company

    • Possibly pursuing further education or certifications in software development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do mysql and dbms after that strong communication skill and also do oops concepts with real world example.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Based on JavaScript and Java.

Round 2 - Assignment 

A task based on JavaScript.

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 hours coding test and majorly focus on javascript.

Interview Preparation Tips

Interview preparation tips for other job seekers - There should be more focus on Javascript and development. If you are good at DSA, then that is a cherry on top.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Opps concepts, DSA algorithm
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find the second most occurrence of string.
  • Ans. 

    Find the second most occurrence of string in an array of strings.

    • Create a dictionary to store the count of each string in the array

    • Sort the dictionary by count in descending order

    • Return the key of the second element in the sorted dictionary

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding is based scenario question , we have to write the code in paper. There is 1 hour time to complete the coding test.

Round 2 - Technical 

(1 Question)

  • Q1. I am unable to attend the second round.

I applied via LinkedIn and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1.what are joins 2.what is normalisation 3.oops pillers4.
  • Ans. 

    Questions related to database and object-oriented programming concepts.

    • Joins are used to combine data from two or more tables based on a related column.

    • Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • OOPs pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Answered by AI
  • Q2. 4.program on array
  • Ans. 

    An array is a collection of elements of the same data type stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Common array operations include sorting and searching

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions asked was basic level to check the basic understanding

Skills evaluated in this interview

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

Written Coding Test - Arrays, Matrix in any language

Round 2 - Group Discussion 

GD is Group Discussion only shortlisted students will attend GD Round

Round 3 - Technical 

(2 Questions)

  • Q1. I've not attended
  • Q2. Then there will be a HR Round

Kanerika Software Interview FAQs

How many rounds are there in Kanerika Software Software Developer interview?
Kanerika Software interview process usually has 4 rounds. The most common rounds in the Kanerika Software interview process are One-on-one Round, Aptitude Test and HR.
What are the top questions asked in Kanerika Software Software Developer interview?

Some of the top questions asked at the Kanerika Software Software Developer interview -

  1. difference between truncate and del...read more
  2. what is index...read more
  3. project descript...read more

Tell us how to improve this page.

Kanerika Software Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Kanerika Software Software Developer Salary
based on 5 salaries
₹4 L/yr - ₹8 L/yr
26% less than the average Software Developer Salary in India
View more details

Kanerika Software Software Developer Reviews and Ratings

based on 14 reviews

4.7/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.7

Salary

4.8

Job security

4.7

Company culture

4.6

Promotions

4.7

Work satisfaction

Explore 14 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹3.5 L/yr - ₹14.6 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹8.5 L/yr - ₹17 L/yr

Senior QA Engineer
18 salaries
unlock blur

₹7 L/yr - ₹13.2 L/yr

QA Engineer
15 salaries
unlock blur

₹4.9 L/yr - ₹9 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Kanerika Software 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