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

Updated 2 Mar 2025

Top Wissen Technology Interview Questions and Answers

View all 138 questions

Wissen Technology Interview Experiences

Popular Designations

150 interviews found

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Candle problem
Multiple choice questions
Non Repeating characters

Top Wissen Technology Senior Software Engineer Interview Questions and Answers

Q1. Write a javascript function which returns maximum and minimum occurrence of letter from string
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Kafka ?
  • Ans. 

    Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It provides featur...

  • Answered by AI
  • Q2. What are JOINS in MySql
  • Ans. 

    JOINS in MySql are used to combine rows from two or more tables based on a related column between them.

    • JOINS are used to retrieve data from multiple tables based on a related column

    • Types of JOINS include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI

Skills evaluated in this interview

Top Wissen Technology Java Developer Interview Questions and Answers

Q1. Parent class has run() and walk() . Parent run() - calls walk() Child Class overrides Parent class Inside run() - calls super.run() Walk() - calls super.walk In main class Parent p = new child() p.run() What will be the order of execution?
View answer (5)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Wissen Technology Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

I have provided a question with time limitation. The question was a medium level and it was based on my previous experience and current role.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Create a React application based on the given requirements
  • Ans. 

    Create a React application based on given requirements

    • Start by setting up a new React project using create-react-app

    • Identify the components needed based on the requirements

    • Implement state management using React hooks or Redux

    • Fetch data from an API if required and display it in the application

    • Ensure responsive design and user-friendly interface

  • Answered by AI
  • Q2. Question was related to asynchronous javascript

Skills evaluated in this interview

Top Wissen Technology Software Developer Interview Questions and Answers

Q1. design a deck of card and tell who is the higher bidder
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Software Developer Interview Questions & Answers

user image prashant kumar

posted on 18 Jun 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

5 questions which includes programming and sql questions.

Round 2 - Technical 

(1 Question)

  • Q1. Internal working of hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed a...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Constructors and overridding of functions in hashmap
  • Ans. 

    Constructors are used to initialize objects, while overriding functions in HashMap allows custom behavior for key-value pairs.

    • Constructors in HashMap are used to initialize the HashMap object with a specified initial capacity and load factor.

    • Overriding functions in HashMap allows custom behavior for methods like put(), get(), and remove().

    • Example: Overriding the put() method in a custom HashMap implementation to perfor...

  • Answered by AI

Skills evaluated in this interview

Top Wissen Technology Software Developer Interview Questions and Answers

Q1. design a deck of card and tell who is the higher bidder
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Wissen Technology interview questions for popular designations

 Java Developer

 (22)

 Software Engineer

 (18)

 Senior Software Engineer

 (18)

 Software Developer

 (17)

 Associate Software Engineer

 (8)

 Data Engineer

 (5)

 Senior Software Developer

 (4)

 Trainee Analyst

 (2)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Given online test , with 3 coding questions
2 from java and 1 from sql
aptitude question was related to solid principle, output of a threaded code , design principle question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about microservices
  • Ans. 

    Microservices are a software architecture design where applications are broken down into smaller, independent services that communicate with each other through APIs.

    • Microservices allow for greater flexibility and scalability in software development.

    • Each microservice is responsible for a specific function or feature of the application.

    • Microservices can be developed, deployed, and scaled independently of each other.

    • They ...

  • Answered by AI
  • Q2. What design pattern you used in your microservice>
  • Ans. 

    I used the Service Registry design pattern in my microservice.

    • Service Registry pattern is used to dynamically register and discover services in a distributed system.

    • It helps in decoupling service consumers from service providers.

    • Examples of Service Registry tools include Netflix Eureka and Consul.

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer 2 Interview Questions asked at other Companies

Q1. What microservices patterns are you aware ? let's assume that there is a microservice based architecture and service A is calling service B which in turn service C. If service b fails, how will you manage transaction and logging ?
View answer (1)

Get interview-ready with Top Wissen Technology Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

You have to solve one technical paper containing 6 questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Design Facebook Classes
  • Ans. 

    Design classes for different features of Facebook platform

    • Create a User class with attributes like name, email, password, friends list

    • Create a Post class with attributes like content, likes, comments, timestamp

    • Create a Comment class with attributes like content, user, timestamp

    • Create a Like class with attributes like user, post

    • Consider inheritance for classes like PhotoPost, VideoPost, etc.

  • Answered by AI
  • Q2. How does netflix works?
  • Ans. 

    Netflix is a streaming service that offers a wide variety of TV shows, movies, anime, documentaries, and more on thousands of internet-connected devices.

    • Netflix operates on a subscription-based model where users pay a monthly fee to access content.

    • Users can stream content on various devices such as smart TVs, smartphones, tablets, and computers.

    • Netflix uses algorithms to recommend content based on users' viewing histor...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Where do you see yourself in 5 years
  • Q2. Family background and why we should hire you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on technical aspects and be well grommed with shiny shoes.

Associate Director Interview Questions asked at other Companies

Q1. How will you manage the New location and ramp up the Resourcing as per business requirement
View answer (2)

Jobs at Wissen Technology

View all

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 28 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Excel Questions Introduced Yourself Basic Finance Questions
  • Q2. What is Vlookup What is Inflation and Deflation
  • Ans. 

    Vlookup is a function in Excel used to search for a value in a table and return a corresponding value.

    • Vlookup stands for 'Vertical Lookup'

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column

    • For example, =VLOOKUP(100, A1:B10, 2, FALSE) would search for the value 100 in column A and return the corresponding value in column B

  • Answered by AI
Round 2 - Coding Test 

Two coding questions in Pyton one medium and one hard

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

It had MCQ based Technical question

Round 2 - Technical 

(3 Questions)

  • Q1. Version of React Js
  • Ans. 

    React JS is a JavaScript library for building user interfaces.

    • React JS is maintained by Facebook.

    • It allows developers to create reusable UI components.

    • React JS uses a virtual DOM for better performance.

    • Current stable version is 17.0.2 (as of September 2021).

  • Answered by AI
  • Q2. Advantages of React Js
  • Ans. 

    React Js offers fast rendering, reusable components, virtual DOM, and easy integration with other libraries.

    • Fast rendering due to virtual DOM

    • Reusable components for efficient development

    • Easy integration with other libraries like Redux

    • Support for server-side rendering for improved SEO

    • One-way data binding for predictable data flow

  • Answered by AI
  • Q3. Hoisting, Closuers, IIF, coding questions, React Js Platform question
Round 3 - Technical 

(2 Questions)

  • Q1. What is Closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the function has finished executing.

    • Closures allow functions to maintain access to variables from their parent scope

    • They are commonly used in event handlers and callbacks

    • Closures can be used to create private variables in JavaScript

  • Answered by AI
  • Q2. React Technical Round, Debouce, Bubbling, Delegation, Promises, etc
Round 4 - Technical 

(2 Questions)

  • Q1. React Technical Machine Code
  • Q2. Map Filter Reduce Question, Custom Hook, Etc

Skills evaluated in this interview

Top Wissen Technology Software Engineer Interview Questions and Answers

Q1. How to use custom object as a key in HashMap?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Software Engineer Interview Questions & Answers

user image Krishna kanta Kandar

posted on 7 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Basic java oops and coding question

Round 2 - Technical 

(1 Question)

  • Q1. DSA and java basics
Round 3 - Technical 

(1 Question)

  • Q1. Again DSA and java advanced
Round 4 - Coding Test 

(1 Question)

  • Q1. Develop chat app
  • Ans. 

    Develop a chat app for real-time communication

    • Use WebSocket for real-time communication

    • Implement user authentication and authorization

    • Design a user-friendly interface with features like emojis and file sharing

  • Answered by AI

Skills evaluated in this interview

Top Wissen Technology Software Engineer Interview Questions and Answers

Q1. How to use custom object as a key in HashMap?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Duration was for an hour, included basic front end questions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain component lifecycle in React
  • Ans. 

    Component lifecycle in React refers to the series of methods that are invoked at different stages of a component's existence.

    • Mounting phase: constructor, render, componentDidMount

    • Updating phase: render, componentDidUpdate

    • Unmounting phase: componentWillUnmount

  • Answered by AI
  • Q2. Write a component to display a table
  • Ans. 

    A component to display a table in a software application

    • Use HTML and CSS to create the structure and styling of the table

    • Use JavaScript to populate the table with data dynamically

    • Consider adding features like sorting, filtering, and pagination for better user experience

  • Answered by AI

Skills evaluated in this interview

Top Wissen Technology Software Engineer Interview Questions and Answers

Q1. How to use custom object as a key in HashMap?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Contribute & help others!
anonymous
You can choose to be anonymous

Wissen Technology Interview FAQs

How many rounds are there in Wissen Technology interview?
Wissen Technology interview process usually has 2-3 rounds. The most common rounds in the Wissen Technology interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Wissen Technology 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 Wissen Technology. The most common topics and skills that interviewers at Wissen Technology expect are Java, Telecom, Consulting, SQL and Business Intelligence.
What are the top questions asked in Wissen Technology interview?

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

  1. Parent class has run() and walk() . Parent run() - calls walk() Child Class ov...read more
  2. 2. What will happen if hashcode only returns a constant? How will it affect the...read more
  3. How to sort a list of students on the basis of their First na...read more
How long is the Wissen Technology interview process?

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

Recently Viewed

SALARIES

ZeMoSo Technologies

SALARIES

Wissen Technology

INTERVIEWS

Jash Engineering

No Interviews

INTERVIEWS

Nielsen

No Interviews

INTERVIEWS

Jash Engineering

No Interviews

JOBS

Wissen Technology

No Jobs

SALARIES

Cavisson Systems

SALARIES

ZeMoSo Technologies

INTERVIEWS

Nielsen

No Interviews

Tell us how to improve this page.

Wissen Technology Interview Process

based on 148 interviews

Interview experience

3.7
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Wissen Technology

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
ITC Infotech Interview Questions
3.8
 • 334 Interviews
View all

Wissen Technology Reviews and Ratings

based on 414 reviews

3.8/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.7

Salary

3.7

Job security

3.6

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 414 Reviews and Ratings
Software Engineer
537 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
516 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Engineer
256 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
155 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Principal Engineer
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Wissen Technology with

Wissen Infotech

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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