Upload Button Icon Add office photos
Engaged Employer

i

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

Saama Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Saama Technologies Interview Questions and Answers

Updated 29 Jun 2025
Popular Designations

24 Interview questions

An Office Assistant was asked 1w ago
Q. What interests you about the State Bank of India?
Ans. 

I'm drawn to the State Bank of India for its rich heritage, commitment to customer service, and role in India's economic growth.

  • Strong legacy: SBI has a history of over 200 years, making it a trusted institution.

  • Customer-centric approach: SBI prioritizes customer satisfaction, evident in its various services and support.

  • Diverse opportunities: Working at SBI offers a chance to engage with a wide range of financial ...

View all Office Assistant interview questions
A Python and Django Developer was asked 2mo ago
Q. Write a function to find the frequency of each character in a given string.
Ans. 

To find the frequency of characters in a string, count occurrences of each character and present them in a structured format.

  • Use a dictionary: Iterate through the string and use a dictionary to count occurrences. Example: {'a': 3, 'b': 2}.

  • Utilize collections.Counter: Python's collections module has a Counter class that simplifies counting. Example: Counter('banana') returns Counter({'a': 3, 'b': 2}).

  • Ignore case: T...

View all Python and Django Developer interview questions
A Senior Java Developer was asked 3mo ago
Q. Write basic code using Java 8 features.
Ans. 

Java 8 introduced features like Streams, Lambdas, and Optional for more concise and functional programming.

  • Streams: Use streams to process collections in a functional style. Example: List<String> names = Arrays.asList('John', 'Jane'); names.stream().filter(name -> name.startsWith('J')).forEach(System.out::println);

  • Lambdas: Simplify code with lambda expressions. Example: Runnable task = () -> System.out...

View all Senior Java Developer interview questions
A Senior Software Engineer was asked 12mo ago
Q. Write a function to count the number of occurrences of a given letter in a string.
Ans. 

Count occurrences of a letter in a string.

  • Iterate through each character in the string and count occurrences of the specified letter.

  • Use a hashmap to store the count of each letter.

  • Handle both uppercase and lowercase letters to ensure accurate counting.

View all Senior Software Engineer interview questions
A Reactjs Developer was asked
Q. Create a CRUD application. Given an array of objects, render the list in a table. Implement edit, delete, and sort list functionalities based on object properties.
Ans. 

Create a CRUD app to render, edit, delete, and sort a list of objects in a table.

  • Create a React component to render a table with data from the array of objects.

  • Implement functions for editing and deleting objects from the list.

  • Add functionality to sort the list based on object properties.

  • Use state and props to manage data and re-render the table when changes occur.

View all Reactjs Developer interview questions
A Production Engineer was asked
Q. Explain a real-time project scenario.
Ans. 

Real-time project scenario involves monitoring and controlling processes as they happen, ensuring timely responses and adjustments.

  • Real-time data collection and analysis

  • Immediate feedback and decision-making

  • Continuous monitoring and optimization

  • Examples: real-time monitoring of manufacturing processes, real-time traffic management systems

View all Production Engineer interview questions
A Data Engineer was asked
Q. Write PySpark code to join two tables and create a DataFrame.
Ans. 

Join two tables in PySpark code and DataFrame

  • Create two DataFrames from the tables

  • Specify the join condition using join() function

  • Select the columns to be displayed using select() function

  • Use show() function to display the result

View all Data Engineer interview questions
Are these interview questions helpful?
A Senior Consultant was asked
Q. How do you perform data validation in Hive?
Ans. 

Data validation in Hive involves using built-in functions and custom scripts to ensure data accuracy and consistency.

  • Use built-in functions like IS NULL, IS NOT NULL, and COALESCE to check for missing or null values

  • Use regular expressions and pattern matching to validate data formats

  • Write custom scripts to perform more complex data validation tasks

  • Perform data profiling to identify potential data quality issues

  • Use...

View all Senior Consultant interview questions
A Senior Consultant was asked
Q. Can you provide a deep dive into your expertise with technologies like Spark, explaining how DAG works?
Ans. 

Spark DAG (Directed Acyclic Graph) represents the execution plan for Spark jobs, optimizing data processing tasks.

  • A DAG is a graph structure that consists of nodes (operations) and edges (data flow) without cycles.

  • In Spark, when an action (like count or collect) is called, it triggers the creation of a DAG.

  • Each transformation (like map, filter) creates a new RDD, forming a lineage that Spark uses to optimize execu...

View all Senior Consultant interview questions
A Senior Business Intelligence Consultant was asked
Q. What is the CALCULATE function in Power BI?
Ans. 

Calculate function is used to create new calculated columns or measures in Power BI.

  • Allows users to create custom calculations based on existing data

  • Can be used to create new columns or measures

  • Syntax: CALCULATE(, )

  • Example: CALCULATE(SUM(Sales[Revenue]), FILTER(Sales, Sales[Year] = 2021))

View all Senior Business Intelligence Consultant interview questions

Saama Technologies Interview Experiences

57 interviews found

I applied via Approached by Company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Concepts of Power BI
  • Ans. 

    Power BI is a business analytics service by Microsoft that provides interactive visualizations and business intelligence capabilities.

    • Power BI is a cloud-based service that allows users to connect, analyze, and visualize data from a variety of sources

    • It offers a range of data visualization tools, including charts, graphs, and maps

    • Power BI also includes natural language processing capabilities, allowing users to ask que...

  • Answered by AI
  • Q2. Concepts of Data Warehousing.
  • Q3. SQL Questions. Functions in SQL, what are views, what are joins.
Round 2 - Technical 

(5 Questions)

  • Q1. What are bookmarks in Power BI.
  • Ans. 

    Bookmarks in Power BI are a way to save the current view of a report and return to it later.

    • Bookmarks capture the current state of visuals, filters, and slicers in a report.

    • They can be used to create custom navigation experiences for users.

    • Bookmarks can also be used to create interactive storytelling experiences.

    • They can be accessed and managed through the Bookmarks pane in Power BI Desktop.

    • Bookmarks can be exported an...

  • Answered by AI
  • Q2. What is storage mode in Power BI.
  • Ans. 

    Storage mode in Power BI determines how data is stored and processed in memory.

    • There are two storage modes in Power BI: Import and DirectQuery.

    • Import mode loads data into Power BI's internal memory for faster processing.

    • DirectQuery mode connects to the data source in real-time and queries the data on demand.

    • Import mode is recommended for smaller datasets, while DirectQuery is better for larger datasets.

    • Choosing the rig...

  • Answered by AI
  • Q3. What is Calculate function in Power BI.
  • Ans. 

    Calculate function is used to create new calculated columns or measures in Power BI.

    • Allows users to create custom calculations based on existing data

    • Can be used to create new columns or measures

    • Syntax: CALCULATE(, )

    • Example: CALCULATE(SUM(Sales[Revenue]), FILTER(Sales, Sales[Year] = 2021))

  • Answered by AI
  • Q4. What are parameters in power bi.
  • Ans. 

    Parameters in Power BI are user-defined values that can be used to filter data in reports and dashboards.

    • Parameters allow users to interact with the report and customize the data they see.

    • They can be used to filter data, set default values, and control the behavior of visuals.

    • Parameters can be created for various data types, such as text, numbers, dates, and lists.

    • They can also be used in DAX expressions to create dyna...

  • Answered by AI
  • Q5. What are different roles in Power BI Service.
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Saama

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep knowledge and skills of your domain. You'll sail the interview.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. React Hooks and Project experience
Round 2 - Technical 

(2 Questions)

  • Q1. Performance Optimization Techniques
  • Ans. 

    Performance optimization techniques for React JS frontend development

    • Use React.memo for optimizing functional components

    • Avoid unnecessary re-renders by using shouldComponentUpdate or PureComponent for class components

    • Implement code splitting to reduce initial load time

    • Use lazy loading for components that are not immediately needed

    • Optimize images and assets for faster loading times

    • Minimize the use of inline styles and u...

  • Answered by AI
  • Q2. Lazy Loading and other ques related to that
Round 3 - HR 

(1 Question)

  • Q1. General HR Interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. What attitudes do you appreciate in people?
  • Ans. 

    I value positivity, integrity, and teamwork, as they foster a collaborative and productive work environment.

    • Positivity: A positive attitude can uplift the entire team, making challenging tasks feel more manageable. For example, a colleague who encourages others during busy periods can boost morale.

    • Integrity: Honesty and transparency build trust among team members. For instance, a storekeeper who accurately reports inve...

  • Answered by AI
  • Q2. What are the best regards you extend to others?
  • Ans. 

    Extending best regards involves showing respect, kindness, and professionalism in all interactions with colleagues and customers.

    • Respectful Communication: Always address others politely, using their names and maintaining a friendly tone, such as saying 'Good morning, how can I assist you today?'

    • Active Listening: Show genuine interest in others' concerns by listening attentively and responding thoughtfully, like nodding...

  • Answered by AI
  • Q3. What expressions of love do you show to the people around you?
  • Ans. 

    I express love through kindness, support, and appreciation, fostering a positive environment for those around me.

    • Acts of Kindness: I often help colleagues with their tasks, showing that I care about their workload and well-being.

    • Words of Affirmation: I regularly compliment team members on their achievements, boosting their confidence and morale.

    • Listening: I make time to listen to others' concerns, demonstrating empathy...

  • Answered by AI
  • Q4. What experience does it take to work
  • Ans. 

    A Senior Store Keeper requires extensive experience in inventory management, logistics, and team leadership to ensure efficient operations.

    • Inventory Management: Proven experience in managing stock levels, conducting regular audits, and implementing inventory control systems to minimize losses.

    • Logistics Coordination: Experience in coordinating the receipt, storage, and distribution of goods, ensuring timely delivery and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Honest

HR Executive Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2024

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Case Study 

On hiring the right candidate for the role on the basis of skillsets required

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction to HR Policies
  • Ans. 

    HR policies are guidelines and procedures implemented by an organization to manage its employees and ensure compliance with laws and regulations.

    • HR policies outline expectations for employee behavior and performance.

    • They cover areas such as recruitment, training, compensation, benefits, and disciplinary actions.

    • Examples include a code of conduct, anti-discrimination policies, and leave policies.

    • HR policies help create ...

  • Answered by AI
  • Q2. Importance of HR & Policies
  • Ans. 

    HR is crucial for creating and implementing policies that ensure fair treatment of employees and compliance with laws.

    • HR ensures compliance with labor laws and regulations

    • HR policies help create a fair and inclusive work environment

    • HR handles employee relations and conflict resolution

    • HR plays a key role in recruitment, training, and performance management

  • Answered by AI

QA Engineer Interview Questions & Answers

user image Nachiket Pawar

posted on 18 Dec 2024

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

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

Round 1 - Assignment 

Sql question more and related to database

Data Engineer Interview Questions & Answers

user image Gautamee Jakinkar

posted on 29 May 2024

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

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

Round 1 - Assignment 

It was a written test where theoretical SQL questions were asked like primary key, foreign key, set operators and some queries

Round 2 - Technical 

(1 Question)

  • Q1. All SQL Concepts like Join, normalization, trigger, stored procedure, keys, drop truncate del difference, where having difference, Aggregate scaler window functions, fetch duplicate records query, acid pro...

Interview Preparation Tips

Topics to prepare for Saama Technologies Data Engineer interview:
  • SQL
  • Python
  • Pyspark
Interview preparation tips for other job seekers - Clear your concepts deeply with examples sothat you can able to explain it..
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 14 May 2025

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

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

  • Q1. Can you describe your experience within the industry?
  • Q2. What is workflow automation?
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. Frequency of string
  • Ans. 

    To find the frequency of characters in a string, count occurrences of each character and present them in a structured format.

    • Use a dictionary: Iterate through the string and use a dictionary to count occurrences. Example: {'a': 3, 'b': 2}.

    • Utilize collections.Counter: Python's collections module has a Counter class that simplifies counting. Example: Counter('banana') returns Counter({'a': 3, 'b': 2}).

    • Ignore case: To cou...

  • Answered by AI
  • Q2. Based on django
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Java, springboot, microservices
  • Q2. Basic coding using java 8
  • Ans. 

    Java 8 introduced features like Streams, Lambdas, and Optional for more concise and functional programming.

    • Streams: Use streams to process collections in a functional style. Example: List<String> names = Arrays.asList('John', 'Jane'); names.stream().filter(name -> name.startsWith('J')).forEach(System.out::println);

    • Lambdas: Simplify code with lambda expressions. Example: Runnable task = () -> System.out.prin...

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

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

Round 1 - Assignment 

All typing assignment

Round 2 - Group Discussion 

Group discussion is very important

Round 3 - Coding Test 

Coding test is very important

Interview Preparation Tips

Topics to prepare for Saama Technologies Microsoft Office Trainer interview:
  • MS Office
  • Excel
  • Powerpoint
Interview preparation tips for other job seekers - Yes

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Saama Technologies?
Ask anonymously on communities.

Saama Technologies Interview FAQs

How many rounds are there in Saama Technologies interview?
Saama Technologies interview process usually has 2-3 rounds. The most common rounds in the Saama Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Saama Technologies 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 Saama Technologies. The most common topics and skills that interviewers at Saama Technologies expect are SQL, Python, AWS, Data Warehousing and Javascript.
What are the top questions asked in Saama Technologies interview?

Some of the top questions asked at the Saama Technologies interview -

  1. coding question- create crud app. Given array of objects. Render list in table....read more
  2. Tell us about your current project? What are the types of match rule? What is t...read more
  3. What are bookmarks in Power ...read more
What are the most common questions asked in Saama Technologies HR round?

The most common HR questions asked in Saama Technologies interview are -

  1. What is your family backgrou...read more
  2. Why should we hire y...read more
How long is the Saama Technologies interview process?

The duration of Saama Technologies 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/5

based on 44 interview experiences

Difficulty level

Easy 21%
Moderate 75%
Hard 4%

Duration

Less than 2 weeks 91%
2-4 weeks 9%
View more

Interview Questions from Similar Companies

VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
Ciklum Interview Questions
3.4
 • 22 Interviews
EagleView Interview Questions
3.3
 • 21 Interviews
SAS Interview Questions
4.2
 • 19 Interviews
View all

Saama Technologies Reviews and Ratings

based on 368 reviews

3.7/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.5

Salary

3.4

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 368 Reviews and Ratings
Data Modeler

Chennai

3-6 Yrs

Not Disclosed

Product Owner

Pune

15-20 Yrs

Not Disclosed

Technical Project Manager

Pune,

Chennai

+1

10-15 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
339 salaries
unlock blur

₹13.9 L/yr - ₹25 L/yr

Software Engineer
318 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Associate Software Engineer
178 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Data Engineer
142 salaries
unlock blur

₹3.5 L/yr - ₹18.2 L/yr

Consultant
109 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Explore more salaries
Compare Saama Technologies with

DISYS

3.1
Compare

Data-Core Systems

3.1
Compare

Arvato

3.5
Compare

Xchanging

4.1
Compare
write
Share an Interview