Upload Button Icon Add office photos
Engaged Employer

i

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

Witnovus Verified Tick

Compare button icon Compare button icon Compare
-

No reviews yet

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

Witnovus Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Job Portal

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. 1. Brief about yourself. 2. What is collection library in python 3. Can a list be key of dictionary in python 4. What is difference between load balancer and api gateway 5. What is primary and secondary ...
  • Q2. Write a code to filter anagram
  • Ans. 

    Code to filter anagram from an array of strings

    • Create a dictionary to store sorted strings as keys and original strings as values

    • Iterate through the array of strings and sort each string to check for anagrams

    • Return the values of the dictionary to get the filtered anagrams

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics and be cool

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Arya College of Engineeringg, Jaipur and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test contain mix question from computer fundamentals and aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Find the leaf node of the binary tree
  • Ans. 

    A leaf node in a binary tree is a node that does not have any children.

    • Traverse the binary tree and check if a node has no left or right child, then it is a leaf node.

    • Example: In the binary tree 1 -> 2, 3 -> 4, 5, 6 -> 7, 8, the leaf nodes are 4, 5, 7, 8.

  • Answered by AI
  • Q2. Check if the given linked list contain loop
  • Ans. 

    Check if a linked list contains a loop by using Floyd's cycle detection algorithm.

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the two pointers will eventually meet

    • Example: 1->2->3->4->5->2 (loop at 2)

  • Answered by AI
  • Q3. Find the fist non repeating element in string
  • Ans. 

    Find the first non-repeating element in a string

    • Create a frequency map of characters in the string

    • Iterate through the string and check the frequency of each character

    • Return the first character with frequency 1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study oops, dsa, core computer subjects and good knowledge about project

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic mathematical questions and aptitude test

Round 2 - Coding Test 

MCQ question on programming language and advance level of mathematical questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Ask to write program on the perferable language
  • Q2. Ask question on the dsa and oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to have a experience and assessment in moderate

I applied via Apna Jobs and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is VPN virtual private network?
  • Ans. 

    VPN is a secure connection between two or more devices over the internet.

    • VPN encrypts data to ensure privacy and security

    • It allows remote access to a private network

    • It can be used to bypass geo-restrictions and access blocked content

    • Examples include OpenVPN, Cisco AnyConnect, and NordVPN

  • Answered by AI
  • Q2. Specifications about ping cmd
  • Ans. 

    Ping cmd is a network diagnostic tool used to test connectivity between two devices.

    • Ping sends ICMP packets to the destination device and measures the response time.

    • It can be used to test network latency, packet loss, and network congestion.

    • Ping can also be used to determine the IP address of a device.

    • Ping can be run from the command prompt on Windows, macOS, and Linux systems.

    • Ping can be used with various options such...

  • Answered by AI
  • Q3. Explain how to dual boot system
  • Ans. 

    Dual booting allows two operating systems to be installed on one computer, giving the user the option to choose which to use.

    • Create a separate partition for each operating system

    • Install the first operating system on one partition

    • Install the second operating system on the other partition

    • Use a boot manager to choose which operating system to boot into

    • Examples of boot managers include GRUB and Windows Boot Manager

  • Answered by AI
  • Q4. What is virtual machine
  • Ans. 

    A virtual machine is a software emulation of a physical computer that can run multiple operating systems and applications.

    • Virtual machines allow for efficient use of hardware resources by sharing them among multiple virtual machines

    • They provide a secure and isolated environment for running applications

    • Virtual machines can be easily created, cloned, and moved between physical hosts

    • Examples of virtual machine software in

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Incture Technologies System Engineer interview:
  • System Administration
  • SAP
Interview preparation tips for other job seekers - Be theoretically prepared for interview, must of the question was theoretically

Skills evaluated in this interview

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

There were 48 questions to be done in 60 minutes.
the platform used was below average.
about 1400 gave the test

Round 3 - Group Discussion 

The Next round was a GD.
about 250 were shortlisted.
it was held in groups of 10 - 13.
there were 2 Panelists observing the body language, the fluency and time you speak for.
It is very important that you either start or conclude the GD.
leaves a good impression.

Round 4 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. What is Data Analysis?
  • Ans. 

    Data analysis is the process of inspecting, cleaning, transforming, and modeling data to discover useful information.

    • It involves collecting and organizing data

    • It includes statistical analysis and visualization

    • It helps in making informed decisions

    • Examples include market research, financial analysis, and scientific research

  • Answered by AI
  • Q3. SQL Queries using Joins and sub-queries
  • Ans. 

    SQL Queries using Joins and sub-queries

    • Joins are used to combine rows from different tables based on a related column

    • Sub-queries are queries nested within another query

    • Joins and sub-queries can be used together to retrieve specific data from multiple tables

  • Answered by AI
  • Q4. Many questions about projects mentioned in the resume.
  • Q5. Estimation and probability questions were asked to see the way you approach a question logically.
Round 5 - HR 

(4 Questions)

  • Q1. Tell me about Yourself
  • Q2. Again Questions based on resumes
  • Q3. Some Regular HR Questions like why latent view, where to do you yourself in 5 years.....etc.
  • Q4. Any questions for me?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with your Resume.
Make your resume based on Data Analytics.
SQL and basics of python are the expected questions with some probability and logical questions.

Skills evaluated in this interview

I applied via campus placement at Mangayarkarasi Arts and Science College for Women, Madurai and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Do you like this work mam?
  • Q2. I start my work mam?
Round 2 - Technical 

(2 Questions)

  • Q1. Our company is giving our correct salary mam?
  • Q2. What keeping our company in you mam?
Round 3 - HR 

(4 Questions)

  • Q1. How to start my work mam
  • Q2. Do you like this job mam?
  • Q3. Our company is giving our correct salary
  • Q4. How to our office surroundings sir?

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe your self job seekers.do or die is a hitler policy.my policy is also do or die thankyou

I applied via Campus Placement and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Core java, multi-threading, Strings, Exception

Round 2 - Technical 

(1 Question)

  • Q1. Core java, jdbc, SQL, Collection
Round 3 - Technical 

(1 Question)

  • Q1. Core Java, advance java, Multi threading, Exception, Collection, Sql
Round 4 - HR 

(1 Question)

  • Q1. Introduction, About Company, Previous Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on core java, Exception, Collection, Multi-Threading

I applied via Approached by Company and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Basics questions about background and qualification.
Round 3 - Case Study 

Assignments which is based on hypothetical conditions but you can take help of of google

Round 4 - One-on-one 

(1 Question)

  • Q1. Technical questions and some deep conversation on previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be smart, prepare in advance, study a lot and be comfortable

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Educational and Family background
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Retention Rate? How to retain the talent in organisation?
  • Q2. Write termination letter to an employee for their performance issue.

Interview Preparation Tips

Topics to prepare for Webkul Software HR Executive interview:
  • Human resource management
Interview preparation tips for other job seekers - Just be confident, good knowledge of HR background should be there, good communication skills .

I applied via Telegram and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Was taken on firefox Brower and was easy

Round 3 - Coding Test 

Very basic questions like swap numbers etc

Round 4 - Technical 

(3 Questions)

  • Q1. Basic questions on cpp
  • Q2. Opps concept like encapsulation etc
  • Q3. Write a code to reverse a string
  • Ans. 

    Code to reverse a string

    • Create an empty string to store the reversed string

    • Loop through the original string from end to start

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was not held on time, There was very long waiting time.
Was very rude to talk to and didn't communicate well enough.

Witnovus Interview FAQs

How to prepare for Witnovus 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 Witnovus. The most common topics and skills that interviewers at Witnovus expect are Analytics, Business Solutions, Digital Marketing, Ajax and Architecture.

Tell us how to improve this page.

Interview Questions from Similar Companies

MAQ Software Interview Questions
2.0
 • 95 Interviews
Webkul Software Interview Questions
3.7
 • 50 Interviews
Softenger Interview Questions
4.2
 • 50 Interviews
DataMetica Interview Questions
3.6
 • 43 Interviews
View all
Flutter Developer

Rajkot

1-2 Yrs

Not Disclosed

iOS Developer

Rajkot

1-2 Yrs

Not Disclosed

Android Developer

Rajkot

1-2 Yrs

Not Disclosed

Explore more jobs
Compare Witnovus with

Tekwissen

4.9
Compare

Collabera Technologies

3.5
Compare

Softenger

4.2
Compare

XcelServ Solutions

4.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview