Upload Button Icon Add office photos

Kanerika Software

Compare button icon Compare button icon Compare

Filter interviews by

Kanerika Software Interview Questions and Answers

Updated 21 Nov 2024
Popular Designations

7 Interview questions

A Software Developer was asked 7mo ago
Q. 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.

  • Examp...

View all Software Developer interview questions
A Senior Java Developer was asked
Q. Given a string, return the starting and ending indices of the longest repeating character sequence.
Ans. 

Find starting and ending indices of repetitive character in a string.

  • Iterate through the string and keep track of the current character and its count.

  • When a different character is encountered, check if the count is greater than 1 and store the indices.

  • Repeat the process until the end of the string is reached.

View all Senior Java Developer interview questions
A QA Engineer was asked
Q. How do you type text into an input box using Selenium?
Ans. 

To type text in an input box using Selenium, use the sendKeys() method.

  • Locate the input box using a locator strategy

  • Use the sendKeys() method to enter text into the input box

  • Example: driver.findElement(By.id("inputBoxId")).sendKeys("Text to be entered")

View all QA Engineer interview questions
A QA Engineer was asked
Q. What is the major difference between driver.close() and driver.quit()?
Ans. 

driver.close() closes the current window while driver.quit() closes all windows and ends the session.

  • driver.close() only closes the current window while driver.quit() closes all windows and ends the session

  • driver.close() can be used when multiple windows are open and you want to close only one of them

  • driver.quit() should be used at the end of the script to ensure all windows are closed and the session is ended

View all QA Engineer interview questions
A QA Engineer was asked
Q. What are the selenium suit components What are the limitations of selenium testing..?
Ans. 

Selenium suite components include Selenium IDE, Selenium WebDriver, and Selenium Grid. Limitations include browser compatibility issues and difficulty in testing non-web applications.

  • Selenium IDE for record and playback

  • Selenium WebDriver for programmatic interaction

  • Selenium Grid for distributed testing

  • Browser compatibility issues

  • Difficulty in testing non-web applications

View all QA Engineer interview questions
A QA Engineer was asked
Q. What is selenium ,how to fix frame work,how to write Navigation tools..?
Ans. 

Selenium is a tool used for automating web browsers. Framework can be fixed by identifying and resolving issues. Navigation tools can be written using Selenium commands.

  • Selenium is a popular open-source tool for automating web browsers

  • To fix a framework, identify and resolve issues with the code

  • Navigation tools can be written using Selenium commands like 'get', 'click', 'sendKeys', etc.

View all QA Engineer interview questions
A QA Engineer was asked
Q. Mention the types of web locator What are the types of waits supported by web driver..?
Ans. 

Web locators include ID, name, class name, tag name, link text, and partial link text. Web driver supports implicit, explicit, and fluent waits.

  • Web locators are used to identify elements on a web page

  • ID and name locators are unique to an element

  • Class name and tag name locators can identify multiple elements

  • Link text and partial link text locators are used for links

  • Implicit waits wait for a certain amount of time b...

View all QA Engineer interview questions
Are these interview questions helpful?

Kanerika Software Interview Experiences

7 interviews found

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

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

Round 1 - Aptitude Test 

Questions were moderate but we need to manage time to clear this round

Round 2 - One-on-one 

(4 Questions)

  • Q1. Asked to tell about me
  • Q2. Questions on OOPS concept
  • Q3. And basic To moderate SQL questions
  • Q4. Question on DSA
Round 3 - HR 

(3 Questions)

  • Q1. Asked me to tell about me
  • Q2. And asked about my projects
  • Q3. Asked me to tell what my expectations are from Kanerika

Interview Preparation Tips

Topics to prepare for Kanerika Software Associate Software Engineer interview:
  • Java
  • OOPS
  • SQL
  • DSA
  • Aptitude
Interview preparation tips for other job seekers - Prepare well about the projects you did..learn to manage time
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Pyspark,unity catalogue and Sql coding questions
  • Q2. Data warehousing concepts
Round 2 - Behavioral 

(2 Questions)

  • Q1. Project related questions
  • Q2. Python and Sql related questions
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 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 experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics to Advanced of Power BI
  • Q2. Basic to Advanced DAX
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Online aptitude and behavioural test

Round 2 - Technical 

(1 Question)

  • Q1. In this round questions will be asked from basic to medium data structures, OOPS and Development related questions.
Round 3 - HR 

(1 Question)

  • Q1. In this round behavioural questions will ask from HR
Round 4 - Behavioral 

(1 Question)

  • Q1. API related and DATA Structures
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Return starting and ending indices of a repetitive character in a string.
  • Ans. 

    Find starting and ending indices of repetitive character in a string.

    • Iterate through the string and keep track of the current character and its count.

    • When a different character is encountered, check if the count is greater than 1 and store the indices.

    • Repeat the process until the end of the string is reached.

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 22 May 2022

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - 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
Round 2 - Technical 

(5 Questions)

  • Q1. What is selenium ,how to fix frame work,how to write Navigation tools..?
  • Ans. 

    Selenium is a tool used for automating web browsers. Framework can be fixed by identifying and resolving issues. Navigation tools can be written using Selenium commands.

    • Selenium is a popular open-source tool for automating web browsers

    • To fix a framework, identify and resolve issues with the code

    • Navigation tools can be written using Selenium commands like 'get', 'click', 'sendKeys', etc.

  • Answered by AI
  • Q2. Mention the types of web locator What are the types of waits supported by web driver..?
  • Ans. 

    Web locators include ID, name, class name, tag name, link text, and partial link text. Web driver supports implicit, explicit, and fluent waits.

    • Web locators are used to identify elements on a web page

    • ID and name locators are unique to an element

    • Class name and tag name locators can identify multiple elements

    • Link text and partial link text locators are used for links

    • Implicit waits wait for a certain amount of time before...

  • Answered by AI
  • Q3. What are the selenium suit components What are the limitations of selenium testing..?
  • Ans. 

    Selenium suite components include Selenium IDE, Selenium WebDriver, and Selenium Grid. Limitations include browser compatibility issues and difficulty in testing non-web applications.

    • Selenium IDE for record and playback

    • Selenium WebDriver for programmatic interaction

    • Selenium Grid for distributed testing

    • Browser compatibility issues

    • Difficulty in testing non-web applications

  • Answered by AI
  • Q4. What is the major difference between driver.close() and driver.quit()?
  • Ans. 

    driver.close() closes the current window while driver.quit() closes all windows and ends the session.

    • driver.close() only closes the current window while driver.quit() closes all windows and ends the session

    • driver.close() can be used when multiple windows are open and you want to close only one of them

    • driver.quit() should be used at the end of the script to ensure all windows are closed and the session is ended

  • Answered by AI
  • Q5. How to type text in an input box using Selenium
  • Ans. 

    To type text in an input box using Selenium, use the sendKeys() method.

    • Locate the input box using a locator strategy

    • Use the sendKeys() method to enter text into the input box

    • Example: driver.findElement(By.id("inputBoxId")).sendKeys("Text to be entered")

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I need Qa Automation testing, manual Testing,Api testing, Maven, frame work.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Kanerika Software?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - 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
Round 2 - Coding Test 

Mcqs on javascript,. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Campus recruitment
1 online coding
2 technical rounds DSA
1 tech managerial
1 hr

Os, DBMS, DSA, stacks, trees,

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Ans. 

    This question involves creating a specific pattern using loops and conditional statements in programming.

    • Identify the desired pattern (e.g., asterisks, numbers).

    • Use nested loops: outer loop for rows, inner loop for columns.

    • Control the output format with conditional statements.

    • Example: For a pyramid pattern, increase spaces and asterisks in each row.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Describe your most Complex coding Challenge .
  • Q2. How do you handle technical debt ?
  • Ans. 

    I prioritize addressing technical debt through regular assessments, refactoring, and integrating it into the development process.

    • Conduct regular code reviews to identify areas of technical debt, such as outdated libraries or inefficient algorithms.

    • Implement a 'debt backlog' where technical debt items are tracked and prioritized alongside new features.

    • Allocate specific time in sprints for refactoring and addressing tech...

  • Answered by AI

Kanerika Software Interview FAQs

How many rounds are there in Kanerika Software interview?
Kanerika Software interview process usually has 2-3 rounds. The most common rounds in the Kanerika Software interview process are Technical, Aptitude Test and HR.
How to prepare for Kanerika Software 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 Kanerika Software. The most common topics and skills that interviewers at Kanerika Software expect are Java, SQL, Javascript, Spring Boot and Postgresql.
What are the top questions asked in Kanerika Software interview?

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

  1. What is selenium ,how to fix frame work,how to write Navigation tools...read more
  2. What is the major difference between driver.close() and driver.quit...read more
  3. Mention the types of web locator What are the types of waits supported by web d...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 8 interview experiences

Difficulty level

Easy 17%
Moderate 67%
Hard 17%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
ZeAI SOFT Interview Questions
4.9
 • 21 Interviews
Ivanti Interview Questions
3.7
 • 19 Interviews
Xcelore Interview Questions
4.7
 • 17 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
View all

Kanerika Software Reviews and Ratings

based on 139 reviews

4.4/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.4

Salary

4.4

Job security

4.4

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 139 Reviews and Ratings
Technical Project Manager

Hyderabad / Secunderabad

5-10 Yrs

₹ 12-22 LPA

Senior Delivery Manager

Hyderabad / Secunderabad

10-20 Yrs

Not Disclosed

Explore more jobs
Software Engineer
61 salaries
unlock blur

₹5 L/yr - ₹10.1 L/yr

Senior Software Engineer
38 salaries
unlock blur

₹10 L/yr - ₹16.8 L/yr

Senior QA Engineer
19 salaries
unlock blur

₹7.9 L/yr - ₹13.2 L/yr

Associate Software Engineer
16 salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

QA Engineer
15 salaries
unlock blur

₹4.9 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Kanerika Software with

Zidio Development

4.5
Compare

NexTurn

4.1
Compare

Springbord Systems

3.6
Compare

Zaalima Development

4.2
Compare
write
Share an Interview