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, Process, and Tips

Updated 12 Oct 2023

Top Wissen Technology Softwaretest Engineer Interview Questions and Answers

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
  • 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

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 u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is load testing
  • Ans. 

    Load testing is a type of performance testing that simulates real-world usage to evaluate how a system performs under specific conditions.

    • Simulates real-world usage to test system performance

    • Measures response times, throughput, and resource utilization

    • Helps identify bottlenecks and optimize system performance

    • Examples: testing how a website handles a large number of simultaneous users or how an application performs unde

  • Answered by AI
  • Q2. What is regression testing
  • Ans. 

    Regression testing is the process of retesting software after changes to ensure that previously working features still work correctly.

    • Regression testing is performed to make sure that new code changes have not adversely affected existing functionality.

    • It involves running previously executed test cases to verify that no new bugs have been introduced.

    • Regression testing helps in maintaining the overall quality and stabili...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview process
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy to crack it

Round 2 - Coding Test 

3 coding questions based on SQL

Round 3 - Technical 

(2 Questions)

  • Q1. What is database in python
  • Ans. 

    A database in Python is a structured collection of data that allows for efficient storage, retrieval, and manipulation of information.

    • Python provides various libraries for interacting with databases such as SQLite, MySQL, and PostgreSQL.

    • Databases in Python can be accessed using SQL queries or through object-relational mapping (ORM) libraries like SQLAlchemy.

    • Data in a Python database can be stored in tables, rows, and c...

  • Answered by AI
  • Q2. SQL query and database

Skills evaluated in this interview

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
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Apr 2024.

Round 1 - Coding Test 

Python code for array

Round 2 - Aptitude Test 

Computerized test based on simpel math questions

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. What is iscsi in san
  • Ans. 

    iSCSI is a protocol used to transmit SCSI commands over IP networks.

    • iSCSI stands for Internet Small Computer System Interface.

    • It allows block-level access to storage devices over a network.

    • It uses TCP/IP to transmit SCSI commands and data over IP networks.

    • iSCSI targets are storage devices that can be accessed by iSCSI initiators.

    • iSCSI is commonly used in SAN (Storage Area Network) environments.

  • Answered by AI
  • Q2. What is raid and explain r5
  • Ans. 

    RAID stands for Redundant Array of Independent Disks. RAID 5 is a type of RAID that uses block-level striping with distributed parity.

    • RAID is a technology that combines multiple physical hard drives into a single logical unit for data redundancy and performance improvement.

    • RAID 5 requires at least three disks and uses parity data to provide fault tolerance.

    • In RAID 5, data is striped across all disks with parity data di...

  • Answered by AI

Skills evaluated in this interview

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

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Agile methodology
  • Q2. Project scenario based questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Technical round
Round 3 - HR 

(1 Question)

  • Q1. Hr will not tell correct information
Round 4 - One-on-one 

(1 Question)

  • Q1. No job security in this company mostly they hire contract base
Round 5 - One-on-one 

(1 Question)

  • Q1. Not good for job security and salary package is less

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.

Wissen Technology Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Wissen Technology Softwaretest Engineer Salary
based on 20 salaries
₹5.5 L/yr - ₹19 L/yr
109% more than the average Softwaretest Engineer Salary in India
View more details

Wissen Technology Softwaretest Engineer Reviews and Ratings

based on 5 reviews

4.4/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.4

Salary

3.4

Job security

3.7

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
618 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Senior Software Engineer
562 salaries
unlock blur

₹12.2 L/yr - ₹36 L/yr

Principal Engineer
282 salaries
unlock blur

₹15.5 L/yr - ₹42 L/yr

Associate Software Engineer
155 salaries
unlock blur

₹6 L/yr - ₹17.9 L/yr

Senior Principal Engineer
141 salaries
unlock blur

₹22 L/yr - ₹48 L/yr

Explore more salaries
Compare Wissen Technology with

Wissen Infotech

3.7
Compare

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

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