Upload Button Icon Add office photos

Filter interviews by

Spa Capital Service Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. API related questions
  • Q2. Soap, rest api details
  • Q3. XML, Json related questions
  • Q4. Prioritisation based questions
  • Q5. Case study related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Questions on fundamental concepts of cybersecurity.
  • Q2. What are the Business As Usual (BAU) activities in your current company, and what is the rationale behind them?
  • Q3. Will give a scenario and questions based on that.
  • Q4. Can you describe a challenging situation you faced and how you overcame it?
  • Q5. What types of high and critical alerts have you handled, and what steps did you take to resolve them?
  • Ans. 

    I have handled high and critical alerts related to malware infections, data breaches, and phishing attacks.

    • Identifying the source and scope of the alert

    • Isolating affected systems to prevent further damage

    • Implementing security patches and updates

    • Conducting forensic analysis to determine the extent of the breach

    • Collaborating with IT teams to strengthen security measures

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Few similar questions asked in 1st round.
  • Q2. Will expect an understanding of security concepts in a bit more detailed manner.
  • Q3. What is the architecture of a Security Information and Event Management (SIEM) tool?
  • Ans. 

    SIEM tool architecture includes data collection, normalization, correlation, and reporting components.

    • Data collection: Gathers security data from various sources like logs, network traffic, and endpoints.

    • Normalization: Standardizes the collected data into a common format for analysis.

    • Correlation: Identifies patterns and relationships in the data to detect security incidents.

    • Reporting: Generates reports and alerts based...

  • Answered by AI
  • Q4. Scenario based questions.
Round 3 - HR 

(6 Questions)

  • Q1. Tell me about yourself.
  • Q2. What information do you have about the company?
  • Q3. What are the reasons for choosing this company?
  • Q4. Will discuss on general things about you and your previous employers.
  • Q5. What is your reason for leaving your current company?
  • Q6. What is your current salary, and what are your salary expectations?

Interview Preparation Tips

Topics to prepare for TSYS|Total System Services Information Security Analyst interview:
  • SIEM
  • Information Security
  • EDR
  • Incident management
Interview preparation tips for other job seekers - Be thorough with your Business as Usual (BAU) tasks. Have confidence and avoid including information in your resume that you are not familiar with. Demonstrate your potential by showing a willingness to learn and adapt.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Birla Institute of Technology and Science (BITS), Pilani and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a skilled DOT NET Developer with 5 years of experience in developing web applications and software solutions.

    • 5 years of experience in DOT NET development

    • Proficient in developing web applications and software solutions

    • Strong knowledge of C#, ASP.NET, MVC, and SQL Server

    • Experience with front-end technologies like HTML, CSS, and JavaScript

    • Familiar with Agile development methodologies

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

    I have worked on various projects including e-commerce websites, inventory management systems, and data analysis tools.

    • Developed e-commerce website using ASP.NET MVC and SQL Server for backend

    • Implemented inventory management system using C# and Entity Framework

    • Created data analysis tool using LINQ and JavaScript for frontend

  • Answered by AI
  • Q3. Brief the OOPS concepts used in your projects
  • Ans. 

    OOPS concepts used in projects include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Reusing code by creating a new class based on an existing class.

    • Encapsulation: Restricting access to certain components of an object.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q4. What do you know about SQL
  • Ans. 

    SQL is a programming language used for managing and manipulating databases.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks like querying data, updating data, and creating databases

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE

    • SQL is used in various database management systems like MySQL, SQL Server, Oracle

  • Answered by AI
  • Q5. Logical question

Interview Preparation Tips

Topics to prepare for 5paisa Capital Ltd. DOT NET Developer interview:
  • MERN
  • C#
  • Dot net

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. He asked me mainly sql questions
  • Q2. After sql , he asked tableau questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepared well..they asked to write the queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction and other family related questions
  • Q2. Articleship Intership experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Simple java questions, one coding question and one design question

Round 2 - Technical 

(5 Questions)

  • Q1. What is visitor pattern?
  • Ans. 

    Visitor pattern is a design pattern where a visitor class is used to perform operations on elements of a data structure.

    • Visitor pattern allows adding new operations to existing classes without modifying them

    • It separates the algorithm from the object structure on which it operates

    • Commonly used in compilers, interpreters, and other complex systems

  • Answered by AI
  • Q2. You have a 2d array {{1,2},{1,3},{5,6}}. Calculate the sum of elements of 1st position in every array with Java 8.
  • Ans. 

    Calculate sum of elements at 1st position in each array using Java 8.

    • Use Java 8 stream to map each array to its 1st element and then sum them up.

    • Example: {{1,2},{1,3},{5,6}} -> 1 + 1 + 5 = 7

  • Answered by AI
  • Q3. Design Thread collector class
  • Ans. 

    Thread collector class to manage and organize threads in a system

    • Create a ThreadCollector class with methods to add, remove, and retrieve threads

    • Implement a data structure like a list or queue to store the threads

    • Ensure thread safety by using synchronization mechanisms like locks or semaphores

  • Answered by AI
  • Q4. What is volatile?
  • Ans. 

    Volatile refers to a type of memory storage that is temporary and can change frequently.

    • Volatile memory loses its data when power is turned off, unlike non-volatile memory.

    • Volatile memory is commonly used for temporary storage of data that needs to be quickly accessed and modified.

    • Examples of volatile memory include RAM (Random Access Memory) in computers and cache memory in processors.

  • Answered by AI
  • Q5. Sql query to remove duplicates
  • Ans. 

    Use the DISTINCT keyword in a SELECT statement to remove duplicates from a table.

    • Use the SELECT DISTINCT statement to retrieve unique rows from a table.

    • For example: SELECT DISTINCT column_name FROM table_name;

    • Another way is to use the GROUP BY clause with the COUNT() function to remove duplicates.

    • For example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Why do you think you are fit for this role?
  • Q2. Why are you leaving your current company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities

    • Looking for career advancement

    • Seeking a more innovative and dynamic work environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager seems to be very rude here as he cut my interview midway and said we should not proceed as we are not a good match for each other. Very unprofessional approach. Study java and designing for technical rounds.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is cursor, Sequence, Sql related questions
  • Q2. Java related questions
  • Q3. Questions based on Resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sales process, technical knowledge
  • Q2. Marketing, closing skill and telecommunication

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence give your best

Ksdk Interview Questions & Answers

Alankit user image Anonymous

posted on 9 Sep 2024

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

(5 Questions)

  • Q1. Ecom express customer XXXXX
  • Q2. And you will be free o
  • Q3. Goodmoxrningsirmdjf
  • Q4. Ecom express XXXXX
  • Q5. Ecom expresscustomerserviceand

Interview Preparation Tips

Interview preparation tips for other job seekers - Ecom express customer service representative nomber XXXXX

Senior Engineer Interview Questions & Answers

Axis Mutual Fund user image Shruti Mahavarthayajula

posted on 6 Nov 2024

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

I applied via Referral

Round 1 - One-on-one 

(2 Questions)

  • Q1. General market direction
  • Q2. Mutual fund industry size
  • Ans. 

    The mutual fund industry size refers to the total value of assets under management by mutual funds.

    • The size of the mutual fund industry can be measured by the total assets under management (AUM) of all mutual funds.

    • It includes both equity and debt mutual funds, as well as other types like money market funds.

    • The industry size can vary greatly depending on market conditions and investor sentiment.

    • As of 2021, the global m...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location negotiations

Spa Capital Service Interview FAQs

How to prepare for Spa Capital Service 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 Spa Capital Service. The most common topics and skills that interviewers at Spa Capital Service expect are General Insurance, Business Development, Insurance Broking, New Business and Underwriting.

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
L&T Finance Interview Questions
4.0
 • 143 Interviews
Bajaj Capital Interview Questions
3.8
 • 77 Interviews
Edelweiss Interview Questions
3.9
 • 57 Interviews
View all

Spa Capital Service Reviews and Ratings

based on 32 reviews

3.6/5

Rating in categories

3.1

Skill development

3.4

Work-Life balance

2.9

Salary & Benefits

3.2

Job Security

2.9

Company culture

2.9

Promotions/Appraisal

3.3

Work Satisfaction

Explore 32 Reviews and Ratings
Assistant Manager
13 salaries
unlock blur

₹3.6 L/yr - ₹5.2 L/yr

Manager
9 salaries
unlock blur

₹5.7 L/yr - ₹8.6 L/yr

Relationship Executive
7 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Back Office Executive
6 salaries
unlock blur

₹1 L/yr - ₹2.5 L/yr

Senior Manager
6 salaries
unlock blur

₹8.1 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Spa Capital Service with

Edelweiss

3.9
Compare

Bajaj Capital

3.8
Compare

Kotak Mahindra Bank

3.8
Compare

HDFC Bank

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview