Upload Button Icon Add office photos

Filter interviews by

Vaken Technologies Software Developer Interview Questions and Answers

Updated 7 Nov 2024

Vaken Technologies Software Developer Interview Experiences

3 interviews found

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
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 2 interview rounds.

Round 1 - Aptitude Test 

Simple to medium level of aptitude questions

Round 2 - 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

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
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

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the implementation of Merge Sort in Java?
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts them, and then merges the sorted halves.

    • Divide the input array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. What is the implementation of the Quick Sort algorithm in Java?
  • Ans. 

    Quick Sort is a popular sorting algorithm that uses a divide-and-conquer approach to sort elements in an array.

    • Choose a pivot element from the array.

    • Partition the array into two sub-arrays: elements less than the pivot and elements greater than the pivot.

    • Recursively apply the same process to the sub-arrays.

    • Combine the sorted sub-arrays to get the final sorted array.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design tinyurl system design
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 question -30 min,topics - profit or loss , time work distance ,time speed ,upstreaam downstream percentage ,probability

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.30
Basic profit/loss,percentages questions

Round 2 - Technical 

(4 Questions)

  • Q1. 1 hr Asked about closures, hoisting, map, hash
  • Q2. Closures and scopes
  • Q3. Dsa 2 sum problem
  • Q4. Projects and basicjs
Round 3 - HR 

(1 Question)

  • Q1. Basic related to location, timings
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Online test which consists of java, angular, micro services related questions

Round 2 - Technical 

(1 Question)

  • Q1. Difference between static and default methods
  • Ans. 

    Static methods belong to the class itself, while default methods are part of an interface in Java.

    • Static methods can be called without creating an instance of the class, while default methods are used to provide a default implementation in interfaces.

    • Static methods are defined using the 'static' keyword, while default methods are defined using the 'default' keyword in Java.

    • Static methods cannot be overridden in subclas...

  • Answered by AI

Skills evaluated in this interview

Vaken Technologies Interview FAQs

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

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

  1. Code to find Prime num...read more
  2. Code to print Fibonacci ser...read more
  3. It is done by virtual mode.questions are based on resume. They ask question to ...read more

Tell us how to improve this page.

Vaken Technologies Software Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Vaken Technologies Software Developer Salary
based on 18 salaries
₹3.4 L/yr - ₹10.9 L/yr
16% less than the average Software Developer Salary in India
View more details

Vaken Technologies Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

1.0

Company culture

5.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
62 salaries
unlock blur

₹8.1 L/yr - ₹15.5 L/yr

Engineer Trainee
34 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Senior Engineer
28 salaries
unlock blur

₹9.6 L/yr - ₹13.5 L/yr

Software Engineer
23 salaries
unlock blur

₹4 L/yr - ₹8.1 L/yr

Software Developer
18 salaries
unlock blur

₹3.4 L/yr - ₹10.9 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