Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Wissen Infotech Team. If you also belong to the team, you can get access from here

Wissen Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wissen Infotech Interview Questions and Answers

Updated 26 Jun 2025
Popular Designations

30 Interview questions

A Senior Software Engineer was asked 1w ago
Q. How can you use migration mapping in the Shargate tool?
Ans. 

Migration mapping in Shargate involves defining data transformations for seamless data transfer between systems.

  • Identify source and target data structures for mapping.

  • Use Shargate's mapping interface to create transformation rules.

  • Example: Map 'firstName' from source to 'givenName' in target.

  • Test the mapping with sample data to ensure accuracy.

  • Deploy the mapping configuration for production use.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 1w ago
Q. How can you implement backend functionality using PowerShell scripts?
Ans. 

PowerShell scripts can automate backend tasks, manage servers, and interact with databases efficiently.

  • Automate server management: Use scripts to start, stop, or configure services. Example: `Stop-Service -Name 'wuauserv'`.

  • Database interaction: Use PowerShell to connect to SQL databases and execute queries. Example: `Invoke-Sqlcmd -Query 'SELECT * FROM Users'`.

  • File management: Automate file operations like copying...

View all Senior Software Engineer interview questions
A Java Developer was asked 1mo ago
Q. What is Java?
Ans. 

Java is a high-level, object-oriented programming language designed for portability, performance, and ease of use.

  • Platform-independent: Write once, run anywhere (WORA) - Java code can run on any device with a Java Virtual Machine (JVM).

  • Object-oriented: Supports concepts like inheritance, encapsulation, and polymorphism, making code reusable and modular.

  • Rich API: Provides a vast set of libraries for tasks like netw...

View all Java Developer interview questions
A Java Developer was asked 1mo ago
Q. Which collection does not allow duplicate values?
Ans. 

Java Collections like Set do not allow duplicate values, ensuring unique elements in the collection.

  • 1. Set Interface: The primary collection that prevents duplicates.

  • 2. HashSet: Implements Set, uses a hash table for storage. Example: Set<String> set = new HashSet<>();

  • 3. TreeSet: Implements Set, stores elements in a sorted order. Example: Set<Integer> treeSet = new TreeSet<>();

  • 4. LinkedHashS...

View all Java Developer interview questions
A Java Developer was asked 1mo ago
Q. What is the ASCII value of the character 'a'?
Ans. 

The ASCII value of the character 'a' is 97, which is part of the standard ASCII table used in computing.

  • ASCII stands for American Standard Code for Information Interchange.

  • Each character in the ASCII table is assigned a unique integer value.

  • For example, the ASCII value of 'A' is 65, and 'b' is 98.

  • ASCII values range from 0 to 127 for standard characters.

View all Java Developer interview questions
An Associate Engineer was asked 2mo ago
Q. What is your expected salary?
Ans. 

I expect a salary that reflects my skills and market standards, while being open to negotiation based on the company's budget.

  • Research industry standards: For example, if the average salary for an Associate Engineer in my area is $70,000, I would base my expectations around that.

  • Consider my experience: If I have relevant internships or projects, I might expect a salary on the higher end of the scale.

  • Be flexible: I...

View all Associate Engineer interview questions
A Dot Net Lead was asked 2mo ago
Q. Given an x n matrix where each cell has values 0, 1, or 2, where 0 represents an empty cell, 1 represents a non-virus cell, and 2 represents a virus cell, how many iterations are required to infect the enti...
Ans. 

Calculate iterations needed for a virus to infect all cells in a matrix of 0s, 1s, and 2s.

  • Use BFS or DFS to spread the virus from each cell with value 2.

  • Count iterations until no more cells can be infected.

  • Example: For matrix [[0,1,2],[0,0,1],[1,0,0]], it takes 3 iterations.

View all Dot Net Lead interview questions
Are these interview questions helpful?
A Network Security Engineer was asked 2mo ago
Q. What are the differences between Palo Alto and Fortigate firewalls?
Ans. 

Palo Alto and Fortigate are leading firewall solutions with distinct features and capabilities for network security.

  • Palo Alto offers advanced threat prevention with its App-ID technology, allowing granular control over applications.

  • Fortigate provides integrated security features, including antivirus and intrusion prevention, in a single appliance.

  • Palo Alto's user interface is known for its intuitive design, making...

View all Network Security Engineer interview questions
A Network Security Engineer was asked 2mo ago
Q. What is the difference between Layer 2 and Layer 3?
Ans. 

Layer 2 deals with data link protocols, while Layer 3 focuses on network routing and addressing.

  • Layer 2 (Data Link Layer) is responsible for node-to-node data transfer and error detection/correction.

  • Layer 3 (Network Layer) handles packet forwarding, including routing through different networks.

  • Examples of Layer 2 protocols include Ethernet and PPP (Point-to-Point Protocol).

  • Examples of Layer 3 protocols include IP ...

View all Network Security Engineer interview questions
A Network Security Engineer was asked 2mo ago
Q. What is the difference between stateful and stateless firewalls?
Ans. 

Stateful firewalls track active connections, while stateless firewalls filter packets based on predefined rules without connection context.

  • Stateful firewalls maintain a state table to track active connections.

  • Stateless firewalls filter packets based solely on rules without context.

  • Example of stateful: Cisco ASA, which tracks sessions and allows return traffic.

  • Example of stateless: Basic packet filtering routers th...

View all Network Security Engineer interview questions

Wissen Infotech Interview Experiences

57 interviews found

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is service account
  • Ans. 

    A service account is a special account used by a service or application to access resources on a network.

    • Service accounts are used to run services or applications with the necessary permissions and access rights.

    • Service accounts are often used in database administration to allow the database service to interact with the operating system.

    • Service accounts can be configured with specific permissions and restrictions to li...

  • Answered by AI
  • Q2. How to configure replication
  • Ans. 

    Replication can be configured by setting up a publication, creating a subscription, and initializing the subscription.

    • Set up a publication by selecting the database objects to replicate and defining the publication properties.

    • Create a subscription by specifying the subscriber server, database, and synchronization schedule.

    • Initialize the subscription by generating a snapshot of the publication and applying it to the sub...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is different between truncate and delete
  • Ans. 

    Truncate is faster and cannot be rolled back, while delete is slower and can be rolled back.

    • Truncate is a DDL command, while delete is a DML command.

    • Truncate removes all rows from a table, while delete removes specific rows based on a condition.

    • Truncate resets identity column values, while delete does not.

    • Truncate cannot be used with a WHERE clause, while delete can.

    • Truncate is faster than delete as it does not log ind...

  • Answered by AI
  • Q2. Tell me about team dynamics
  • Ans. 

    Team dynamics refer to the interactions and relationships among team members that impact team performance and effectiveness.

    • Effective communication is key for successful team dynamics

    • Establishing clear roles and responsibilities helps avoid conflicts

    • Encouraging collaboration and mutual respect fosters a positive team environment

  • Answered by AI

Skills evaluated in this interview

Safety Science Analyst Interview Questions & Answers

user image shubham jagatap

posted on 26 Jun 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Previous experience
  • Q2. Salary expectation
  • Q3. Interested For pg
  • Q4. Address details
  • Q5. What was your father do
  • Ans. 

    My father was a dedicated engineer, specializing in safety systems for industrial applications, ensuring workplace safety and efficiency.

    • He worked on designing safety protocols for manufacturing plants.

    • He implemented risk assessment strategies to minimize workplace hazards.

    • He collaborated with teams to develop emergency response plans.

    • He conducted training sessions for employees on safety practices.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics questions of PV
  • Q2. What is ADR, difference between ADE and ADR
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is the ASCII value of the character 'a'?
  • Ans. 

    The ASCII value of the character 'a' is 97, which is part of the standard ASCII table used in computing.

    • ASCII stands for American Standard Code for Information Interchange.

    • Each character in the ASCII table is assigned a unique integer value.

    • For example, the ASCII value of 'A' is 65, and 'b' is 98.

    • ASCII values range from 0 to 127 for standard characters.

  • Answered by AI
  • Q2. Which collection does not allow duplicate values?
  • Ans. 

    Java Collections like Set do not allow duplicate values, ensuring unique elements in the collection.

    • 1. Set Interface: The primary collection that prevents duplicates.

    • 2. HashSet: Implements Set, uses a hash table for storage. Example: Set<String> set = new HashSet<>();

    • 3. TreeSet: Implements Set, stores elements in a sorted order. Example: Set<Integer> treeSet = new TreeSet<>();

    • 4. LinkedHashSet: M...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Common java and core java questions and selenium
  • Q2. Mostly asked api resr assured question

Java Developer Interview Questions & Answers

user image Mudimudugu Praveen Kumar

posted on 17 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Tell me about your self
  • Q2. Why do you join in this company
  • Q3. What is java

Dot Net Lead Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2025

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Coding round which will shared a online link on chat ,you are given an x n matrix each cell have 0,1,2 valus ,you have say o represents empty cell,1 represent non virus ,2 represent virus ,you have to writ...
  • Ans. 

    Calculate iterations needed for a virus to infect all cells in a matrix of 0s, 1s, and 2s.

    • Use BFS or DFS to spread the virus from each cell with value 2.

    • Count iterations until no more cells can be infected.

    • Example: For matrix [[0,1,2],[0,0,1],[1,0,0]], it takes 3 iterations.

  • Answered by AI
  • Q2. Basic routing and thread pooling
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Difference between layer2 and layer3?
  • Ans. 

    Layer 2 deals with data link protocols, while Layer 3 focuses on network routing and addressing.

    • Layer 2 (Data Link Layer) is responsible for node-to-node data transfer and error detection/correction.

    • Layer 3 (Network Layer) handles packet forwarding, including routing through different networks.

    • Examples of Layer 2 protocols include Ethernet and PPP (Point-to-Point Protocol).

    • Examples of Layer 3 protocols include IP (Inte...

  • Answered by AI
  • Q2. Difference between statefull and stateless firewall ?
  • Ans. 

    Stateful firewalls track active connections, while stateless firewalls filter packets based on predefined rules without connection context.

    • Stateful firewalls maintain a state table to track active connections.

    • Stateless firewalls filter packets based solely on rules without context.

    • Example of stateful: Cisco ASA, which tracks sessions and allows return traffic.

    • Example of stateless: Basic packet filtering routers that bl...

  • Answered by AI
  • Q3. Difference between palo alto and fortigate ?
  • Ans. 

    Palo Alto and Fortigate are leading firewall solutions with distinct features and capabilities for network security.

    • Palo Alto offers advanced threat prevention with its App-ID technology, allowing granular control over applications.

    • Fortigate provides integrated security features, including antivirus and intrusion prevention, in a single appliance.

    • Palo Alto's user interface is known for its intuitive design, making it e...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Greate place to work
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2022. There was 0 interview round.

  • Q1. What is situation you faced as a big challenge
  • Ans. 

    I faced a major challenge when a critical system outage occurred, impacting multiple users and requiring swift resolution.

    • Identified the issue quickly by analyzing system logs and user reports.

    • Coordinated with the IT team to implement a temporary workaround while investigating the root cause.

    • Communicated regularly with affected users to keep them informed and manage expectations.

    • Documented the incident thoroughly for f...

  • Answered by AI
  • Q2. Bad question and bad quality
  • Q3. Know about ourselves

Interview Preparation Tips

Interview preparation tips for other job seekers - Please dont select the company

Front end Developer Interview Questions & Answers

user image Ashwini Kokate

posted on 11 Dec 2024

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

All maths questions and coding questions

Round 2 - Coding Test 

Array problems, agular basic, JS snippets

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Wissen Infotech?
Ask anonymously on communities.

Wissen Infotech Interview FAQs

How many rounds are there in Wissen Infotech interview?
Wissen Infotech interview process usually has 2-3 rounds. The most common rounds in the Wissen Infotech interview process are Technical, HR and Resume Shortlist.
How to prepare for Wissen Infotech 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 Infotech. The most common topics and skills that interviewers at Wissen Infotech expect are Java, SQL, Multithreading, Microservices and Python.
What are the top questions asked in Wissen Infotech interview?

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

  1. What is React? Why do we use it? Make a form with 3 different child components ...read more
  2. coding round which will shared a online link on chat ,you are given an x n matr...read more
  3. How many max and min approvals required in release pipel...read more
How long is the Wissen Infotech interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 48 interview experiences

Difficulty level

Easy 32%
Moderate 64%
Hard 4%

Duration

Less than 2 weeks 63%
2-4 weeks 26%
4-6 weeks 7%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
Cybage Interview Questions
3.8
 • 201 Interviews
ValueLabs Interview Questions
3.7
 • 198 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
3i Infotech Interview Questions
3.4
 • 151 Interviews
View all

Wissen Infotech Reviews and Ratings

based on 566 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.5

Salary

3.4

Job security

3.6

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 566 Reviews and Ratings
Job Opportunity : Oracle HCM Payroll Functional : Bangalore/ Hyd

Hyderabad / Secunderabad,

Bangalore / Bengaluru

7-10 Yrs

Not Disclosed

Job Opportunity - SOA Architect - Bangalore/Hyderabad - Hybrid mode !!

Hyderabad / Secunderabad,

Bangalore / Bengaluru

9-14 Yrs

₹ 25-30 LPA

Senior Java Developer

Bangalore / Bengaluru,

Mumbai

4-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
421 salaries
unlock blur

₹5.1 L/yr - ₹12.5 L/yr

Senior Software Engineer
273 salaries
unlock blur

₹11.7 L/yr - ₹20.2 L/yr

Junior Software Engineer
243 salaries
unlock blur

₹2.8 L/yr - ₹6.2 L/yr

Associate Software Engineer
207 salaries
unlock blur

₹4 L/yr - ₹8.7 L/yr

Lead Engineer
96 salaries
unlock blur

₹22.1 L/yr - ₹38.8 L/yr

Explore more salaries
Compare Wissen Infotech with

Wissen Technology

3.8
Compare

ITC Infotech

3.7
Compare

Cybage

3.8
Compare

3i Infotech

3.4
Compare
write
Share an Interview