Premium Employer

i

This company page is being actively managed by Veltris Team. If you also belong to the team, you can get access from here

Veltris Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Veltris Interview Questions, Process, and Tips for Experienced

Updated 13 Mar 2025

Top Veltris Interview Questions and Answers for Experienced

Veltris Interview Experiences for Experienced

Popular Designations

8 interviews found

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. L1 vs L2 regularization
  • Ans. 

    L1 regularization adds penalty equivalent to absolute value of coefficients, promoting sparsity. L2 regularization adds penalty equivalent to square of coefficients, promoting smaller weights.

    • L1 regularization is also known as Lasso regularization.

    • L2 regularization is also known as Ridge regularization.

    • L1 regularization can lead to feature selection by setting some coefficients to zero.

    • L2 regularization is more stable ...

  • Answered by AI
  • Q2. Ensemble techniques

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions on resume were not properly formulated. There's confusion in understanding what interviewer is expecting

Skills evaluated in this interview

Lead Data Scientist Interview Questions asked at other Companies

Q1. 1) How many weeks should be considered for testing any new change to a billing system in stores? Methodology to arrive at the weeks? 2) Explain ability of a model - Shapio package? 3) Intermediate SQL - moving 3 months average? Can be solve... read more
View answer (1)

QA Engineer Interview Questions & Answers

user image Sudarshanam Anusha

posted on 11 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About testing process

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. How do you design custom loss function?
  • Q2. Scenario based question on RAG & Agentic AI

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why am I interested in this job role?
  • Q2. Because I have problem solving skills and very in documentation… and anything related to business aspires me
Round 2 - Assignment 

Use case writing for different apps

Interview Preparation Tips

Topics to prepare for Veltris Associate Business Analyst interview:
  • Business Analysis
  • Agile Methodology
  • Scrum
  • JIRA
Interview preparation tips for other job seekers - Be confident and give ur 100% in whatever you are trying to achieve

Associate Business Analyst Interview Questions asked at other Companies

Q1. problem identification - how to reduce per delivery cost from Rs. 75 (hypothetical value).
View answer (1)

Veltris interview questions for popular designations

 Senior Engineer

 (2)

 Senior Software Engineer

 (2)

 QA Engineer

 (2)

 Associate Software Developer

 (1)

 Senior Associate

 (1)

 Technical Lead

 (1)

 Software Engineer

 (1)

 Assistant Manager Information Technology

 (1)

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

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questionsssssss
  • Q2. Technical answer only nothing rocket science
Round 2 - Technical 

(2 Questions)

  • Q1. Noooooooooooooooooooo
  • Q2. Nooooooooooanssssssss

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join in this company

Assistant Manager Information Technology Interview Questions asked at other Companies

Q1. process of Pr to Po cycle Server and which servers do u work
View answer (1)

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1.All the topics related to manual testing as I applied for manual testing profile
  • Q2. Asked for write test case for ordering any product from e-commerce site with having promo code.
  • Q3. Asked about api testing
  • Q4. Asked project related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - This is startup so that this use to take almost 1hour of interview . 2 rounds of technical interview is happened. They aske all questions related to manual testing. Like writing test cases, Bug template, Bug life cycle, Performance, integration, ad-hoc etc. Also asked questions from mentioned project.

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)

Jobs at Veltris

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

I applied via Naukri.com and was interviewed before Jan 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 - Technical 

(2 Questions)

  • Q1. Difference between Let, Var, Const
  • Ans. 

    Let, Var, and Const are JavaScript keywords used for declaring variables with different scoping rules and mutability.

    • Var has function scope and can be redeclared and reassigned.

    • Let has block scope and can be reassigned but not redeclared.

    • Const has block scope and cannot be reassigned or redeclared.

    • Use const for values that won't change, let for values that will, and var for legacy code or global variables.

  • Answered by AI
  • Q2. Life Cycle of React-Native
  • Ans. 

    React Native has several life cycle methods that are called at different stages of the component's life.

    • Mounting: constructor(), componentWillMount(), render(), componentDidMount()

    • Updating: componentWillReceiveProps(), shouldComponentUpdate(), componentWillUpdate(), render(), componentDidUpdate()

    • Unmounting: componentWillUnmount()

    • Error Handling: componentDidCatch()

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. How to upload the app to both stores
  • Ans. 

    To upload the app to both stores, create separate builds for each platform and follow the submission guidelines of each store.

    • Create separate builds for iOS and Android platforms

    • Follow the submission guidelines of the App Store and Google Play Store

    • Submit the builds to each store separately

    • Ensure that the app meets the requirements of each store

  • Answered by AI
  • Q2. Local Storage in React-Native
  • Ans. 

    Local storage in React Native allows data to be stored on the device for offline use.

    • AsyncStorage is the built-in API for local storage in React Native

    • Data is stored as key-value pairs

    • Data can be retrieved and updated asynchronously

    • Local storage can be used for caching data for offline use

    • Example: AsyncStorage.setItem('key', 'value')

    • Example: AsyncStorage.getItem('key')

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process is good, but Company is not good because of higher management

Skills evaluated in this interview

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 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 - One-on-one 

(1 Question)

  • Q1. What are your ideas about global job scenario and how do you fill this role
Round 3 - HR 

(1 Question)

  • Q1. Why would you chose this work

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and say I don’t know when you dont know. Also ask questions and be realistic

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (11)

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 before Feb 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Python coding and resume based questions

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. APi related
  • Q2. Cloud related
  • Q3. JAVA complete understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - HAve end to end knowledge in java and basic clouds

Veltris Interview FAQs

How many rounds are there in Veltris interview for experienced candidates?
Veltris interview process for experienced candidates usually has 2 rounds. The most common rounds in the Veltris interview process for experienced candidates are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Veltris 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 Veltris. The most common topics and skills that interviewers at Veltris expect are Agile, Machine Learning, Python, Javascript and Artificial Intelligence.
What are the top questions asked in Veltris interview for experienced candidates?

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

  1. How to upload the app to both sto...read more
  2. Difference between Let, Var, Co...read more
  3. Life Cycle of React-Nat...read more
How long is the Veltris interview process?

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

Tell us how to improve this page.

Veltris Interview Process for Experienced

based on 5 interviews

Interview experience

3.4
  
Average
View more
Join Veltris Innovate, Accelerate and Transform

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 101 Interviews
Apisero Interview Questions
4.3
 • 65 Interviews
Webkul Software Interview Questions
3.9
 • 62 Interviews
Softenger Interview Questions
4.1
 • 52 Interviews
View all

Veltris Reviews and Ratings

based on 184 reviews

3.9/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.7

Salary

3.5

Job security

3.8

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 184 Reviews and Ratings
Front End Engineer - React

Hyderabad / Secunderabad

5-7 Yrs

Not Disclosed

Senior Engineer Java

Hyderabad / Secunderabad

10-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
54 salaries
unlock blur

₹4 L/yr - ₹13.5 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹6.5 L/yr - ₹22.1 L/yr

Senior Engineer
41 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Video Specialist
34 salaries
unlock blur

₹3 L/yr - ₹13.7 L/yr

Senior Process Associate
25 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Veltris with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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