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
3.9

based on 471 Reviews

Filter interviews by

Wissen Technology Software Developer Interview Questions, Process, and Tips

Updated 3 Nov 2024

Top Wissen Technology Software Developer Interview Questions and Answers

View all 13 questions

Wissen Technology Software Developer Interview Experiences

17 interviews found

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

Hackearth online coding test for 1 hour

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question and output questions
  • Q2. Find k largest element in an array
  • Ans. 

    Use sorting or heap data structure to find k largest elements in an array of strings.

    • Sort the array in descending order and return the first k elements.

    • Use a max heap data structure to efficiently find the k largest elements.

    • Examples: ['apple', 'banana', 'orange', 'kiwi'], k=2 -> ['orange', 'kiwi']

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Create a Set to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the unique strings

  • Answered by AI
  • Q2. Output related questions on student class object

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

6 question , 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question ds min platforms
  • Q2. SQL question students table

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1st Round was Written Coding test Q> Next Palindrome, Q> ATM machine design Q> SQl query Q> Elephant and banana Prime number Story base question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Find the Next Palindrome
  • Ans. 

    A program to find the next palindrome number after a given number.

    • Convert the given number to a string to easily manipulate individual digits.

    • Increment the number by 1 and check if it is a palindrome.

    • If not a palindrome, repeat the process until a palindrome is found.

  • Answered by AI
  • Q2. Prime number optimisation and why ?
  • Ans. 

    Optimizing prime number algorithms is crucial for efficient computation in software development.

    • Optimizing prime number algorithms can improve the performance of applications that rely on prime numbers, such as cryptography or number theory.

    • Efficient algorithms like the Sieve of Eratosthenes can significantly reduce the time complexity of finding prime numbers.

    • Using techniques like memoization or dynamic programming ca...

  • Answered by AI

Skills evaluated in this interview

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

Wissen Technology interview questions for designations

 Senior Software Developer

 (4)

 Software Developer Intern

 (2)

 Java Software Developer

 (2)

 Python Software Developer

 (1)

 Software Engineer

 (18)

 Software Tester

 (1)

 Java Developer

 (22)

 Angular Developer

 (2)

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

Get interview-ready with Top Wissen Technology Interview Questions

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. I was asked kodane's algorithm and coding question which I had to solve using java 8 and two SQL questions which had essence of group by.
Round 2 - One-on-one 

(1 Question)

  • Q1. They had immediate requirement so they wanted someone who can join within 15 days.I said that is not possible so no further interview.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Had given 2 java question which one is medium and other one was easy.

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Circular linked list question
  • Q2. SQL, dbms, oops connector basic question
  • Q3. What is abstraction and encapsulation
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information. Encapsulation is bundling data and methods that operate on the data into a single unit.

    • Abstraction focuses on what an object does rather than how it does it

    • Encapsulation restricts access to some of an object's components, protecting the object's integrity

    • Abstraction allows for easier maintenance and modificat...

  • Answered by AI
  • Q4. Primary key, difference between primary key and super key
  • Ans. 

    Primary key uniquely identifies a record in a table, while super key is a set of attributes that can uniquely identify a record.

    • Primary key is a subset of super key

    • Primary key cannot have NULL values, while super key can

    • Example: In a table 'Employee', 'EmployeeID' can be a primary key as it uniquely identifies each employee record, while 'EmployeeID, DepartmentID' can be a super key

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear in DBMS and SQL, solve medium level question of leetcode

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Yash Manchanda

posted on 20 Apr 2024

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

(2 Questions)

  • Q1. DSA Medium level
  • Q2. Leetcode easy to medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you answer

Wissen Technology Interview FAQs

How many rounds are there in Wissen Technology Software Developer 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 Software Developer 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 Design Patterns, Java, Linux, RDBMS and Unix.
What are the top questions asked in Wissen Technology Software Developer interview?

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

  1. design a deck of card and tell who is the higher bid...read more
  2. Primary key, difference between primary key and super ...read more
  3. Print prime numbers, implement linked list, perform binary search on ar...read more
How long is the Wissen Technology Software Developer interview process?

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

Tell us how to improve this page.

Wissen Technology Software Developer Interview Process

based on 20 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
View more
Wissen Technology Software Developer Salary
based on 89 salaries
₹5.9 L/yr - ₹22.5 L/yr
60% more than the average Software Developer Salary in India
View more details

Wissen Technology Software Developer Reviews and Ratings

based on 25 reviews

4.4/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

3.9

Salary

4.4

Job security

4.2

Company culture

4.0

Promotions

4.1

Work satisfaction

Explore 25 Reviews and Ratings
Senior Software Engineer
526 salaries
unlock blur

₹9 L/yr - ₹35 L/yr

Software Engineer
518 salaries
unlock blur

₹5.5 L/yr - ₹23.5 L/yr

Principal Engineer
244 salaries
unlock blur

₹16 L/yr - ₹41 L/yr

Associate Software Engineer
153 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Senior Principal Engineer
122 salaries
unlock blur

₹22.5 L/yr - ₹48 L/yr

Explore more salaries
Compare Wissen Technology with

Wissen Infotech

3.8
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