Upload Button Icon Add office photos

Filter interviews by

Vitwit Interview Questions and Answers

Updated 6 Feb 2024
Popular Designations

7 Interview questions

A Software Engineer was asked
Q. Given an integer, convert it to a roman numeral.
Ans. 

Convert integer to Roman numeral representation

  • Create a mapping of integer values to Roman numeral symbols

  • Iterate through the mapping in descending order of integer values

  • Subtract the largest possible integer value from the input number and append the corresponding Roman numeral symbol

View all Software Engineer interview questions
A Software Developer was asked
Q. In Java, what is a HashMap?
Ans. 

HashMap is a class in Java that implements the Map interface and stores key-value pairs in a hash table.

  • HashMap allows null values and only one null key.

  • It provides constant-time performance for basic operations such as get and put.

  • The order of elements in a HashMap is not guaranteed.

  • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("apple", 1); map.put("banana", 2); int value = map.get(...

View all Software Developer interview questions
A Software Developer was asked
Q. Do you have any knowledge of blockchain technology?
Ans. 

Yes, I have knowledge on blockchain.

  • I have experience in developing smart contracts using Solidity.

  • I have worked on blockchain platforms like Ethereum and Hyperledger Fabric.

  • I understand the concepts of distributed ledger technology and consensus algorithms.

  • I am familiar with the security aspects of blockchain and how to prevent attacks like 51% attack.

  • I have implemented blockchain solutions for supply chain manag...

View all Software Developer interview questions
A Software Developer was asked
Q. What are hash tables?
Ans. 

Hashtables are data structures that store key-value pairs and allow for fast retrieval of values based on their keys.

  • Hashtables use a hash function to map keys to indices in an array.

  • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

  • Hashtables have an average time complexity of O(1) for insertion, deletion, and retrieval of values...

View all Software Developer interview questions
An Associate Software Engineer was asked
Q. Opps concepts in python
Ans. 

Object-oriented programming concepts in Python

  • Encapsulation: bundling data and methods together in a class

  • Inheritance: creating new classes from existing ones

  • Polymorphism: using a single interface to represent different types

  • Abstraction: hiding complex implementation details

  • Class: blueprint for creating objects

  • Object: instance of a class

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Page replacement methods in os
Ans. 

Page replacement methods are algorithms used by operating systems to decide which pages to evict from memory when a new page needs to be loaded.

  • Page replacement methods are used in virtual memory systems to manage limited physical memory.

  • The goal is to minimize the number of page faults, which occur when a requested page is not in memory.

  • Popular page replacement algorithms include FIFO (First-In, First-Out), LRU (...

View all Associate Software Engineer interview questions
A Software Developer was asked
Q. What is blockchain and applications
Ans. 

Blockchain is a decentralized, secure and transparent digital ledger that records transactions and stores data.

  • Blockchain is used in cryptocurrency transactions like Bitcoin and Ethereum.

  • It can also be used in supply chain management, voting systems, and digital identity verification.

  • Blockchain provides security through cryptography and consensus algorithms.

  • It eliminates the need for intermediaries and reduces tra...

View all Software Developer interview questions
Are these interview questions helpful?

Vitwit Interview Experiences

3 interviews found

Associate Software Engineer Interview Questions & Answers

user image Bhavana Adhikari G10 FSD

posted on 6 Feb 2024

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

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Opps concepts in python
  • Ans. 

    Object-oriented programming concepts in Python

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding complex implementation details

    • Class: blueprint for creating objects

    • Object: instance of a class

  • Answered by AI
  • Q2. OS and CN concepts
  • Q3. Python data types
  • Q4. Page replacement methods in os
  • Ans. 

    Page replacement methods are algorithms used by operating systems to decide which pages to evict from memory when a new page needs to be loaded.

    • Page replacement methods are used in virtual memory systems to manage limited physical memory.

    • The goal is to minimize the number of page faults, which occur when a requested page is not in memory.

    • Popular page replacement algorithms include FIFO (First-In, First-Out), LRU (Least...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Given 5 coding questions and 20 subject oriented questions on ComputerNetworks,Operating Systems and so on

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Interview followed by logic explanation of a coding question
  • Q2. Integer to Roman number

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Jahnavi Thota

posted on 9 Feb 2023

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

I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Sudo codes were asked to wite the output

Round 2 - Technical 

(6 Questions)

  • Q1. Intduction was asked firstly
  • Q2. Had any knowledge on blockchain
  • Ans. 

    Yes, I have knowledge on blockchain.

    • I have experience in developing smart contracts using Solidity.

    • I have worked on blockchain platforms like Ethereum and Hyperledger Fabric.

    • I understand the concepts of distributed ledger technology and consensus algorithms.

    • I am familiar with the security aspects of blockchain and how to prevent attacks like 51% attack.

    • I have implemented blockchain solutions for supply chain management...

  • Answered by AI
  • Q3. What is blockchain and applications
  • Ans. 

    Blockchain is a decentralized, secure and transparent digital ledger that records transactions and stores data.

    • Blockchain is used in cryptocurrency transactions like Bitcoin and Ethereum.

    • It can also be used in supply chain management, voting systems, and digital identity verification.

    • Blockchain provides security through cryptography and consensus algorithms.

    • It eliminates the need for intermediaries and reduces transact...

  • Answered by AI
  • Q4. In java what is hashmap
  • Ans. 

    HashMap is a class in Java that implements the Map interface and stores key-value pairs in a hash table.

    • HashMap allows null values and only one null key.

    • It provides constant-time performance for basic operations such as get and put.

    • The order of elements in a HashMap is not guaranteed.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("apple", 1); map.put("banana", 2); int value = map.get("bana...

  • Answered by AI
  • Q5. In os job shechduling algo
  • Q6. Whats are hashtables
  • Ans. 

    Hashtables are data structures that store key-value pairs and allow for fast retrieval of values based on their keys.

    • Hashtables use a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hashtables have an average time complexity of O(1) for insertion, deletion, and retrieval of values.

    • Exam...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Gud knowledge on our subjects atleast basics will help

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Vitwit?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. Oops,program on oops concepts,collection related examples. Hibernate and spring related questions
  • Q2. Logical programs String related
  • Q3. Managerial round Most of the questions asked on java, jQuery, java script and hibernate
  • Q4. Spring annotations Discussion on previous project
  • Q5. Introduction Skills related Salary discussion

Interview Questionnaire 

1 Question

  • Q1. Core java

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is Company payroll Process
  • Ans. 

    Company payroll process is the system used to manage employee compensation and benefits.

    • Payroll process includes calculating employee salaries, taxes, and deductions

    • It also involves managing employee benefits such as health insurance and retirement plans

    • Payroll process can be done in-house or outsourced to a third-party provider

    • It is important to ensure compliance with labor laws and regulations

    • Payroll process can be a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My Team members is very good

I applied via Company Website and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. .Net support related questions for example 1. What to do when applicable is down. 2. how to check IIS error logs.
  • Q2. Explain Projects you worked and your role in those.
  • Q3. Explain scenario when you handled high pressure from client.
  • Ans. 

    Handled high pressure from client by prioritizing tasks and communicating effectively.

    • Identified critical issues and addressed them first

    • Communicated regularly with the client to provide updates and manage expectations

    • Collaborated with team members to delegate tasks and ensure timely delivery

    • Maintained a calm and professional demeanor to avoid escalating the situation

  • Answered by AI
  • Q4. Explain release management.
  • Ans. 

    Release management is the process of planning, scheduling, coordinating, and deploying software releases.

    • It involves identifying the scope of the release and the features to be included

    • Creating a release plan and schedule

    • Coordinating with different teams involved in the release process

    • Testing the release to ensure it meets quality standards

    • Deploying the release to production

    • Monitoring the release to ensure it is stable...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For .Net support related projects, you need to be aware about first identifying the problem and then you need to think best optimised solution for that. You need to know how to check error logs, should be well versed with basic SQL queries and debugging.

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I interviewed here for Fidelity, so bith technical rounds were conducted by Fidelity associates. They asked me deeper as well as common questions from Power Bi and SQL query writing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer i got was very cooperative and engaging as well as appreciative.

I applied via Naukri.com and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 and spring boot
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 and spring boot Microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java 8 Spring boot and Microservices and Angular.

Vitwit Interview FAQs

How many rounds are there in Vitwit interview?
Vitwit interview process usually has 2-3 rounds. The most common rounds in the Vitwit interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Vitwit 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 Vitwit. The most common topics and skills that interviewers at Vitwit expect are Bootstrap, Html5, Javascript, UI and UX.
What are the top questions asked in Vitwit interview?

Some of the top questions asked at the Vitwit interview -

  1. What is blockchain and applicati...read more
  2. Had any knowledge on blockch...read more
  3. In java what is hash...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.9k Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
UST Interview Questions
3.8
 • 544 Interviews
CGI Group Interview Questions
4.0
 • 524 Interviews
View all

Vitwit Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
4 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Software Development Engineer
4 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Operations Manager
3 salaries
unlock blur

₹9 L/yr - ₹11 L/yr

Explore more salaries
Compare Vitwit with

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview