Upload Button Icon Add office photos
Engaged Employer

i

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

Wissen Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wissen Technology Softwaretest Engineer Interview Questions and Answers

Updated 12 Oct 2023

6 Interview questions

A Softwaretest Engineer was asked
Q. How does a hash set work with an employee object?
Ans. 

A hash set stores unique elements using a hash function for efficient retrieval.

  • Hash set stores unique elements based on their hash code

  • Employee object must have proper hashCode() and equals() methods implemented

  • Example: HashSet<Employee> employeeSet = new HashSet<>();

A Softwaretest Engineer was asked
Q. Write an SQL query to find the highest salary from a specific department.
Ans. 

SQL query to find the highest salary from a specific department

  • Use the MAX() function to find the highest salary

  • Filter the results based on the specific department using WHERE clause

  • Join the employee table with the department table if necessary

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If you encounter a blocker defect the day before the release date ... read more
Q3. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q4. Write an SQL query to display the total number of students from t ... read more
Q5. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
A Softwaretest Engineer was asked
Q. Write a function to split an array into chunks of a specified size.
Ans. 

Split an array of strings into specified size chunks

  • Use a loop to iterate through the array and slice it into chunks of specified size

  • Check if the array length is divisible by the specified size, if not handle the remaining elements separately

  • Example: ['apple', 'banana', 'cherry', 'date'] split into chunks of size 2 would result in [['apple', 'banana'], ['cherry', 'date']]

A Softwaretest Engineer was asked
Q. Write a function to convert a string from camel case to snake case.
Ans. 

Convert a string from camel case to snake case.

  • Split the camel case string into words based on uppercase letters.

  • Convert each word to lowercase and separate them with underscores.

  • Join the words back together with underscores to form the snake case string.

A Softwaretest Engineer was asked
Q. Explain the internal workings of a hash map when using a custom object as a key.
Ans. 

A hash map is a data structure that stores key-value pairs, using a hash function to map keys to indexes in an array.

  • Hash map uses a hash function to determine the index of the key in the underlying array.

  • Collision resolution techniques like chaining or open addressing are used to handle cases where multiple keys hash to the same index.

  • Custom objects used as keys must override the hashCode() and equals() methods f...

A Softwaretest Engineer was asked
Q. Given a nested array, flatten it into a single-dimensional array.
Ans. 

Flattening a nested array involves converting a multi-dimensional array into a single-dimensional array.

  • Use recursion to handle arrays of varying depths. Example: flatten([1, [2, [3, 4]], 5]) returns [1, 2, 3, 4, 5].

  • Utilize built-in methods like Array.prototype.flat() in JavaScript. Example: [1, [2, 3]].flat() returns [1, 2, 3].

  • Consider edge cases such as empty arrays or arrays with non-array elements. Example: fl...

Wissen Technology Softwaretest Engineer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Dec 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 

(4 Questions)

  • Q1. Split array into specified size
  • Ans. 

    Split an array of strings into specified size chunks

    • Use a loop to iterate through the array and slice it into chunks of specified size

    • Check if the array length is divisible by the specified size, if not handle the remaining elements separately

    • Example: ['apple', 'banana', 'cherry', 'date'] split into chunks of size 2 would result in [['apple', 'banana'], ['cherry', 'date']]

  • Answered by AI
  • Q2. Flatten nested array
  • Ans. 

    Flattening a nested array involves converting a multi-dimensional array into a single-dimensional array.

    • Use recursion to handle arrays of varying depths. Example: flatten([1, [2, [3, 4]], 5]) returns [1, 2, 3, 4, 5].

    • Utilize built-in methods like Array.prototype.flat() in JavaScript. Example: [1, [2, 3]].flat() returns [1, 2, 3].

    • Consider edge cases such as empty arrays or arrays with non-array elements. Example: flatten...

  • Answered by AI
  • Q3. Internal working of the hash map with custom object
  • Ans. 

    A hash map is a data structure that stores key-value pairs, using a hash function to map keys to indexes in an array.

    • Hash map uses a hash function to determine the index of the key in the underlying array.

    • Collision resolution techniques like chaining or open addressing are used to handle cases where multiple keys hash to the same index.

    • Custom objects used as keys must override the hashCode() and equals() methods for pr...

  • Answered by AI
  • Q4. SQL query to find the highest salary from a specific department
  • Ans. 

    SQL query to find the highest salary from a specific department

    • Use the MAX() function to find the highest salary

    • Filter the results based on the specific department using WHERE clause

    • Join the employee table with the department table if necessary

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Working of the hash set with the employee object
  • Ans. 

    A hash set stores unique elements using a hash function for efficient retrieval.

    • Hash set stores unique elements based on their hash code

    • Employee object must have proper hashCode() and equals() methods implemented

    • Example: HashSet<Employee> employeeSet = new HashSet<>();

  • Answered by AI
  • Q2. SQL queries grouped by
  • Q3. String conversion camel case to snake case
  • Ans. 

    Convert a string from camel case to snake case.

    • Split the camel case string into words based on uppercase letters.

    • Convert each word to lowercase and separate them with underscores.

    • Join the words back together with underscores to form the snake case string.

  • Answered by AI
  • Q4. Multi-thread question

Interview Preparation Tips

Topics to prepare for Wissen Technology Softwaretest Engineer interview:
  • Java
  • Spring Boot
  • exception handling
  • Collections
Interview preparation tips for other job seekers - Be confident in the interview

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Oct 2022.

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 wad hackerearth test

Round 3 - Technical 

(1 Question)

  • Q1. 2nd round was based on basic concepts of java
Round 4 - Technical 

(1 Question)

  • Q1. This was the final round taken by ed and based on scenarios questions

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Wissen Technology?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics questions on experience related
Round 2 - Coding Test 
Round 3 - Coding Test 

Interview Preparation Tips

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

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

Round 1 - Coding Test 

Java string manipulation questions and reactjs

Round 2 - Technical 

(1 Question)

  • Q1. Asked question in-depth about Spring boot and java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

There was aptitude round

Interview Preparation Tips

Interview preparation tips for other job seekers - Then technical round ,they asked questions on core java ,sql
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Whats is Denpendency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. What is middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications, allowing them to communicate and share data.

    • Middleware facilitates communication between different software applications

    • It can handle tasks such as message queuing, data transformation, and security

    • Examples of middleware include message brokers like RabbitMQ, ESBs like MuleSoft, and API gateways like Kong

  • Answered by AI

Skills evaluated in this interview

Softwaretest Engineer Interview Questions & Answers

INDIUM user image Shivanth Lenkalapally

posted on 18 Nov 2023

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 Oct 2023. 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 - Aptitude Test 

Moderate Level questions were asked.

Round 3 - Coding Test 

Medium level questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with DSA and Aptitude.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java code , oops, sql , spring bbot

Round 2 - Technical 

(2 Questions)

  • Q1. Maximum area of Stack
  • Ans. 

    The maximum area of a stack is determined by the size of the stack and the items it can hold.

    • The maximum area of a stack is calculated by multiplying the height of the stack by the width of the stack.

    • For example, if a stack has a height of 10 units and a width of 5 units, the maximum area would be 50 square units.

  • Answered by AI
  • Q2. Length of longest substring
  • Ans. 

    Find the length of the longest substring without repeating characters.

    • Iterate through the string and keep track of the characters seen so far in a set.

    • Use two pointers to mark the start and end of the current substring.

    • Update the maximum length of the substring as you iterate through the string.

  • Answered by AI

Skills evaluated in this interview

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

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

  • Q1. Explain Abstraction in detail.
  • Ans. 

    Abstraction is a fundamental concept in software engineering that simplifies complex systems by hiding unnecessary details.

    • Abstraction allows focusing on high-level functionalities while hiding implementation details.

    • In Object-Oriented Programming (OOP), abstraction is achieved through abstract classes and interfaces.

    • Example: A car's interface (steering wheel, pedals) abstracts the complex mechanics of the engine.

    • Abstr...

  • Answered by AI
  • Q2. Explain projects in detail.
  • Ans. 

    I worked on various projects focusing on software testing, automation, and quality assurance in diverse environments.

    • Developed automated test scripts using Selenium for a web application, improving testing efficiency by 40%.

    • Participated in Agile development cycles, collaborating with developers to ensure timely bug fixes and feature enhancements.

    • Conducted performance testing using JMeter to identify bottlenecks in a hi...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

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

  • Q1. The package was too low(4 to 6 lpa), and they are expectingin depth dsa(graphs)
  • Q2. Asking graphs for 4 lpa role

Wissen Technology Interview FAQs

How many rounds are there in Wissen Technology Softwaretest Engineer interview?
Wissen Technology interview process usually has 3-4 rounds. The most common rounds in the Wissen Technology interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Wissen Technology Softwaretest Engineer interview?

Some of the top questions asked at the Wissen Technology Softwaretest Engineer interview -

  1. SQL query to find the highest salary from a specific departm...read more
  2. Internal working of the hash map with custom obj...read more
  3. working of the hash set with the employee obj...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Wissen Technology Softwaretest Engineer Salary
based on 31 salaries
₹8.7 L/yr - ₹14.9 L/yr
84% more than the average Softwaretest Engineer Salary in India
View more details

Wissen Technology Softwaretest Engineer Reviews and Ratings

based on 6 reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.6

Salary

2.8

Job security

3.0

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
837 salaries
unlock blur

₹9.3 L/yr - ₹20 L/yr

Senior Software Engineer
736 salaries
unlock blur

₹16 L/yr - ₹30 L/yr

Principal Engineer
332 salaries
unlock blur

₹25 L/yr - ₹45 L/yr

Associate Software Engineer
155 salaries
unlock blur

₹9 L/yr - ₹15 L/yr

Software Developer
154 salaries
unlock blur

₹11.8 L/yr - ₹22 L/yr

Explore more salaries
Compare Wissen Technology with

Wissen Infotech

3.7
Compare

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare
write
Share an Interview