Upload Button Icon Add office photos
Engaged Employer

i

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

Srei Equipment Finance Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Srei Equipment Finance Senior Engineer Interview Questions and Answers

Updated 16 Apr 2024

Srei Equipment Finance Senior Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Not so hard with minimum practice of aptitude sample paper

Round 2 - Group Discussion 

You have to be active

Round 3 - HR 

(5 Questions)

  • Q1. Introduction of yours
  • Q2. Company establishment
  • Q3. Why you want to join this company
  • Q4. What's the reason for leaving current job
  • Q5. What salary you expect

Interview questions from similar companies

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 Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Get all permutations of [1,2,3]
  • Ans. 

    Generate all permutations of [1,2,3] as array of strings

    • Use recursion to generate all possible permutations

    • Swap elements to create different permutations

    • Base case: when only one element is left, add to result array

  • Answered by AI
  • Q2. What is the purpose of the slice function in Redux Toolkit?
  • Ans. 

    The slice function in Redux Toolkit is used to create a copy of a portion of an array state.

    • Allows for immutably updating arrays in Redux state by creating a new array with a subset of elements.

    • Can be used to remove elements from an array without mutating the original state.

    • Example: const newState = state.slice(0, 2) will create a new array with the first 2 elements of the original state.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How would you find object is Array without using Array.isArray() function?
  • Ans. 

    Check if an object is an array without using Array.isArray() function

    • Check if the object has a length property

    • Check if the object has a slice method

    • Check if the object has an index of 0

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Some basic aptitube and reasoning problems were asked. Easily solvable.

Round 2 - Coding Test 

They asked multiple choice questions on oracle sql and pl/sql emphasizing more on reading a code block ask output questions. These were of medium hardness.

Round 3 - Technical 

(1 Question)

  • Q1. They asked what you do on daily basis in your work. What is most complex thing you have implemented and some complex questions on multilevel plsql collection module. It lasted for 1.5 hrs
Round 4 - One-on-one 

(4 Questions)

  • Q1. Questions regarding Oracle architecture and its component
  • Q2. Question on live implementation of multilevel collection, bulk collect and record limiting and bulk exception handleing.
  • Q3. Dml error logging functionality
  • Ans. 

    DML error logging functionality allows for capturing errors during data manipulation language operations.

    • DML error logging can be enabled at the table level using the LOG ERRORS clause in DML statements.

    • It helps in identifying and resolving data issues without causing the entire transaction to fail.

    • Errors are logged in a separate error table, allowing the main operation to continue processing.

    • Example: INSERT INTO table...

  • Answered by AI
  • Q4. Query and join optimization
Round 5 - HR 

(1 Question)

  • Q1. Related to salary and what benefits they provide.

Senior Engineer Interview Questions & Answers

Wells Fargo user image SIRIGIRI SAI KUMAR

posted on 22 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

(2 Questions)

  • Q1. Hadoop basics on computing
  • Q2. Distribution basics for processing the data
Round 3 - Technical 

(2 Questions)

  • Q1. Architecture of bigdata systems
  • Ans. 

    Bigdata systems architecture involves distributed storage, processing, and analysis of large volumes of data.

    • Utilize distributed file systems like HDFS for storage

    • Use parallel processing frameworks like Apache Spark or Hadoop for data processing

    • Implement data pipelines for ETL processes

    • Leverage NoSQL databases like Cassandra or MongoDB for real-time data querying

    • Consider data partitioning and replication for fault tole

  • Answered by AI
  • Q2. How will the bigdata system distribution for storage andcompute happen
  • Ans. 

    Big data system distribution for storage and compute involves partitioning data across multiple nodes for efficient processing.

    • Data is partitioned across multiple nodes to distribute storage and processing load.

    • Hadoop Distributed File System (HDFS) is commonly used for storage distribution.

    • Apache Spark utilizes a cluster computing framework for distributed computing.

    • Data locality is important to minimize data transfer ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sorting of 1d array
  • Ans. 

    Sorting a 1d array of strings

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort

    • Consider using built-in sorting functions in programming languages like sort() in Python or Arrays.sort() in Java

    • Ensure to compare strings correctly based on their ASCII values

  • Answered by AI
  • Q2. Basics of Camunda, Java and Spring boot.

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Software Engineer interview:
  • Java
  • DSA
  • Camunda
  • Spring Boot
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is state in react
  • Ans. 

    State in React is a JavaScript object that stores data and determines how a component renders and behaves.

    • State is mutable and can be updated using the setState() method

    • State should be used for data that will change over time and affect the component's rendering

    • State should not be modified directly, use setState() instead

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is Webpack
  • Ans. 

    Webpack is a module bundler for JavaScript applications.

    • Webpack takes modules with dependencies and generates static assets representing those modules.

    • It can handle various types of assets such as JavaScript, CSS, and images.

    • Webpack allows for code splitting, lazy loading, and hot module replacement.

    • It is commonly used in modern web development workflows to optimize and bundle code for production.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Sort array and questions on project
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 Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Get all permutations of [1,2,3]
  • Ans. 

    Generate all permutations of [1,2,3] as array of strings

    • Use recursion to generate all possible permutations

    • Swap elements to create different permutations

    • Base case: when only one element is left, add to result array

  • Answered by AI
  • Q2. What is the purpose of the slice function in Redux Toolkit?
  • Ans. 

    The slice function in Redux Toolkit is used to create a copy of a portion of an array state.

    • Allows for immutably updating arrays in Redux state by creating a new array with a subset of elements.

    • Can be used to remove elements from an array without mutating the original state.

    • Example: const newState = state.slice(0, 2) will create a new array with the first 2 elements of the original state.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How would you find object is Array without using Array.isArray() function?
  • Ans. 

    Check if an object is an array without using Array.isArray() function

    • Check if the object has a length property

    • Check if the object has a slice method

    • Check if the object has an index of 0

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic array and vectors DSA questions

Round 2 - Technical 

(3 Questions)

  • Q1. Asked me about my past project and my contribution in it
  • Q2. Linux commands and c++ language control
  • Q3. Asked me to write last function i wrote and explain what it does
Round 3 - Behavioral 

(2 Questions)

  • Q1. Asked me about my past projects and my contribution
  • Q2. Checked my work ethics
Round 4 - HR 

(2 Questions)

  • Q1. Basic hr questions
  • Q2. Salary negotiation

Srei Equipment Finance Interview FAQs

How many rounds are there in Srei Equipment Finance Senior Engineer interview?
Srei Equipment Finance interview process usually has 3 rounds. The most common rounds in the Srei Equipment Finance interview process are HR, Aptitude Test and Group Discussion.

Tell us how to improve this page.

Srei Equipment Finance Senior Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 567 Interviews
Bajaj Finserv Interview Questions
4.0
 • 518 Interviews
Shriram Finance Interview Questions
4.1
 • 337 Interviews
Bajaj Finance Interview Questions
4.0
 • 298 Interviews
ICICI Securities Interview Questions
3.9
 • 158 Interviews
L&T Finance Interview Questions
3.9
 • 152 Interviews
Mahindra Finance Interview Questions
4.1
 • 150 Interviews
View all
Assistant Manager
112 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Manager
62 salaries
unlock blur

₹3.7 L/yr - ₹9.4 L/yr

Chief Manager
44 salaries
unlock blur

₹7 L/yr - ₹16.9 L/yr

Associate Vice President
39 salaries
unlock blur

₹15.6 L/yr - ₹27 L/yr

Senior Manager
38 salaries
unlock blur

₹5.9 L/yr - ₹7.9 L/yr

Explore more salaries
Compare Srei Equipment Finance with

Tata Capital

4.1
Compare

Reliance Money

3.7
Compare

Mahindra Finance

4.1
Compare

Shriram Finance

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