i
Wissen
Technology
Filter interviews by
A project to maintain shopping list
Create a class or data structure to store items in the shopping list
Implement functions to add, remove, and update items in the list
Include functionality to mark items as purchased
Allow users to view the entire list or filter by category
Consider adding a feature to set reminders for shopping trips
Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.
Dependency injection helps in achieving loose coupling between classes.
It allows for easier testing by providing a way to mock dependencies.
There are three types of dependency injection - constructor injection, setter injection, and interface injection.
Merge two sorted lists with n+m complexity
Create a new list to store the merged result
Iterate through both lists simultaneously and compare elements
Add the smaller element to the new list and move to the next element in that list
Continue until all elements from both lists are merged
Use Observer design pattern to track count of hashmap inserts
Implement an Observer interface with update method to track changes in the hashmap
Create a concrete observer class to keep track of the count of inserts
Register the observer with the hashmap to receive notifications on inserts
Internal implementation of hashmap involves an array of linked lists to handle collisions.
HashMap internally uses an array of linked lists to store key-value pairs.
When a key is inserted, its hash code is used to determine the index in the array where it should be stored.
If two keys have the same hash code, they are stored in the same linked list to handle collisions.
HashMap uses the key's hash code and equals met...
Immutable class is a class whose state cannot be modified after creation.
Make all fields private and final
Do not provide setter methods
Ensure deep copy of mutable objects in constructor and getter methods
The 2 Sum problem involves finding two numbers in an array that add up to a specific target sum.
Use a hash map to store numbers and their indices for O(1) lookups.
Iterate through the array, for each number, check if (target - number) exists in the hash map.
Example: For nums = [2, 7, 11, 15] and target = 9, return indices [0, 1] since 2 + 7 = 9.
Time complexity is O(n) and space complexity is O(n) due to the hash ma...
SQL questions assess your database knowledge and ability to manipulate data effectively.
Understand basic SQL commands: SELECT, INSERT, UPDATE, DELETE.
Know how to use JOINs to combine data from multiple tables. Example: SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id;
Be familiar with aggregate functions like COUNT, SUM, AVG. Example: SELECT COUNT(*) FROM users;
Practice writing subqueries an...
Find the maximum sum of a contiguous subarray within an array of integers.
Use Kadane's algorithm to find the maximum sum subarray efficiently.
Iterate through the array and keep track of the maximum sum ending at each index.
Reset the sum to 0 if it becomes negative, as a negative sum will never contribute to the maximum sum.
Call, apply, and bind are methods in JavaScript used to set the context of a function and pass arguments.
Call - invokes a function with a specified 'this' value and arguments provided individually.
Apply - invokes a function with a specified 'this' value and arguments provided as an array.
Bind - creates a new function that, when called, has its 'this' keyword set to the provided value.
I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.
Merge two sorted lists with n+m complexity
Create a new list to store the merged result
Iterate through both lists simultaneously and compare elements
Add the smaller element to the new list and move to the next element in that list
Continue until all elements from both lists are merged
Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.
Dependency injection helps in achieving loose coupling between classes.
It allows for easier testing by providing a way to mock dependencies.
There are three types of dependency injection - constructor injection, setter injection, and interface injection.
The n+1 problem in Hibernate occurs when a query results in multiple individual queries being executed for each row fetched.
Occurs when a query fetches a collection and then for each element in the collection, another query is executed to fetch related data
Can be resolved by using fetch joins or batch fetching to reduce the number of queries
Improves performance by reducing the number of database round trips
The code is given to you and you have to solve it
SQL questions assess your database knowledge and ability to manipulate data effectively.
Understand basic SQL commands: SELECT, INSERT, UPDATE, DELETE.
Know how to use JOINs to combine data from multiple tables. Example: SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id;
Be familiar with aggregate functions like COUNT, SUM, AVG. Example: SELECT COUNT(*) FROM users;
Practice writing subqueries and usi...
Medium to hard question
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...
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...
I appeared for an interview in Jan 2025.
Candle problem
Multiple choice questions
Non Repeating characters
I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.
Two simple coding questions were asked.
One multithreading questions was asked and few theoretical questions.
I applied via Naukri.com and was interviewed in Dec 2023. There were 5 interview rounds.
Angular assignment
1. Using angular framework implement Login functionality
I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.
6 Objective Questions, 2 Java Coding Question, One Sql query Question 1. Coding: Problem on Josephus Range Game, 2. Coding: Unequal Equal segments.
A program to split an array of strings into smaller arrays based on a given split size.
Iterate through the array and create a new subarray every split size elements
Use array slicing or a loop to extract the subarrays
Handle cases where the split size is larger than the array length
Program to flatten multi dimension Object[] array to Integer[]
Use recursion to iterate through the array and flatten each element
Check if each element is an array or an integer
If it's an array, recursively flatten it
If it's an integer, add it to the result array
I applied via Walk-in and was interviewed in Jul 2023. There were 4 interview rounds.
First round was a coding test on hackerearth. 5 objective, 2 coding and 1 sql question was there. Questions were easy.
Split an array into subarrays with a maximum of k elements each.
Iterate through the array and create subarrays of size k.
Use a loop to slice the array into chunks of size k.
Example: For array [1, 2, 3, 4, 5] and k=2, output is [[1, 2], [3, 4], [5]].
Edge cases: If k is 0, return an empty list. If array is empty, return an empty list.
Sort a list of cards based on their rank and suit.
Create a custom sorting function that first sorts by rank and then by suit
Use a comparison function to compare ranks and suits of each card
Example: ['2H', '3D', '10S', 'AH', '4C'] should be sorted as ['2H', '3D', '4C', '10S', 'AH']
Yes, user-defined classes can be used as keys in a hashmap by overriding equals() and hashCode() methods.
Override equals() method to define equality based on class attributes.
Override hashCode() method to return a consistent hash code for the object.
Example: For a class 'Person', use 'name' and 'id' for equality and hash code.
Ensure that if two objects are equal, they must have the same hash code.
Top trending discussions
Some of the top questions asked at the Wissen Technology Senior Software Engineer interview -
The duration of Wissen Technology Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 17 interview experiences
Difficulty level
Duration
based on 71 reviews
Rating in categories
Software Engineer
837
salaries
| ₹9.3 L/yr - ₹20 L/yr |
Senior Software Engineer
735
salaries
| ₹9 L/yr - ₹36 L/yr |
Principal Engineer
334
salaries
| ₹16 L/yr - ₹45 L/yr |
Associate Software Engineer
155
salaries
| ₹9 L/yr - ₹16 L/yr |
Software Developer
149
salaries
| ₹8.5 L/yr - ₹26.5 L/yr |
Wissen Infotech
ITC Infotech
CMS IT Services
KocharTech