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
4.0

based on 174 Reviews

Filter interviews by

Veltris Senior Software Engineer Interview Questions and Answers

Updated 5 Mar 2024

Veltris Senior Software Engineer Interview Experiences

2 interviews found

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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. 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. Was good interview...prepare well!
Round 3 - Technical 

(1 Question)

  • Q1. Easy react basics

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best!

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. There were multiple questions on azure cloud and projects i worked on
  • Q2. Sql queries and scenario based azure questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Machine coding -- design and implement splitwise -- duration 1.5hr
  • Q2. Basic implemetation of split-wise
  • Ans. 

    Split-wise is a basic implementation to divide expenses among a group of people.

    • Create a function that takes in an array of expenses and participants

    • Calculate the total expense and divide it equally among participants

    • Return a list of strings showing who owes how much to whom

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Low and high level design of BookMyShow
  • Ans. 

    BookMyShow is a platform for booking movie tickets, event tickets, and other entertainment activities.

    • Low level design: Database schema for storing user information, ticket details, show timings, etc.

    • High level design: System architecture including front-end, back-end, and database components.

    • Example: Use of microservices for scalability and fault tolerance.

    • Example: Integration with payment gateways for seamless transa

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Functional Interface,java 8 features,predicate functions
Round 2 - One-on-one 

(1 Question)

  • Q1. General question & scenario based questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly on OOP's basic and some tricky questions related SOLID concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. .net core middleware
Round 3 - Technical 

(1 Question)

  • Q1. Manament discusion about your last project and responsibility
Round 4 - HR 

(1 Question)

  • Q1. Salary discusion and designation and preferred loaction

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Smart and trying to convivence them that you are good

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Total 35 questions, with 5 sections and time duration 35 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. What all the methods we have in API?
  • Ans. 

    The question is too broad to provide a specific answer.

    • APIs can have various methods such as GET, POST, PUT, DELETE, etc.

    • The methods in an API depend on the specific API being referred to.

    • Examples of API methods include 'getUser', 'createOrder', 'updateProfile', etc.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What problems you have faced during testing?
  • Ans. 

    I have faced issues with compatibility, performance, and user acceptance testing.

    • Compatibility issues with different browsers and operating systems

    • Performance issues with large datasets and high traffic

    • User acceptance testing revealed unexpected user behavior

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your skills and worked experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2022.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Mostly asked java springboot questions
  • Q2. What is interceptor
  • Ans. 

    An interceptor is a middleware component that intercepts incoming and outgoing HTTP requests in an application.

    • Interceptors can be used for logging, authentication, error handling, and modifying requests/responses.

    • In Angular, interceptors can be used to add headers to HTTP requests or handle errors globally.

    • In Spring framework, interceptors can be used for pre-processing and post-processing of requests.

    • Interceptors are...

  • Answered by AI
  • Q3. What are all functional interfaces available in java
  • Ans. 

    Functional interfaces in Java are interfaces with a single abstract method, used for lambda expressions and method references.

    • Functional interfaces can be found in the java.util.function package.

    • Examples of functional interfaces include Consumer, Supplier, Predicate, and Function.

    • Functional interfaces can be identified by the @FunctionalInterface annotation.

  • Answered by AI
  • Q4. Gatway implementation in spring boot
  • Ans. 

    Gateway implementation in Spring Boot allows for routing and filtering of incoming requests to different microservices.

    • Use Spring Cloud Gateway for implementing gateway in Spring Boot

    • Define routes and filters in application.properties or application.yml

    • Example: routes: - id: my_route uri: http://localhost:8080 predicates: - Path=/my_route/**

    • Example: filters: - AddRequestHeader=X-Request-Foo, Bar

  • Answered by AI
  • Q5. Java 8 coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well interms of coding

Skills evaluated in this interview

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

Interview Questionnaire 

9 Questions

  • Q1. Java oops concepts
  • Q2. Joins queries in MySQL
  • Q3. Git or GitHub
  • Q4. Cloud computing
  • Q5. Prime number programming
  • Q6. 2 max num in a array
  • Ans. 

    Find the two maximum numbers in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the first two elements of the sorted array.

  • Answered by AI
  • Q7. Java platform independent??
  • Q8. Primary key vs foreign key
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key establishes a link between two tables.

    • Primary key is used to enforce data integrity and ensure uniqueness of records.

    • Foreign key is used to establish relationships between tables and enforce referential integrity.

    • A table can have only one primary key, while it can have multiple foreign keys.

    • Primary key can be used as a foreign key in another table.

    • E...

  • Answered by AI
  • Q9. Rest API Webservices vs Soap Webservices
  • Ans. 

    REST API is lightweight and flexible, while SOAP is more structured and secure.

    • REST uses HTTP protocol and supports multiple data formats like JSON, XML, etc.

    • SOAP uses XML protocol and supports only XML data format.

    • REST is faster and consumes less bandwidth than SOAP.

    • SOAP has built-in security features like WS-Security and WS-Trust.

    • REST is easier to implement and maintain than SOAP.

    • SOAP is better suited for enterprise-...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Java weights more than 75% in the interview process so be ready with all the concepts and then SQL weights second...your almost done. If you know rest api and soap api development basics your done.

Skills evaluated in this interview

Veltris Interview FAQs

How many rounds are there in Veltris Senior Software Engineer interview?
Veltris interview process usually has 2-3 rounds. The most common rounds in the Veltris interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Veltris Senior 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 Veltris. The most common topics and skills that interviewers at Veltris expect are Cloud and Security.
What are the top questions asked in Veltris Senior Software Engineer interview?

Some of the top questions asked at the Veltris Senior Software Engineer interview -

  1. explain the difference between has one and has and belongs to many in Ruby on ...read more
  2. Was good interview...prepare we...read more
  3. Easy react bas...read more

Tell us how to improve this page.

Veltris Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Join Veltris Innovate, Accelerate and Transform
Veltris Senior Software Engineer Salary
based on 48 salaries
₹6.5 L/yr - ₹22 L/yr
9% less than the average Senior Software Engineer Salary in India
View more details

Veltris Senior Software Engineer Reviews and Ratings

based on 6 reviews

3.2/5

Rating in categories

3.2

Skill development

2.8

Work-life balance

3.6

Salary

1.8

Job security

3.2

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Senior Software Engineer
48 salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Senior Engineer
40 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Video Specialist
32 salaries
unlock blur

₹3.4 L/yr - ₹13.6 L/yr

Senior Process Associate
25 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Veltris 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