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

Software Engineer Interview Questions & Answers

user image Rishabh Singh

posted on 23 Dec 2024

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

Coding test with 2 questions

Round 2 - Technical 

(1 Question)

  • Q1. Best time buy and sell stocks

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic Data Structure and Algorithms questions

Round 2 - Technical 

(2 Questions)

  • Q1. Trapping Rainwater
  • Q2. Asteroid Collisions

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Wissen Technology Interview Questions and Answers for Freshers
illustration image
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Aptitude Test 

Java coding questions and mcq

Round 2 - Technical 

(1 Question)

  • Q1. Java basics and oops

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is the contract between hashCode and equals method?
  • Ans. 

    The contract between hashCode and equals method is that if two objects are equal according to the equals method, then their hash codes must also be equal.

    • hashCode and equals method must be consistent - if two objects are equal according to equals method, their hash codes must be equal

    • If two objects have the same hash code, they may or may not be equal according to equals method

    • Overriding equals method in a class requir...

  • Answered by AI
  • Q2. Features introduced in Java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods in interfaces.

    • Lambda expressions allow you to pass functions as arguments.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements.

    • Default methods allow interfaces to have method implementations.

  • Answered by AI
  • Q3. What are the ways to start a thread
  • Ans. 

    Ways to start a thread in Java

    • Extending the Thread class and overriding the run() method

    • Implementing the Runnable interface and passing it to a Thread object

    • Using a thread pool from the Executors class

  • Answered by AI
  • Q4. What will happen if you start a thread which is already running
  • Ans. 

    The thread will continue running as it is already active

    • The thread will not be started again if it is already running

    • Attempting to start a thread that is already running will not have any effect

    • The thread will continue its execution without any interruption

  • Answered by AI
  • Q5. Explain about the join and sleep method
  • Ans. 

    Join method is used to wait for a thread to finish its execution, while sleep method is used to pause the execution of a thread for a specified amount of time.

    • Join method is used to wait for a thread to finish its execution before moving on to the next task.

    • Sleep method is used to pause the execution of a thread for a specified amount of time, allowing other threads to run.

    • Example: thread1.join() will wait for thread1 ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just listen to a lot of mock interview or original interview videos to get a hang of how an interview will be and even to check your knowledge and recall the things which you have learned.

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

MIS Executive Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and experienced MIS Executive with a strong background in data analysis and reporting.

    • Over 5 years of experience in managing and analyzing data for decision-making purposes

    • Proficient in using various MIS tools and software such as Excel, SQL, and Tableau

    • Strong communication skills to effectively collaborate with cross-functional teams

    • Proven track record of improving operational efficiency through data-

  • Answered by AI

MIS Executive Interview Questions asked at other Companies

Q1. HOW TO CREATING PIVOT TABLE IN EXCEL. HOW MANY PIVOT TABLES YOU WAS USING ON YOUR PREVIOUS ORGANISATION.
View answer (4)

Get interview-ready with Top Wissen Technology Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is lifecycle hook of Angular
  • Ans. 

    Lifecycle hooks in Angular are methods that allow you to tap into the lifecycle of a component or directive.

    • Lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

    • ngOnInit is used to initialize data in a component after Angular has initialized the component.

    • ngOnChanges is called when the input properties of a component change.

    • ngDoCheck is used for detecting and acting on changes that Angular doesn't...

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

Jobs at Wissen Technology

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

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

Round 1 - Coding Test 

2 dsa questions and 1 sql question in hackerearth.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked to check pallindrome or noit
  • Q2. Design a deck of card and tell who is the higher bidder
  • Ans. 

    Design a deck of cards and determine the higher bidder

    • Design a deck of 52 cards with 4 suits (hearts, diamonds, clubs, spades) and 13 ranks (2-10, J, Q, K, A)

    • Assign a value to each rank (e.g. 2 = 2, 3 = 3, ..., J = 11, Q = 12, K = 13, A = 14)

    • Determine the higher bidder based on the rules of the game being played (e.g. highest card wins, poker hand rankings, etc.)

  • Answered by AI

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)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium to hard question

Round 2 - Technical 

(1 Question)

  • Q1. Core java and dsa algorithm
  • Ans. 

    Core Java is a fundamental programming language used for developing software applications. DSA algorithms are essential for efficient problem-solving.

    • Core Java is used for developing software applications and is based on the Java programming language.

    • DSA algorithms are data structures and algorithms used for efficient problem-solving.

    • Examples of DSA algorithms include sorting algorithms like Bubble Sort and searching a

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Core java and dsa problems
Round 4 - One-on-one 

(1 Question)

  • Q1. Dsa problems and system design
  • Ans. 

    DSA problems involve solving algorithmic challenges, while system design involves designing scalable and efficient software systems.

    • Practice solving DSA problems on platforms like LeetCode, HackerRank, or CodeSignal.

    • Study common data structures and algorithms like arrays, linked lists, trees, sorting algorithms, and searching algorithms.

    • For system design, focus on scalability, reliability, performance, and maintainabil...

  • Answered by AI

Skills evaluated in this interview

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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Questions related to HashMap and it's internal working and medium level difficulty DSA questions

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Spark Scala Questions
  • Q2. SQL window function question
Round 2 - Technical 

(2 Questions)

  • Q1. Advanced Spark Scala Question
  • Q2. SQL + Python Question
Round 3 - Technical 

(2 Questions)

  • Q1. Python Questions with an optimized solution
  • Q2. More to the basics of DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be logical, problem solving skills are tested.

Lead Data Engineer Interview Questions asked at other Companies

Q1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by the values in column 'A' and calculate the mean of column 'B' for each group, while also summing the values in column 'C' ?
View answer (1)
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

JOBS

Wissen Technology

No Jobs

SALARIES

Cavisson Systems

SALARIES

ZeMoSo Technologies

INTERVIEWS

Nielsen

No Interviews

SALARIES

Wissen Technology

INTERVIEWS

Nielsen

No Interviews

INTERVIEWS

Nielsen

No Interviews

JOBS

Jash Engineering

No Jobs

INTERVIEWS

Cavisson Systems

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