Upload Button Icon Add office photos
Engaged Employer

i

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

SAMCO Securities Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SAMCO Securities Interview Questions and Answers

Updated 18 Jun 2025
Popular Designations

21 Interview questions

A PHP Developer was asked 1mo ago
Q. Explain Query Normalization in MySQL?
Ans. 

Query normalization in MySQL optimizes queries for better performance and consistency in results.

  • Normalization reduces data redundancy by organizing tables and relationships.

  • It involves dividing large tables into smaller ones and defining relationships.

  • Example: Instead of storing customer data in every order, create a separate 'customers' table.

  • Normalization helps in maintaining data integrity and consistency.

  • It c...

View all PHP Developer interview questions
A PHP Developer was asked 1mo ago
Q. How can you load a large amount of data without reloading the page or rendering?
Ans. 

Use AJAX and pagination to load large datasets without page refresh.

  • Utilize AJAX calls to fetch data asynchronously from the server.

  • Implement pagination to load data in chunks, reducing initial load time.

  • Use JavaScript frameworks like React or Vue.js for efficient rendering.

  • Consider WebSockets for real-time data updates without page reload.

  • Optimize server-side queries to handle large datasets efficiently.

View all PHP Developer interview questions
A PHP Developer was asked 1mo ago
Q. What is the purpose of indexing a table in MySQL?
Ans. 

Indexing in MySQL improves query performance by allowing faster data retrieval from tables.

  • Indexes speed up data retrieval operations, reducing the time taken for queries.

  • They help in optimizing search operations, especially on large datasets.

  • For example, a 'WHERE' clause on an indexed column can significantly reduce search time.

  • Indexes can also enforce uniqueness, preventing duplicate entries in a column.

  • Using co...

View all PHP Developer interview questions
A KYC Team Lead was asked 1mo ago
Q. How will you differentiate between a good candidate and a bad candidate?
Ans. 

Good candidates demonstrate skills, experience, and cultural fit, while bad candidates lack these essential qualities.

  • Experience: Good candidates have relevant KYC experience, such as working with AML regulations, while bad candidates may lack this background.

  • Attention to Detail: A good candidate meticulously reviews documents for discrepancies, whereas a bad candidate may overlook critical errors.

  • Communication Sk...

View all KYC Team Lead interview questions
A React Native Developer was asked 1mo ago
Q. What are the key concepts of Redux and how does it facilitate state management?
Ans. 

Redux is a predictable state container for JavaScript apps, enabling centralized state management and unidirectional data flow.

  • Single Source of Truth: Redux maintains the entire application state in a single store, making it easier to manage and debug.

  • Actions: Actions are plain JavaScript objects that describe changes to the state. For example, { type: 'ADD_TODO', payload: 'Learn Redux' }.

  • Reducers: Reducers are pu...

View all React Native Developer interview questions
A React Native Developer was asked 1mo ago
Q. What are the basic concepts of React?
Ans. 

React is a JavaScript library for building user interfaces using components and state management.

  • Components: Reusable UI elements. Example: <Button /> can be reused across the app.

  • JSX: Syntax extension that allows writing HTML-like code in JavaScript. Example: const element = <h1>Hello, World!</h1>;

  • State: An object that determines how that component renders & behaves. Example: this.setState({...

View all React Native Developer interview questions
A Market Research Associate was asked 2mo ago
Q. What is a Mutual Fund and how does it work as an Industry?
Ans. 

A mutual fund pools money from investors to invest in diversified assets, managed by professionals for potential returns.

  • Mutual funds are investment vehicles that gather money from multiple investors to purchase securities.

  • They are managed by professional fund managers who make investment decisions on behalf of the investors.

  • Investors buy shares in the mutual fund, and the value of these shares fluctuates based on...

View all Market Research Associate interview questions
Are these interview questions helpful?
A Customer Success Associate was asked 2mo ago
Q. Tell me about your past experiences in a company.
Ans. 

I have extensive experience in customer success, focusing on relationship building and proactive problem-solving.

  • Managed a portfolio of 50+ clients, ensuring their needs were met and fostering long-term relationships.

  • Implemented a customer feedback system that increased satisfaction scores by 20% within six months.

  • Conducted regular check-ins and training sessions, resulting in a 30% increase in product adoption am...

View all Customer Success Associate interview questions
A KYC Executive was asked 2mo ago
Q. What is the share market?
Ans. 

The share market is a platform where shares of publicly traded companies are bought and sold, reflecting their value and performance.

  • The share market facilitates the buying and selling of stocks, representing ownership in companies.

  • It operates through exchanges like the NYSE or NASDAQ, where transactions occur.

  • Investors can earn returns through capital gains and dividends from their shares.

  • For example, if you buy ...

View all KYC Executive interview questions
A Sales Executive was asked 2mo ago
Q. How would you sell this pen?
Ans. 

This pen is not just a writing tool; it's a gateway to creativity, ideas, and communication, designed for every occasion.

  • Quality Ink: The pen features smooth-flowing ink that ensures a consistent writing experience, perfect for signing important documents.

  • Ergonomic Design: Its comfortable grip allows for extended writing sessions without fatigue, ideal for students or professionals.

  • Versatile Use: Whether you're jo...

View all Sales Executive interview questions

SAMCO Securities Interview Experiences

83 interviews found

Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2025

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you introduce yourself and describe your current job responsibilities?
  • Ans. 

    I am a seasoned Algorithmic Developer with experience in designing and implementing complex algorithms.

    • Currently, I am responsible for developing and optimizing algorithms for data analysis and machine learning applications.

    • I work closely with cross-functional teams to understand project requirements and design efficient algorithms to meet those needs.

    • I also conduct performance analysis and optimization of existing alg...

  • Answered by AI
  • Q2. How did you address challenges you faced in your work?
  • Ans. 

    I address challenges by breaking them down, seeking help when needed, and staying persistent.

    • Break down the challenge into smaller tasks to tackle one at a time

    • Seek help from colleagues or mentors for guidance and support

    • Stay persistent and keep trying different approaches until a solution is found

  • Answered by AI
Round 2 - Assignment 

Create a market strategy in excel consisting of logic and pnl trades and execution.

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is session in php?
  • Ans. 

    A session in PHP is a way to store user data across multiple pages during a user's visit to a website.

    • Sessions are initiated using session_start() function.

    • Session data is stored on the server, identified by a unique session ID.

    • Session variables can be accessed using the $_SESSION superglobal array.

    • Example: $_SESSION['username'] = 'JohnDoe';

    • Sessions are commonly used for user authentication and maintaining state.

  • Answered by AI
  • Q2. What is difference between "echo" and "print" in php.
  • Ans. 

    In PHP, 'echo' and 'print' are both used to output data, but they have key differences in usage and behavior.

    • 'echo' can take multiple parameters, while 'print' can only take one.

    • 'echo' does not return a value, whereas 'print' returns 1.

    • 'echo' is slightly faster than 'print' because it doesn't return a value.

    • Example of echo: echo 'Hello', ' World!'; // Outputs: Hello World!

    • Example of print: print 'Hello World!'; // Outp...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Js questions like hooks, variables, etc
  • Q2. React native based basic questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Equity market oriented
  • Q2. Derivatives and market related
  • Q3. Career after 5 years
  • Ans. 

    In 5 years, I aim to have advanced to a senior product manager role, leading a team and driving strategic product initiatives.

    • Continuously learning and growing in product management skills

    • Building strong relationships with cross-functional teams

    • Taking on more responsibilities and leadership roles

    • Contributing to the overall success and growth of the company

  • Answered by AI
  • Q4. Aspirations for this role?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep searching guys, Lord has some plan and you will make it.

KYC Executive Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - ........ ...... ........ .................... ............................ ........................... Nothing
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - .. .. .. ... .. .. .. .. ... Nothing ..... NA ..
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self

Team Lead Interview Questions & Answers

user image Anonymous

posted on 8 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

KYC Executive Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - ................................ ............................... ........................ Nothing

HR Executive Interview Questions & Answers

user image Anonymous

posted on 2 Apr 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are the reasons you believe we should hire you?
  • Ans. 

    I bring a unique blend of skills, experience, and passion that aligns perfectly with your company's goals and values.

    • Proven track record of success in previous roles, such as increasing sales by 30% in my last position.

    • Strong communication skills, demonstrated by leading cross-functional teams to complete projects ahead of schedule.

    • Adaptability to changing environments, as shown by my ability to quickly learn new softw...

  • Answered by AI
  • Q2. Why do you want to work in our organization?
  • Ans. 

    I admire your organization's commitment to innovation and employee development, which aligns with my career goals and values.

    • Your organization's reputation for fostering a collaborative work environment is appealing, as I thrive in team-oriented settings.

    • I am impressed by your commitment to sustainability and community engagement, which resonates with my personal values.

    • The opportunities for professional growth and con...

  • Answered by AI

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 SAMCO Securities?
Ask anonymously on communities.

SAMCO Securities Interview FAQs

How many rounds are there in SAMCO Securities interview?
SAMCO Securities interview process usually has 1-2 rounds. The most common rounds in the SAMCO Securities interview process are HR, Assignment and Technical.
How to prepare for SAMCO Securities 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 SAMCO Securities. The most common topics and skills that interviewers at SAMCO Securities expect are Account Planning, Accounting, Bfsi Sales, Business Development Management and Cae.
What are the top questions asked in SAMCO Securities interview?

Some of the top questions asked at the SAMCO Securities interview -

  1. If we give both id and class to an element which one's style will apply fi...read more
  2. What have you done in email marketing, whatsapp, mobile marketing and marketing...read more
  3. What are the key concepts of Redux and how does it facilitate state manageme...read more
How long is the SAMCO Securities interview process?

The duration of SAMCO Securities 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

4.6/5

based on 73 interview experiences

Difficulty level

Easy 18%
Moderate 82%

Duration

Less than 2 weeks 99%
2-4 weeks 1%
View more

Interview Questions from Similar Companies

Leap Finance Interview Questions
3.6
 • 59 Interviews
OSB India Interview Questions
3.6
 • 32 Interviews
Pamac Finserve Interview Questions
3.3
 • 25 Interviews
TMF Group Interview Questions
3.8
 • 22 Interviews
Travelex Interview Questions
3.5
 • 19 Interviews
View all

SAMCO Securities Reviews and Ratings

based on 192 reviews

4.0/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.4

Salary

3.9

Job security

4.1

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 192 Reviews and Ratings
Business Development Manager
38 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Relationship Manager
34 salaries
unlock blur

₹2.3 L/yr - ₹8.4 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹4.6 L/yr - ₹13.5 L/yr

Software Engineer
24 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Software Developer
23 salaries
unlock blur

₹3.2 L/yr - ₹10.8 L/yr

Explore more salaries
Compare SAMCO Securities with

State Street Syntel

3.7
Compare

Indusind Marketing & Financial Services

3.9
Compare

Home First Finance Company India

3.7
Compare

Pamac Finserve

3.3
Compare
write
Share an Interview