Upload Button Icon Add office photos

Filter interviews by

Vieva InTech Software Developer Interview Questions and Answers

Updated 24 Dec 2024

Vieva InTech Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image ankit dhonde

posted on 24 Dec 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions.

Round 2 - Coding Test 

Basic SQL Test and Assignment given

Round 3 - One-on-one 

(2 Questions)

  • Q1. About yourself and family
  • Q2. Coding Skills and deprication test

Interview questions from similar companies

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

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

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

Two sum problem DSA fromleetcode

Round 2 - Technical 

(3 Questions)

  • Q1. Event Loop, how does event loop work.
  • Q2. Lib UV, explain the function of libuv
  • Ans. 

    Libuv is a multi-platform support library with a focus on asynchronous I/O.

    • Provides event loop, networking, and file system access APIs

    • Supports asynchronous operations for handling I/O events efficiently

    • Used in Node.js for handling non-blocking I/O operations

  • Answered by AI
  • Q3. Async programming in JS
  • Ans. 

    Async programming in JS allows for non-blocking operations, improving performance and user experience.

    • Use async/await to write asynchronous code in a synchronous manner

    • Promises are a common way to handle asynchronous operations

    • Callbacks can also be used for async programming, but can lead to callback hell

    • Utilize setTimeout and setInterval for delayed and repeated tasks

  • Answered by AI

Skills evaluated in this interview

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

MCQ test consisting of 70 mcqs in 75 minutes from aptitude english and cs fundamentals. If cleared next paper 2 coding qs medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Two sum leetcode problem
  • Q2. What problems you faced in your project
  • Ans. 

    I faced challenges with integrating third-party APIs and debugging complex logic.

    • Difficulty in understanding and implementing third-party APIs

    • Issues with data synchronization between different systems

    • Troubleshooting complex logic errors

    • Managing dependencies and version conflicts

    • Time constraints affecting problem-solving

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Functional interface
  • Q2. Find if array of numbers, which are prime, using streams
  • Ans. 

    Use streams to find prime numbers in an array

    • Use Java streams to filter out non-prime numbers from the array

    • Check if a number is prime by dividing it by all numbers less than its square root

    • Create a method to check if a number is prime

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics, functional interfaces, REST security

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dependency injection
  • Q2. What are oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to explore new technologies and challenges in a different industry.

    • Interested in learning new skills and technologies

    • Seeking new challenges and opportunities for growth

    • Want to explore different industry perspectives

  • Answered by AI
  • Q2. Salry expectations
Round 2 - Technical 

(2 Questions)

  • Q1. Question on oop concepts
  • Q2. Coding questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Technical questions on firstround
  • Q2. Logging System explanations about splunk
  • Ans. 

    Splunk is a powerful logging system used for collecting, indexing, and analyzing machine-generated data.

    • Splunk is used for real-time monitoring, searching, and analyzing log data from various sources.

    • It can be used to troubleshoot issues, monitor system performance, and detect security threats.

    • Splunk allows users to create custom dashboards and reports for visualizing data insights.

    • It supports a wide range of data sour...

  • Answered by AI
  • Q3. Microservices Architecture explanation
  • Ans. 

    Microservices architecture is an approach to software development where a single application is composed of small, independent services that communicate with each other through APIs.

    • Each service is responsible for a specific function or feature of the application

    • Services are loosely coupled, allowing for easier scalability and maintenance

    • Communication between services is typically done through lightweight protocols lik...

  • Answered by AI
  • Q4. Java 8 programming
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company

Skills evaluated in this interview

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

Quants, DSA, Logical, Analytical, OS, DBMS

Round 2 - Technical 

(2 Questions)

  • Q1. Please introduce yourself
  • Q2. Why UBS and what excited you

Vieva InTech Interview FAQs

How many rounds are there in Vieva InTech Software Developer interview?
Vieva InTech interview process usually has 3 rounds. The most common rounds in the Vieva InTech interview process are Aptitude Test, Coding Test and One-on-one Round.

Tell us how to improve this page.

Vieva InTech Software Developer Salary
based on 17 salaries
₹1.1 L/yr - ₹6 L/yr
60% less than the average Software Developer Salary in India
View more details

Vieva InTech Software Developer Reviews and Ratings

based on 2 reviews

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-Life balance

1.0

Salary & Benefits

2.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
17 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Application Support Engineer
10 salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

SQL Developer
5 salaries
unlock blur

₹1 L/yr - ₹1.9 L/yr

Software Engineer
4 salaries
unlock blur

₹3.2 L/yr - ₹5.2 L/yr

Manager
3 salaries
unlock blur

₹3.6 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Vieva InTech with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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