Upload Button Icon Add office photos

Filter interviews by

V & V Comptech Systems Software Developer Interview Questions, Process, and Tips

Updated 5 Aug 2024

V & V Comptech Systems Software Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Oops concepts and development cycle
  • Ans. 

    Oops concepts are principles in object-oriented programming. Development cycle refers to the stages of software development.

    • Oops concepts include inheritance, polymorphism, encapsulation, and abstraction

    • Development cycle consists of planning, design, implementation, testing, and maintenance

    • Examples of Oops concepts: Inheritance - a child class inheriting properties and behaviors from a parent class

    • Examples of Developme...

  • Answered by AI
  • Q2. What is garbage collector does
  • Ans. 

    Garbage collector is a feature in programming languages that automatically manages memory by reclaiming unused memory.

    • Garbage collector automatically identifies and frees up memory that is no longer in use by the program

    • Prevents memory leaks by reclaiming memory occupied by objects that are no longer needed

    • Examples include Java's garbage collector which runs in the background to reclaim memory

  • Answered by AI
  • Q3. What is jit means
  • Ans. 

    Just-In-Time compilation is a technique used in programming to improve performance by compiling code at runtime.

    • JIT compilation converts code from a high-level language to machine code just before it is executed.

    • It can help optimize performance by only compiling code that is actually used during runtime.

    • Examples of languages that use JIT compilation include Java (with the Java Virtual Machine) and JavaScript (with mode

  • Answered by AI
  • Q4. Different between server side and client side
  • Ans. 

    Server side refers to operations that are performed on the server, while client side refers to operations that are performed on the client's device.

    • Server side code is executed on the server before the page is sent to the client's browser.

    • Client side code is executed on the client's browser after the page is received.

    • Server side code is used for processing data, interacting with databases, and performing server-side op...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't think about failure.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. In 1st round they asked aptitude questions And 2nd round was an technical hr interview in this they asked oops concepts and basic C programming

Interview Questionnaire 

1 Question

  • Q1. Spring IOC , bean scopes, Tomcat server questions , SpringBoot questions Dependency questions, Maven questions

Interview Questionnaire 

1 Question

  • Q1. Questions Based on basic algorithm and Oops concept

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic oops questions
  • Q2. Software Engineering: software development lifecycle, water flow model etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are mostly gentle and friendly.Just be bold and answer what you know.hope this helps.all the best :)

Interview Questionnaire 

1 Question

  • Q1. Basic questions

I appeared for an interview in Sep 2021.

Interview Questionnaire 

1 Question

  • Q1. About project?

Interview Preparation Tips

Interview preparation tips for other job seekers - The level of the interview was intermediate

Interview Questionnaire 

1 Question

  • Q1. Why you choose this company?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Online test which can be attempted anytime between 22 May 2020, 06:00 AM and 25 May 2020, 01:00 AM

  • Q1. 

    Postfix Expression Evaluation Problem Statement

    Given a postfix expression, your task is to evaluate the expression. The operator will appear in the expression after the operands. The output for each expr...

  • Ans. 

    Evaluate postfix expressions by applying operators to operands in a given order.

    • Iterate through the postfix expression and push operands onto a stack

    • When an operator is encountered, pop the required number of operands from the stack, apply the operator, and push the result back onto the stack

    • Continue until the entire expression is evaluated and the final result is left on the stack

  • Answered by AI
  • Q2. 

    Dice Throws Problem Statement

    You are given D dice, each having F faces numbered from 1 to F. The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up num...

  • Ans. 

    The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up numbers equals the given 'target' sum.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of ways to achieve each sum with different number of dice.

    • Iterate through the dice and sum possibilities to fill up the array.

    • Return the result modulo 10^9 + 7.

    • Optimize the solution ...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

June 25 2020
Timing: 12:00 pm to 1:00 pm
This round was completely devoted to coding. I was asked to introduce myself and then 2 coding questions were asked.

  • Q1. 

    Find First and Last Positions of an Element in a Sorted Array

    Given a sorted array ARR consisting of N integers and an integer X, find the first and last positions of occurrence of X in the array.

    Note:

    ...
  • Ans. 

    Find the first and last positions of an element in a sorted array efficiently.

    • Use binary search to find the first occurrence of X in the array.

    • Use binary search to find the last occurrence of X in the array.

    • Handle cases where X is not present or present only once.

    • Return the first and last positions as 0-based indices.

  • Answered by AI
  • Q2. 

    Maze with N Doors and 1 Key Problem Statement

    You are given an N x N maze where some cells have doors, and you have a key that can be used only once to open a door. Determine if there exists a path from t...

  • Ans. 

    Determine if there exists a path from the top-left cell to the bottom-right cell of a maze with N doors and 1 key.

    • Use depth-first search (DFS) or breadth-first search (BFS) to explore possible paths through the maze.

    • Keep track of the cells visited and use the key only once to open doors.

    • Check if the bottom-right cell is reachable after traversing the maze.

    • Handle edge cases such as the top-left and bottom-right cells ha...

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

9th July 2020
6:30PM to 7:30PM

Round 4 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

23-July 2020
4:00 PM to 5:00 PM
Coding questions + Several questions on computer fundamentals and networking were asked in a rapid-fire manner.

  • Q1. 

    Stock Trading Maximum Profit Problem

    Given the stock prices for 'N' days, your goal is to determine the maximum profit that can be achieved. You can buy and sell the stocks any number of times but can onl...

  • Ans. 

    The goal is to determine the maximum profit that can be achieved by buying and selling stocks on different days.

    • Iterate through the stock prices and buy on the days when the price is lower than the next day's price, and sell on the days when the price is higher than the next day's price.

    • Calculate the profit by summing up the differences between buying and selling prices.

    • Repeat the process for each test case and output

  • Answered by AI
Round 5 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

6- Aug 2020
3:00 PM to 4:00 PM
Resceduled to: @5:30 PM
Projects, Fundamentals check, Behavioral, Coding

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Calculate total number of distinct paths from a given source node to all other nodes in a directed graph.

    • Use dynamic programming to keep track of the number of paths from the source node to each node.

    • Consider the modulo operation to handle large numbers efficiently.

    • Start by initializing the number of paths from the source node to itself as 1.

    • Iterate through all edges and update the number of paths for each destination ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. Eligibility criteriaDevelopment skills and leadership principlesAmazon interview preparation:Topics to prepare for the interview - Data structures, OOPS, Operating systems, DBMS, NetworkingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident while answering questions
Tip 2 : Make the interview conversational and Always keep a smiling face
Tip 3 : Ask something at the end of the interview which shows your interest in the company
Tip 4 : Prepare projects on the skills mentioned in the resume

Application resume tips for other job seekers

Tip 1 : Mention projects and internships.
Tip 2 : Keep your resume short and crisp.

Final outcome of the interviewSelected

Skills evaluated in this interview

V & V Comptech Systems Interview FAQs

How many rounds are there in V & V Comptech Systems Software Developer interview?
V & V Comptech Systems interview process usually has 1 rounds. The most common rounds in the V & V Comptech Systems interview process are Technical.
What are the top questions asked in V & V Comptech Systems Software Developer interview?

Some of the top questions asked at the V & V Comptech Systems Software Developer interview -

  1. What is Oops concepts and development cy...read more
  2. Different between server side and client s...read more
  3. What is garbage collector d...read more

Tell us how to improve this page.

V & V Comptech Systems Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
V & V Comptech Systems Software Developer Salary
based on 13 salaries
₹3.3 L/yr - ₹8.3 L/yr
39% less than the average Software Developer Salary in India
View more details
Onsite Support Engineer
19 salaries
unlock blur

₹1.8 L/yr - ₹2.8 L/yr

Application Support Engineer
17 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Software Developer
13 salaries
unlock blur

₹3.2 L/yr - ₹8.3 L/yr

Product Support Engineer
13 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Programmer
13 salaries
unlock blur

₹3.3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare V & V Comptech Systems with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview