Upload Button Icon Add office photos

Filter interviews by

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

Updated 5 Aug 2024

Top V & V Comptech Systems Interview Questions and Answers

V & V Comptech Systems Interview Experiences

Popular Designations

4 interviews found

I was interviewed before Aug 2021.

Round 1 - Technical 

(1 Question)

  • Q1. ° Basic questions of SQL and PLSQL ° joins, DDL, DML,subquery, Trigger
Round 2 - Technical 

(1 Question)

  • Q1. Servicenow, Autosys, sla, °writing SQL queries like using Joins, update , Second highest salary etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared for yourself some basich Questions SQL and PLSQL and Service now ...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Self Introduction
Round 2 - Technical 

(1 Question)

  • Q1. All about SQL Queries and SQL Knowledge.

Test Engineer Interview Questions & Answers

user image Avinash Kumar

posted on 31 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Technical 

(1 Question)

  • Q1. Ask Manual testing interview questions.
Round 3 - Coding Test 

Selenium Interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Workplace is very comfortable and good culture. Especially Director sir is very kind and supportive for the employees!

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

V & V Comptech Systems interview questions for popular designations

 Software Developer

 (1)

 Test Engineer

 (1)

 Production Support Engineer2

 (1)

 Onsite Support Engineer

 (1)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college

V & V Comptech Systems Interview FAQs

How many rounds are there in V & V Comptech Systems interview?
V & V Comptech Systems interview process usually has 2 rounds. The most common rounds in the V & V Comptech Systems interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for V & V Comptech Systems 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 V & V Comptech Systems. The most common topics and skills that interviewers at V & V Comptech Systems expect are Angularjs, Javascript, ADO.Net, ASP.NET and ASP.Net.
What are the top questions asked in V & V Comptech Systems interview?

Some of the top questions asked at the V & V Comptech Systems 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 Interview Process

based on 5 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

V & V Comptech Systems Reviews and Ratings

based on 37 reviews

4.0/5

Rating in categories

3.9

Skill development

3.7

Work-life balance

3.3

Salary

4.0

Job security

3.6

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 37 Reviews and Ratings
Onsite Support Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Support Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Support Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Programmer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare V & V Comptech Systems with

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare

Infosys

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