Upload Button Icon Add office photos

Filter interviews by

Version 1 Interview Questions and Answers for Experienced

Updated 27 Nov 2024

Version 1 Interview Experiences for Experienced

Popular Designations

3 interviews found

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

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Questions are mostly related to the processes you follow and standards you refer to. There was no coding question asked. Most of them are scenario based questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Case studies on project development

Interview Preparation Tips

Interview preparation tips for other job seekers - Even after clearing all rounds version 1 did not release offer letter by giving a reason that "position is on hold". I came to know this is what they have done with so many candidates before as well. So, contrary to organization's positive image these things do happen quite often in version 1. Also, they will always try to lowball you on salary part. The salary discussion round is just for namesake, they are not at all open for any negotiations.

Java Full Stack Developer Interview Questions asked at other Companies

Q1. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given a List of list of string of integers ... read more
View answer (1)

Interview Questions & Answers

user image Hema kavi

posted on 20 Jun 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. It was Purely Technical One, Basics of SQL, PLSQL, Business Process Flow [OTC, Procurement], About SQL Coding Scenario - Find Duplicates
Round 3 - Behavioral 

(1 Question)

  • Q1. About Current Data Migration Project, Business Process Flow - OTC with Example, General Managerial Question, Data Migration Tools used in current Projects. Migration Mandatory fields.
Round 4 - HR 

(1 Question)

  • Q1. HR - Location, WFH, Package Negotiation

Interview Preparation Tips

Topics to prepare for Version 1 interview:
  • SQL
  • PLSQL
  • OTC
  • SCM
  • Procurement
  • Data migration
  • fbdi
  • Load
  • ETL Process
Interview preparation tips for other job seekers - Technical - Sql/Plsql
Data Migration Module Strategies
Business Process Flows
Know about Version 1

I applied via Naukri.com and was interviewed in Mar 2022. There were 6 interview rounds.

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 - HR 

(1 Question)

  • Q1. Basic screening over call. Information asked about work experience, package, why looking for a switch.
Round 3 - One-on-one 

(1 Question)

  • Q1. 1-1 with Delivery manager, about the overall expectation from a candidate regarding the post interviewed for. Understand the candidate in terms of how he/she will fit in the role.
  • Ans. Make sure you are 100% honest with the role you have applied for and you have experience to justify your claims.
  • Answered Anonymously
Round 4 - Aptitude Test 

Generic Reasoning test

Round 5 - HR 

(1 Question)

  • Q1. HR to have a 1-1 discussion to understand the employee. they will measure you in terms of the company's mission and vision and values. Will explain the benefits (just to give a fair idea of how employee...
  • Ans. Be honest, there is no written notes that you will get in the internet. You can be truthful and transparent
  • Answered Anonymously
Round 6 - One-on-one 

(1 Question)

  • Q1. 1-1 with Service Delivery head. Again overall understanding of the candidate and what the candidate can expect from the employer in terms of growth, scope, exposure

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. If you are applying for a role, be prepare to answer any questions based on your CV or work experience.
2. Communication is the key.
3. Honest and truthful.

Jobs at Version 1

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 4 interview rounds.

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 - Aptitude Test 

Reasoning and aptitude questions are given

Round 3 - HR 

(2 Questions)

  • Q1. Tell all concepts of Overloading
  • Ans. 

    Overloading is a concept in programming where multiple functions can have the same name but different parameters.

    • Functions with the same name but different parameters can be defined in a class

    • Overloading allows for flexibility in function usage

    • Example: void print(int num) and void print(string text) are overloaded functions

  • Answered by AI
  • Q2. Tell me about a live example of inheritance
  • Ans. 

    Inheritance in software development allows a class to inherit properties and behaviors from another class.

    • Inheritance allows a subclass to reuse code from a superclass

    • Subclass can also add new functionalities or override existing ones

    • Example: Animal class can be a superclass with properties like name and age, while Dog class can inherit from Animal and add a method bark()

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell about the your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare all basic concepts of oops, practice all the concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is CSS Sprite
  • Ans. 

    CSS Sprite is a technique used to combine multiple images into a single image to reduce the number of server requests.

    • CSS Sprite helps in reducing loading time by reducing the number of HTTP requests.

    • It involves combining multiple images into one larger image and then using CSS to display only the portion of the image needed.

    • This technique is commonly used for icons, buttons, and other small images on websites.

    • By using...

  • Answered by AI
  • Q2. Object Oriented Programming

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell about yourself and your biodata
  • Q2. I have explained myself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself and keep ready for interview

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

Round 1 - Coding Test 

Moderate difficult with business reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Prior work Ex mostly and a case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Know SAS products and it's implementation use cases in detail with statistical knowledge
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. Skill related questions
Round 3 - Technical 

(2 Questions)

  • Q1. Management questions
  • Q2. Depends on questions
Round 4 - HR 

(2 Questions)

  • Q1. Previous experiences and reason for change
  • Q2. Better opportunity and new challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t mention the skills which you don’t experience

Version 1 Interview FAQs

How many rounds are there in Version 1 interview for experienced candidates?
Version 1 interview process for experienced candidates usually has 4-5 rounds. The most common rounds in the Version 1 interview process for experienced candidates are One-on-one Round, Resume Shortlist and HR.
How to prepare for Version 1 interview for experienced candidates?
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 Version 1. The most common topics and skills that interviewers at Version 1 expect are Oracle, Customer Service, microsoft, IT Services and SQL.
What are the top questions asked in Version 1 interview for experienced candidates?

Some of the top questions asked at the Version 1 interview for experienced candidates -

  1. It was Purely Technical One, Basics of SQL, PLSQL, Business Process Flow [OTC, ...read more
  2. 1-1 with Service Delivery head. Again overall understanding of the candidate a...read more
  3. 1-1 with Delivery manager, about the overall expectation from a candidate regar...read more
How long is the Version 1 interview process?

The duration of Version 1 interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Version 1 Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Equifax Interview Questions
3.3
 • 32 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
VDart Interview Questions
4.1
 • 27 Interviews
EagleView Interview Questions
3.3
 • 20 Interviews
Ciklum Interview Questions
3.5
 • 19 Interviews
SAS Interview Questions
4.3
 • 18 Interviews
View all

Version 1 Reviews and Ratings

based on 73 reviews

3.8/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.8

Salary

3.7

Job security

4.0

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 73 Reviews and Ratings
Presales Bid Management Associate (2024 Fresher)

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Hyperion HFM (Contractor)

Pune

5-6 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
22 salaries
unlock blur

₹10.5 L/yr - ₹37 L/yr

Senior Data Engineer
13 salaries
unlock blur

₹22 L/yr - ₹30.5 L/yr

Consultant
12 salaries
unlock blur

₹6.4 L/yr - ₹21.5 L/yr

Associate Consultant
9 salaries
unlock blur

₹7.1 L/yr - ₹18 L/yr

Oracle Cloud Technical Consultant
9 salaries
unlock blur

₹7.5 L/yr - ₹21.8 L/yr

Explore more salaries
Compare Version 1 with

Saama Technologies

3.7
Compare

DISYS

3.0
Compare

Data-Core Systems

3.1
Compare

Arvato

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