Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Knoldus Inc Team. If you also belong to the team, you can get access from here

Knoldus Inc Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Knoldus Inc Interview Questions and Answers

Updated 15 Feb 2025
Popular Designations

15 Interview questions

A Software Consultant was asked 10mo ago
Q. Write a Java program to return the prime numbers within a given range.
Ans. 

Java program to return prime numbers in a given range

  • Iterate through the given range and check if each number is prime

  • A prime number is a number that is only divisible by 1 and itself

  • Use a nested loop to check for divisibility by numbers less than the current number

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. How do you achieve synchronization in Selenium?
Ans. 

Synchronization in Selenium ensures that the automation script waits for the web page to load completely before performing actions.

  • Use implicit wait to wait for a certain amount of time before throwing an exception

  • Use explicit wait to wait for a specific condition to be met before proceeding

  • Use fluent wait to wait for a specific condition with a polling frequency

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. What is the difference between driver.close() and driver.quit()?
Ans. 

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

  • driver.close() closes the current window or tab in the browser.

  • driver.quit() closes all windows and tabs opened by the WebDriver and ends the WebDriver session.

  • driver.close() is used when you want to close a specific window, while driver.quit() is used when you want to close the entire browser session.

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. What is the difference between SOAP and REST APIs?
Ans. 

SOAP is a protocol, while REST is an architectural style for APIs.

  • SOAP is a protocol that uses XML for messaging and operates over HTTP, SMTP, etc.

  • REST is an architectural style that uses standard HTTP methods like GET, POST, PUT, DELETE.

  • SOAP is more rigid and requires more bandwidth, while REST is lightweight and flexible.

  • SOAP has built-in security features like WS-Security, while REST relies on external security...

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. Write a Java program to count the triplets in a given array.
Ans. 

Java program to count triplets in a given array

  • Create a nested loop to iterate through all possible triplets in the array

  • Use a counter to keep track of the number of triplets that satisfy the condition

  • Check if the sum of the triplet is equal to a given target value

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. What are the different exceptions you have faced in Selenium?
Ans. 

Some common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException.

  • NoSuchElementException occurs when an element could not be found in the DOM.

  • ElementNotVisibleException occurs when an element is present in the DOM but not visible on the page.

  • TimeoutException occurs when a command does not complete in the specified time.

  • StaleElementRefere...

View all Software Consultant interview questions
A Software Consultant was asked 10mo ago
Q. What is JSON schema?
Ans. 

JSON Schema is a vocabulary that allows you to annotate and validate JSON documents.

  • JSON Schema defines the structure of JSON data

  • It provides clear guidelines on what data is allowed and how it should be structured

  • JSON Schema can be used to validate JSON data against a predefined schema

View all Software Consultant interview questions
Are these interview questions helpful?
A Software Trainee was asked
Q. Are you comfortable with the bond policy?
Ans. 

I understand the bond policy and am comfortable with the commitment it entails for career growth and stability.

  • A bond policy typically requires employees to stay with the company for a specified period.

  • This commitment can lead to better training opportunities and career advancement.

  • For example, if a company invests in my training, the bond ensures they can benefit from my skills for a certain time.

  • I believe that s...

View all Software Trainee interview questions
A Software Consultant was asked
Q. What are some easy collection questions in Java?
Ans. 

Java Collections Framework provides various data structures for storing and manipulating groups of objects efficiently.

  • 1. List: An ordered collection that allows duplicates. Example: ArrayList<String> names = new ArrayList<>();

  • 2. Set: A collection that does not allow duplicates. Example: HashSet<Integer> uniqueNumbers = new HashSet<>();

  • 3. Map: A collection of key-value pairs. Example: HashM...

View all Software Consultant interview questions
A Software Consultant was asked
Q. How does the Java Garbage Collector function?
Ans. 

Java Garbage Collector automatically manages memory allocation and deallocation.

  • Garbage Collector runs in the background and frees up memory by removing objects that are no longer in use.

  • It uses different algorithms like Mark and Sweep, Copying, and Generational to manage memory.

  • Java provides methods like System.gc() and Runtime.getRuntime().gc() to request garbage collection.

  • Garbage Collector can cause performanc...

View all Software Consultant interview questions

Knoldus Inc Interview Experiences

20 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

It was basic one you need to prepare according to your resume

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself Where you see yourself in 5 years
  • Ans. 

    I am a dedicated Automation Engineer with a passion for problem-solving and continuous learning. In 5 years, I see myself leading a team of engineers and implementing cutting-edge automation technologies.

    • Currently working on developing automated test scripts using Selenium and Python

    • Attending workshops and courses to stay updated on the latest automation tools and techniques

    • Goal is to become a senior automation enginee...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to ruin your career than go for it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a java program to return the prime number for a given range?
  • Ans. 

    Java program to return prime numbers in a given range

    • Iterate through the given range and check if each number is prime

    • A prime number is a number that is only divisible by 1 and itself

    • Use a nested loop to check for divisibility by numbers less than the current number

  • Answered by AI
  • Q2. How to achieve synchronisation in selenium?
  • Ans. 

    Synchronization in Selenium ensures that the automation script waits for the web page to load completely before performing actions.

    • Use implicit wait to wait for a certain amount of time before throwing an exception

    • Use explicit wait to wait for a specific condition to be met before proceeding

    • Use fluent wait to wait for a specific condition with a polling frequency

  • Answered by AI
  • Q3. Difference between driver.close() and driver.quit()
  • Ans. 

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

    • driver.close() closes the current window or tab in the browser.

    • driver.quit() closes all windows and tabs opened by the WebDriver and ends the WebDriver session.

    • driver.close() is used when you want to close a specific window, while driver.quit() is used when you want to close the entire browser session.

  • Answered by AI
  • Q4. Difference between soap and rest api ?
  • Ans. 

    SOAP is a protocol, while REST is an architectural style for APIs.

    • SOAP is a protocol that uses XML for messaging and operates over HTTP, SMTP, etc.

    • REST is an architectural style that uses standard HTTP methods like GET, POST, PUT, DELETE.

    • SOAP is more rigid and requires more bandwidth, while REST is lightweight and flexible.

    • SOAP has built-in security features like WS-Security, while REST relies on external security meas...

  • Answered by AI
  • Q5. What are the different http methods? Explain each one of them!
  • Ans. 

    HTTP methods are used to indicate the desired action to be performed on a resource.

    • GET - Retrieve data from a server

    • POST - Send data to a server to create/update a resource

    • PUT - Update a resource on the server

    • DELETE - Remove a resource from the server

    • PATCH - Update a resource partially

    • OPTIONS - Get information about the communication options available for a resource

    • HEAD - Retrieve headers from a server without the body...

  • Answered by AI
Round 2 - Coding Test 

There were 2 coding question on the hacker rank platform , questions were easy , both were string and java related issue problem of DSA

Round 3 - Technical 

(3 Questions)

  • Q1. Write a java program to count the triplet in a given array ?
  • Ans. 

    Java program to count triplets in a given array

    • Create a nested loop to iterate through all possible triplets in the array

    • Use a counter to keep track of the number of triplets that satisfy the condition

    • Check if the sum of the triplet is equal to a given target value

  • Answered by AI
  • Q2. What are the different exceptions you have faced in selenium?
  • Ans. 

    Some common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException.

    • NoSuchElementException occurs when an element could not be found in the DOM.

    • ElementNotVisibleException occurs when an element is present in the DOM but not visible on the page.

    • TimeoutException occurs when a command does not complete in the specified time.

    • StaleElementReferenceEx...

  • Answered by AI
  • Q3. What is json schema?
  • Ans. 

    JSON Schema is a vocabulary that allows you to annotate and validate JSON documents.

    • JSON Schema defines the structure of JSON data

    • It provides clear guidelines on what data is allowed and how it should be structured

    • JSON Schema can be used to validate JSON data against a predefined schema

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Why should we hire you ?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a proven track record of delivering successful software solutions.

    • Extensive experience in software development and consulting

    • Strong problem-solving skills

    • Proven track record of delivering successful software solutions

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Where do you see yourself in next 5 years?
  • Ans. 

    In the next 5 years, I see myself growing into a senior software consultant role, leading projects and mentoring junior team members.

    • Continuing to enhance my technical skills and knowledge in software development

    • Taking on more responsibilities in project management and client interactions

    • Mentoring and guiding junior team members to help them grow in their careers

    • Possibly pursuing certifications or advanced degrees to f...

  • Answered by AI
  • Q3. What is your strength and weaknesses?
  • Ans. 

    Strength: Strong problem-solving skills. Weakness: Sometimes too detail-oriented.

    • Strength: Ability to quickly analyze complex problems and find effective solutions

    • Weakness: Can get caught up in minor details and lose sight of the bigger picture

    • Strength: Strong communication skills to explain technical concepts to non-technical stakeholders

    • Weakness: Difficulty delegating tasks and trusting others to complete them

    • Strengt...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Knoldus Inc Software Consultant interview:
  • Java
  • Selenium
  • Postman
  • Api testing
Interview preparation tips for other job seekers - Prepare well , focus on basics of ui automation and api automation.

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 Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Be firm with Agile Principles
  • Q2. Real time project handling
  • Ans. 

    Real time project handling involves managing tasks and resources efficiently to ensure timely completion.

    • Prioritize tasks based on deadlines and dependencies

    • Regularly update project status and communicate with team members

    • Use project management tools for real-time tracking and collaboration

    • Adjust plans as needed to address any delays or issues

    • Ensure clear communication channels for quick decision-making

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Agile, team handling, project management , scrum etc

Intern Interview Questions & Answers

user image Anonymous

posted on 12 Jan 2024

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

I applied via GFG and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Ask questions from my resume related to the tech stack I have worked on.
  • Q2. Basic Java questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude question, Coding question

Round 2 - Technical 

(1 Question)

  • Q1. Java stream apis
Round 3 - HR 

(1 Question)

  • Q1. HR Discussion related to work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you contribute to the society?
  • Ans. 

    As a Senior HR Executive, I contribute to society by promoting diversity and inclusion, supporting employee well-being, and fostering a positive work culture.

    • Implementing diversity and inclusion initiatives to ensure equal opportunities for all employees

    • Developing and implementing employee wellness programs to support physical and mental well-being

    • Creating a positive work culture through effective communication and tea...

  • Answered by AI
  • Q2. How do you create a Wow experience?
  • Ans. 

    Creating a Wow experience involves exceeding expectations, personalization, attention to detail, and going above and beyond.

    • Exceed expectations by delivering exceptional service

    • Personalize interactions by understanding individual needs and preferences

    • Pay attention to detail to ensure a seamless and flawless experience

    • Go above and beyond by anticipating and fulfilling unexpressed needs

    • Provide unexpected surprises or del...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The organization emphasizes on culture a lot and during my interview, the team people and culture asked me some culture related questions. I strongly suggest visiting their website and read about their core values.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Can you handle multiple projects at a time
  • Q2. They don't care your anything.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join I get very bad experience. There are some rulers in the organization who have 7-8 years of experience already in the organization. If you can handle the bad pressure you can join. Don't go only for money only take 5 lpa less but don't join this company.

I applied via Referral and was interviewed in Nov 2022. There were 4 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 

It was online 1hr test. Overall it was an easy test. If you code on hackerrank, hackerearth or leetcode then you can easily clear the test.

Round 3 - Technical 

(1 Question)

  • Q1. All Data Structure related, OOPs concepts, Spring Framework.
Round 4 - HR 

(2 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to be confident. Show your spark that you are better in every kind.

I applied via Campus Placement and was interviewed in Sep 2022. There were 3 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 

(1 Question)

  • Q1. Java basics and basic coding
Round 3 - HR 

(1 Question)

  • Q1. They ask if you are comfortable with bond policy
  • Ans. 

    I understand the bond policy and am comfortable with the commitment it entails for career growth and stability.

    • A bond policy typically requires employees to stay with the company for a specified period.

    • This commitment can lead to better training opportunities and career advancement.

    • For example, if a company invests in my training, the bond ensures they can benefit from my skills for a certain time.

    • I believe that such p...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Knoldus Inc Software Trainee interview:
  • Java
Interview preparation tips for other job seekers - prepare basics and behave confident. practice few dsa questions and java is the only thing they ask
Round 1 - Coding Test 

Hard level of coding

Round 2 - Technical 

(2 Questions)

  • Q1. Ds algo and oops concepts
  • Q2. Machine learning algorithms
  • Ans. 

    Machine learning algorithms are used to train models to make predictions or decisions based on data.

    • Machine learning algorithms can be supervised, unsupervised, or semi-supervised

    • Examples of machine learning algorithms include linear regression, decision trees, and neural networks

    • Machine learning algorithms require large amounts of data to train and improve accuracy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on ds algo and oops concepts

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (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 Knoldus Inc?
Ask anonymously on communities.

Knoldus Inc Interview FAQs

How many rounds are there in Knoldus Inc interview?
Knoldus Inc interview process usually has 2-3 rounds. The most common rounds in the Knoldus Inc interview process are Technical, HR and Coding Test.
How to prepare for Knoldus Inc 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 Knoldus Inc. The most common topics and skills that interviewers at Knoldus Inc expect are VMware, Java, cisco, Agile and Microservices.
What are the top questions asked in Knoldus Inc interview?

Some of the top questions asked at the Knoldus Inc interview -

  1. What are the different http methods? Explain each one of th...read more
  2. What are the different exceptions you have faced in seleni...read more
  3. Write a java program to return the prime number for a given ran...read more
What are the most common questions asked in Knoldus Inc HR round?

The most common HR questions asked in Knoldus Inc interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...read more
How long is the Knoldus Inc interview process?

The duration of Knoldus Inc interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 11 interview experiences

Difficulty level

Easy 22%
Moderate 78%

Duration

Less than 2 weeks 63%
2-4 weeks 38%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
ClaySys Interview Questions
2.9
 • 26 Interviews
Contus Interview Questions
4.2
 • 25 Interviews
DynPro Interview Questions
3.8
 • 24 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
View all

Knoldus Inc Reviews and Ratings

based on 187 reviews

3.9/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.7

Salary

3.5

Job security

4.0

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 187 Reviews and Ratings
Doc1 developer

Noida

2-7 Yrs

Not Disclosed

Senior Scala Developer

Noida

3-6 Yrs

₹ 20-30 LPA

Explore more jobs
Software Consultant
119 salaries
unlock blur

₹3.8 L/yr - ₹12.6 L/yr

Senior Software Consultant
56 salaries
unlock blur

₹6 L/yr - ₹18.3 L/yr

Software Developer
16 salaries
unlock blur

₹4.5 L/yr - ₹10.8 L/yr

Software Engineer
15 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹6.6 L/yr - ₹21.2 L/yr

Explore more salaries
Compare Knoldus Inc with

Accel Frontline

3.9
Compare

Apmosys Technologies

3.4
Compare

Pitney Bowes

3.8
Compare

DynPro

3.8
Compare
write
Share an Interview