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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Veltris Interview Questions and Answers

Updated 30 Jun 2025
Popular Designations

12 Interview questions

A SDE was asked 2mo ago
Q. If you were hired and then terminated next month, what would you do?
Ans. 

I would reflect on my performance, seek feedback, and use the experience to grow professionally and personally.

  • Reflect on my contributions: I'd analyze what I did well and where I could improve.

  • Seek constructive feedback: I'd ask my manager for insights on my performance.

  • Network with colleagues: I'd maintain relationships for future opportunities.

  • Update my resume: I'd ensure my skills and experiences are current f...

View all SDE interview questions
A Technical Lead was asked 3mo ago
Q. How do you design a custom loss function?
Ans. 

Designing a custom loss function involves defining a metric that aligns with specific model objectives and data characteristics.

  • Identify the problem: Understand the specific task (e.g., classification, regression) and the desired outcomes.

  • Define the loss: Create a mathematical expression that quantifies the difference between predicted and actual values.

  • Incorporate domain knowledge: Use insights from the specific ...

View all Technical Lead interview questions
A Senior Software Engineer was asked
Q. Explain the difference between 'has_one' and 'has_and_belongs_to_many' in Ruby on Rails.
Ans. 

has_one is a one-to-one association while has_and_belongs_to_many is a many-to-many association in Ruby on Rails.

  • has_one is used when one record is associated with another record.

  • has_and_belongs_to_many is used when multiple records are associated with multiple records.

  • has_one creates a foreign key in the associated record's table.

  • has_and_belongs_to_many creates a join table to store the associations.

View all Senior Software Engineer interview questions
A Senior Engineer was asked
Q. Describe your design process.
Ans. 

The full design process involves identifying requirements, brainstorming ideas, creating prototypes, testing and refining designs, and finalizing the product.

  • Identify requirements and constraints

  • Brainstorm ideas and concepts

  • Create prototypes for testing

  • Test and refine designs based on feedback

  • Finalize the product design

View all Senior Engineer interview questions
A React Native Developer was asked
Q. How do you upload an app to both the Apple App Store and Google Play Store?
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

View all React Native Developer interview questions
A React Native Developer was asked
Q. What are the differences between let, var, and 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.

View all React Native Developer interview questions
A Software Testing Engineer was asked
Q. Write test cases for ordering a product from an e-commerce site with a promo code.
Ans. 

Test case for ordering a product with a promo code on an e-commerce site.

  • Verify product selection: Ensure the user can select a product from the catalog.

  • Check promo code entry: Validate that the promo code field is present and functional.

  • Apply valid promo code: Test applying a valid promo code and check if the discount is applied correctly.

  • Apply invalid promo code: Ensure that an error message is displayed when an...

View all Software Testing Engineer interview questions
Are these interview questions helpful?
A Software Testing Engineer was asked
Q. What is your experience with API testing?
Ans. 

API testing ensures that APIs function correctly, meet requirements, and handle errors gracefully.

  • Verify API endpoints: Check if the endpoints return the expected responses, e.g., GET /users should return a list of users.

  • Validate response formats: Ensure the API returns data in the correct format, such as JSON or XML.

  • Test authentication: Confirm that secure endpoints require proper authentication, e.g., a token fo...

View all Software Testing Engineer interview questions
A Senior Engineer was asked
Q. Difference b/w controled and uncontroled components, how many project are completed and describe latest project, lefecycle methods, templates string, hosting, error handling, unit test
Ans. 

Controlled components are controlled by React, while uncontrolled components are controlled by the DOM.

  • Controlled components are controlled by React state, while uncontrolled components are controlled by the DOM directly.

  • Example: Input fields in a form controlled by React state vs input fields with native DOM handling.

  • Lifecycle methods are methods that are automatically called at specific points in a component's l...

View all Senior Engineer interview questions
A Lead Data Scientist was asked 7mo ago
Q. 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 st...

View all Lead Data Scientist interview questions

Veltris Interview Experiences

22 interviews found

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

SRF Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Nov 2024

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

Asked about find the duplicates of a number

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

Intern Interview Questions & Answers

user image Anonymous

posted on 30 Jun 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. How does a machine learning model acquire knowledge from training data, and what steps are involved in the model training pipeline?
  • Ans. 

    Machine learning models learn from data through training, involving data preparation, model selection, training, and evaluation.

    • Data Collection: Gather relevant data, e.g., images for image classification.

    • Data Preprocessing: Clean and format data, e.g., normalizing pixel values.

    • Model Selection: Choose an appropriate algorithm, e.g., decision trees or neural networks.

    • Training: Feed data into the model to adjust weights,...

  • Answered by AI
  • Q2. What is the role of activation functions in neural networks, and how do they influence the learning process?
  • Ans. 

    Activation functions introduce non-linearity, enabling neural networks to learn complex patterns and relationships in data.

    • Activation functions determine the output of a neuron given an input, influencing the network's ability to model complex functions.

    • Common activation functions include ReLU (Rectified Linear Unit), Sigmoid, and Tanh, each with unique properties.

    • ReLU is popular for hidden layers due to its simplicity...

  • Answered by AI

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 & Answers

user image Anonymous

posted on 12 May 2024

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

Test case assignment

Round 2 - Technical 

(1 Question)

  • Q1. Based on java and selenium
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Introduce yourself
  • Ans. 

    I am a Lead Data Scientist with extensive experience in machine learning, data analysis, and driving data-driven decision-making.

    • Over 8 years of experience in data science and analytics, focusing on predictive modeling and statistical analysis.

    • Led a team of data scientists at XYZ Corp, where we developed a machine learning model that improved customer retention by 20%.

    • Expert in Python, R, and SQL, with hands-on experie...

  • Answered by AI
  • Q2. Explain projects
  • Ans. 

    Led various data science projects focusing on predictive modeling, NLP, and data visualization to drive business insights.

    • Developed a predictive model for customer churn using logistic regression, improving retention rates by 15%.

    • Implemented a natural language processing (NLP) solution to analyze customer feedback, identifying key areas for product improvement.

    • Created interactive dashboards using Tableau to visualize s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well and crack interview.
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?
  • Ans. 

    Designing a custom loss function involves defining a metric that aligns with specific model objectives and data characteristics.

    • Identify the problem: Understand the specific task (e.g., classification, regression) and the desired outcomes.

    • Define the loss: Create a mathematical expression that quantifies the difference between predicted and actual values.

    • Incorporate domain knowledge: Use insights from the specific field...

  • Answered by AI
  • Q2. Scenario based question on RAG & Agentic AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain the difference between has one and has and belongs to many in Ruby on Rails
  • Ans. 

    has_one is a one-to-one association while has_and_belongs_to_many is a many-to-many association in Ruby on Rails.

    • has_one is used when one record is associated with another record.

    • has_and_belongs_to_many is used when multiple records are associated with multiple records.

    • has_one creates a foreign key in the associated record's table.

    • has_and_belongs_to_many creates a join table to store the associations.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to change

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Simple , basic programming skills are enough

Round 2 - Technical 

(1 Question)

  • Q1. Interview is mostly on DBMS,and Daya structures
Round 3 - Behavioral 

(1 Question)

  • Q1. Favorite subject, Hobbies,and relation woth technology
Round 4 - HR 

(1 Question)

  • Q1. Favorite subject, inspiration

Interview Preparation Tips

Interview preparation tips for other job seekers - Know something about new technologies, that will help you standout from others.

SDE Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

SubString - From a string find all the possible substrings following a pattern

Top trending discussions

View All
Interview Tips & Stories
2w
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 Veltris?
Ask anonymously on communities.

Veltris Interview FAQs

How many rounds are there in Veltris interview?
Veltris interview process usually has 2-3 rounds. The most common rounds in the Veltris interview process are Technical, Resume Shortlist and HR.
How to prepare for Veltris 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 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?

Some of the top questions asked at the Veltris interview -

  1. difference b/w controled and uncontroled components, how many project are comp...read more
  2. What is the role of activation functions in neural networks, and how do they in...read more
  3. How does a machine learning model acquire knowledge from training data, and wha...read more
What are the most common questions asked in Veltris HR round?

The most common HR questions asked in Veltris interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Why should we hire y...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.

Overall Interview Experience Rating

3.5/5

based on 20 interview experiences

Difficulty level

Easy 21%
Moderate 71%
Hard 7%

Duration

Less than 2 weeks 79%
More than 8 weeks 21%
View more
Join Veltris Innovate, Accelerate and Transform

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Apisero Interview Questions
4.3
 • 66 Interviews
Softenger Interview Questions
4.0
 • 59 Interviews
DataMetica Interview Questions
3.5
 • 45 Interviews
View all

Veltris Reviews and Ratings

based on 197 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 197 Reviews and Ratings
Senior Engineer Java

Hyderabad / Secunderabad

10-12 Yrs

Not Disclosed

Front End Engineer - React

Hyderabad / Secunderabad

5-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
61 salaries
unlock blur

₹4 L/yr - ₹11.6 L/yr

Senior Software Engineer
50 salaries
unlock blur

₹10.6 L/yr - ₹18.5 L/yr

Senior Engineer
41 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Video Specialist
34 salaries
unlock blur

₹3.4 L/yr - ₹14.5 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.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview