Upload Button Icon Add office photos

Filter interviews by

Vaken Technologies Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Vaken Technologies Interview Questions and Answers

View all 8 questions

Vaken Technologies Interview Experiences

Popular Designations

10 interviews found

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

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

Round 1 consists of two sections: Section A includes 20 to 25 questions covering topics such as Percentages, Ratio and Proportion, Profit and Loss, Time, Speed, Distance, and Work. Section B will feature 20 technical questions focused on the basics of C and Java, primarily derived from Indiabix and Tesbook.

Round 2 - Technical 

(5 Questions)

  • Q1. There are 2 technical rounds technical interview 1 and technical interview 2. Questions are basically from MySQL, Java and OOPs. Also I was eliminated in this round, because they hire candidates who are in...
  • Q2. Introduce Yourself
  • Ans. 

    I am a recent graduate with a degree in Mechanical Engineering, passionate about problem-solving and eager to learn and grow in the field.

    • Recent graduate with a degree in Mechanical Engineering

    • Passionate about problem-solving

    • Eager to learn and grow in the field

  • Answered by AI
  • Q3. Write one Program in Java which includes polymorphism (OOPs)
  • Ans. 

    A Java program showcasing polymorphism in OOPs

    • Create a superclass with a method that is overridden in subclasses

    • Instantiate objects of different subclasses and call the overridden method

    • Demonstrate how the method behaves differently based on the object type

  • Answered by AI
  • Q4. What is data, database, DBMS?
  • Ans. 

    Data is raw facts and figures, database is a structured collection of data, and DBMS is software to manage databases.

    • Data is raw information, like numbers, text, images, etc.

    • Database is a structured collection of data organized for easy access and retrieval.

    • DBMS (Database Management System) is software that manages databases, allowing users to interact with the data efficiently.

    • Examples: Data - 10, Database - Employee

  • Answered by AI
  • Q5. Write a Java Program to print first 5 letters your name.
  • Ans. 

    Java program to print first 5 letters of a name

    • Create a String variable with your name

    • Use substring method to extract first 5 characters

    • Print the extracted substring

  • Answered by AI

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Trainee Production Engineer Interview Questions & Answers

user image 5008_ANANTHAKRISHNAN .I

posted on 12 Feb 2025

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

Reasoning aptitude verbal

Round 2 - Technical 

(1 Question)

  • Q1. Java mcq with the options
Round 3 - HR 

(1 Question)

  • Q1. General development
Round 4 - One-on-one 

(1 Question)

  • Q1. Technical dvevlopmemnt
Round 5 - job 

(1 Question)

  • Q1. Job opportunity n th evaken

Trainee Production Engineer Interview Questions asked at other Companies

Q1. What was your very first engineering design?
View answer (2)

Trainee Interview Questions & Answers

user image Mozhi2Relieve

posted on 9 Dec 2024

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

Simple coding samples and friendly environment

Round 2 - Coding Test 

Technical questions mostly in Java and SQL

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for marketing and project management.

    • Graduated with a Bachelor's degree in Business Administration

    • Passionate about marketing and project management

    • Completed internships at marketing agencies

    • Strong communication and organizational skills

  • Answered by AI

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Why should i hire you
  • Ans. 

    I have a strong technical background, a passion for coding, and a proven track record of delivering high-quality software solutions.

    • Extensive experience in programming languages such as Java, Python, and JavaScript

    • Strong problem-solving skills and ability to work well in a team

    • Previous projects include developing a mobile app for tracking fitness goals

  • Answered by AI
  • Q2. Oops questions baiscs

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong knowledge in oops and dsa in java

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (3)

Vaken Technologies interview questions for popular designations

 Software Developer

 (3)

 Engineer Trainee

 (3)

 Senior Software Engineer

 (1)

 Trainee Production Engineer

 (1)

 Trainee

 (1)

 Junior Software Developer

 (1)

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Profit and Loss, Time Speed Distance, Ratio Proportion

Round 2 - Coding Test 

Basic Question, Java, SQL, Basic Fundamental

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Strong in Fundamentals

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Simple to medium level of aptitude questions

Round 3 - Technical 

(5 Questions)

  • Q1. Code to find Prime number
  • Ans. 

    Code to find Prime number in a given range

    • Iterate through numbers in the range and check if each number is divisible only by 1 and itself

    • Use a loop to check for factors of the number, if no factors found then it is a prime number

    • Optimization: Only check up to the square root of the number for factors

  • Answered by AI
  • Q2. Code to print Fibonacci series
  • Ans. 

    Print Fibonacci series using iterative approach

    • Initialize variables for first two numbers in series

    • Use a loop to calculate and print the next number in series

    • Update variables for next iteration

  • Answered by AI
  • Q3. 5l 3l water jug question
  • Q4. Tell me about yourself
  • Q5. Tell me about final year project

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

(2 Questions)

  • Q1. Difference between Comparator and Comparable
  • Ans. 

    Comparator is used to compare two objects for sorting, while Comparable is implemented by a class to define its natural ordering.

    • Comparator is used when the class being compared does not implement Comparable interface.

    • Comparable is implemented by a class to define its natural ordering, which is used for sorting.

    • Comparator allows for multiple sorting sequences, while Comparable provides a single sorting sequence.

    • Example...

  • Answered by AI
  • Q2. Difference between Spring boot and Spring MVC
  • Ans. 

    Spring Boot is an opinionated framework for building stand-alone, production-grade Spring-based Applications.

    • Spring Boot is a framework that simplifies the setup and configuration of Spring applications.

    • Spring MVC is a part of the Spring Framework that focuses on building web applications using the Model-View-Controller design pattern.

    • Spring Boot includes an embedded server, making it easy to deploy standalone applicat...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your Expected CTC?, Is there any buyout option available?
  • Ans. 

    I am expecting a competitive salary based on my experience and skills. I am open to discussing a buyout option if necessary.

    • Expecting a competitive salary based on experience and skills

    • Open to discussing a buyout option if necessary

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions along with science questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Our introduction and questions in the project.
Round 3 - One-on-one 

(1 Question)

  • Q1. Divide a number without using the divide operator and a similar question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much. All the best for the interview. Now the interview process might be changed.

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2022. There were 3 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 

I attend aptitude and coding mcq test in my college .they are mostly about basic aptitude like speed of train, ratio etc. Then in coding they ask c program to find output mostly based on pointer, increment decrement etc.

Round 3 - Technical 

(3 Questions)

  • Q1. It is done by virtual mode.questions are based on resume. They ask question to solve. they tell me to do a form using html.
  • Q2. They ask java asics like jvm, sdlc etc
  • Q3. They also ask about oops concepts

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed before Oct 2023.

Round 1 - Coding Test 

Basic Java programming questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Multi threading
  • Q2. Oops concepts and SQL
Round 3 - HR 

(2 Questions)

  • Q1. Family background
  • Q2. Education background and project

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Vaken Technologies Interview FAQs

How many rounds are there in Vaken Technologies interview?
Vaken Technologies interview process usually has 2-3 rounds. The most common rounds in the Vaken Technologies interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Vaken Technologies interview?

Some of the top questions asked at the Vaken Technologies interview -

  1. What is your Expected CTC?, Is there any buyout option availab...read more
  2. Write one Program in Java which includes polymorphism (OO...read more
  3. Write a Java Program to print first 5 letters your na...read more

Tell us how to improve this page.

Vaken Technologies Interview Process

based on 10 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k 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
View all

Vaken Technologies Reviews and Ratings

based on 30 reviews

3.3/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.2

Salary

3.4

Job security

2.2

Company culture

3.1

Promotions

2.9

Work satisfaction

Explore 30 Reviews and Ratings
Senior Software Engineer
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer Trainee
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Vaken Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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