Upload Button Icon Add office photos

VELOTIO Technologies

Compare button icon Compare button icon Compare

Filter interviews by

VELOTIO Technologies Software Engineer Interview Questions and Answers

Updated 2 Apr 2024

VELOTIO Technologies Software Engineer Interview Experiences

5 interviews found

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

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. What's does the useCallback and usememo in react ?
  • Ans. 

    useCallback and useMemo are hooks in React used for performance optimization.

    • useCallback is used to memoize a function and prevent unnecessary re-renders.

    • useMemo is used to memoize a value and prevent unnecessary re-computations.

    • Both hooks are used to optimize performance by reducing unnecessary re-renders and re-computations.

    • useCallback is useful when passing down functions to child components.

    • useMemo is useful when c...

  • Answered by AI
  • Q2. What's difference between async await and promise ?
  • Ans. 

    Async/await is a syntactic sugar over Promises in JavaScript.

    • Async/await makes asynchronous code look and behave like synchronous code.

    • Promises are objects that represent the eventual completion or failure of an asynchronous operation.

    • Async/await is easier to read and write than Promises.

    • Async/await can only be used in functions that are marked as async.

    • Promises can be used anywhere in the code.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for coding fundamentals and development related stuff before interview.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Rushikesh Dengale

posted on 13 Feb 2024

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

String manipulation and other aptitude questions

Round 2 - One-on-one 

(1 Question)

  • Q1. System Design round

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions on current projects. How & why were the frameworks used
  • Q2. Asked basic questions on OS, networking, database
  • Q3. Gave take home assignment of DSA questions. One question was to design LRU cache. Don't remember the other one,
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between concurrency and parallelism
  • Ans. 

    Concurrency is about dealing with multiple tasks at the same time, while parallelism is about executing multiple tasks simultaneously.

    • Concurrency is about managing multiple tasks and switching between them quickly.

    • Parallelism is about actually executing multiple tasks at the same time.

    • Concurrency can be achieved in a single-core processor through task switching.

    • Parallelism requires multiple cores or processors to execu...

  • Answered by AI
  • Q2. How will you sort 1TB of array/data
  • Ans. 

    Use external sorting techniques like merge sort or quick sort to efficiently sort large amounts of data.

    • Divide the 1TB array into smaller chunks that can fit into memory

    • Sort each chunk individually using a fast sorting algorithm like merge sort or quick sort

    • Merge the sorted chunks back together to get the final sorted array

    • Consider using parallel processing or distributed systems for faster sorting

    • Example: Divide the 1...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Yatin Kathuria

posted on 17 Mar 2022

I applied via Approached by Company and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Why are you looking for a change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking for a role that offers more opportunities for advancement, such as leadership positions.

    • Interest in new technologies: I want to work with cutting-edge technologies that I haven't had the chance to explore in my current role.

    • Cultural fit: I'm seeking a company culture that v...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Q3. What are your salary expectations?
Round 2 - Technical 

(1 Question)

  • Q1. 2 Sum Problem (leetcode easy) Binary search question give a sorted array return the index we can place the given element in the array. Core Javascript question (refer Akshay Saini series) Core React Questi...
Round 3 - One-on-one 

(1 Question)

  • Q1. Array Subsets A Object is given , flat it with the prefix it's key. Reduce polyfill Compose and pipe Normal Js function(event loop, promise, let const var, prototype) Noraml React question.
  • Ans. 

    The interview question covers topics like array subsets, reduce polyfill, compose and pipe, normal JS functions, and normal React questions.

    • For array subsets, use the Array.prototype.filter() method to filter out the elements that don't meet the subset criteria.

    • Reduce polyfill can be implemented using a for loop or recursion to iterate over the array and accumulate the result.

    • Compose and pipe are higher-order functions...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your fundaments well and have basic knowledge is helpful

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. The First Technical round lasted for about 1hrs questions were mainly asked on core Java and Spring Boot and some basic system design questions were also asked like how can we implement pagination and basi...
  • Q2. The Second technical round lasted around 1.5 hrs questions were asked on core Java, Spring boot, previous work experience, and 2 DSA questions 1. Do not remember (leetcode Easy/Medium) 2. Implement HashMap...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare questions throughly based on your tech stack and basic API design question along with leetcode Easy/Medium questions.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about VELOTIO Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
  • Ans. 

    Guide to completing a RESTful API coding task with essential pointers and examples.

    • Understand REST principles: Use HTTP methods (GET, POST, PUT, DELETE) appropriately.

    • Define clear endpoints: Example - /api/users for user-related operations.

    • Implement status codes: Use 200 for success, 404 for not found, 500 for server errors.

    • Use JSON for data interchange: Ensure requests and responses are in JSON format.

    • Consider authent...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Ans. 

    Managing multiple events on a single variable requires careful synchronization to ensure accurate results.

    • Use locks or mutexes to prevent race conditions when accessing the variable.

    • Implement event debouncing to limit the frequency of updates, ensuring only the final event is processed.

    • Utilize a queue to handle events sequentially, processing them one at a time to maintain accuracy.

    • Consider using atomic operations for ...

  • Answered by AI
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Are these interview questions helpful?

I applied via Referral and was interviewed before Aug 2021. There were 2 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 

General topics like mathe, English, social etc

Interview Preparation Tips

Topics to prepare for IT By Design Software Engineer interview:
  • Python
  • general
Interview preparation tips for other job seekers - It is best choice to our life . If I can join in this company. I can learn more things by gaining work experience.
Round 1 - Group Discussion 

It represents the eligibility of person and thinking process ,view of thoughts

Round 2 - One-on-one 

(1 Question)

  • Q1. We cannot judge people to atonce chance
Round 3 - Coding Test 

Skills ,fast typing , experienced ,new ideas

Round 4 - Technical 

(1 Question)

  • Q1. All the knowledge of technical work and word
Round 5 - Case Study 

Deeply study case and make a point to make attractive

Interview Preparation Tips

Interview preparation tips for other job seekers - Every chance have a successful of key.will appreciate all chance to way of your dreams .move a first steps towards your dreams
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
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 

(2 Questions)

  • Q1. Mostly scenario based on what you have worked on and basic questions on theorical knowledge.Interview was 1 hour long.
  • Q2. ETL,Tool, Technology, Infrastructures,coding skill,SQL skills
Round 3 - HR 

(1 Question)

  • Q1. Normal basic questions asked in HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best ,keep confident on your work and be patient while giving interview as interview is bit tricky...

VELOTIO Technologies Interview FAQs

How many rounds are there in VELOTIO Technologies Software Engineer interview?
VELOTIO Technologies interview process usually has 2-3 rounds. The most common rounds in the VELOTIO Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for VELOTIO Technologies Software Engineer 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 VELOTIO Technologies. The most common topics and skills that interviewers at VELOTIO Technologies expect are Python, Machine Learning, Product Engineering, Javascript and Troubleshooting.
What are the top questions asked in VELOTIO Technologies Software Engineer interview?

Some of the top questions asked at the VELOTIO Technologies Software Engineer interview -

  1. Array Subsets A Object is given , flat it with the prefix it's key. Reduce poly...read more
  2. What's difference between async await and promis...read more
  3. What's does the useCallback and usememo in reac...read more
What are the most common questions asked in VELOTIO Technologies Software Engineer HR round?

The most common HR questions asked in VELOTIO Technologies Software Engineer interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
VELOTIO Technologies Software Engineer Salary
based on 74 salaries
₹6 L/yr - ₹20.9 L/yr
59% more than the average Software Engineer Salary in India
View more details

VELOTIO Technologies Software Engineer Reviews and Ratings

based on 13 reviews

4.7/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.6

Salary

4.6

Job security

4.6

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 13 Reviews and Ratings
Senior Software Engineer
83 salaries
unlock blur

₹13.8 L/yr - ₹35 L/yr

Software Engineer
74 salaries
unlock blur

₹6 L/yr - ₹20.9 L/yr

Senior Devops Engineer
23 salaries
unlock blur

₹21.3 L/yr - ₹41.3 L/yr

QA Engineer
22 salaries
unlock blur

₹7 L/yr - ₹16 L/yr

Software Developer
18 salaries
unlock blur

₹5.3 L/yr - ₹20 L/yr

Explore more salaries
Compare VELOTIO Technologies with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview