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 Associate Consultant Interview Questions and Answers

Updated 4 May 2019

Saama Technologies Associate Consultant Interview Experiences

1 interview found

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

Interview Questionnaire 

4 Questions

  • Q1. Core informatica. Lot of scenario based questions.
  • Q2. Very basic questions. Simple and easy.
  • Q3. Third round was very difficult. Couldn't answer one question properly. But I gave efforts
  • Q4. Get Fibonacci series in informatica
  • Ans. 

    Fibonacci series can be generated in Informatica using a recursive function.

    • Create a mapping with a recursive function

    • Use a variable port to store the previous two values

    • Use an expression transformation to generate the series

    • Example: f(0) = 0, f(1) = 1, f(n) = f(n-1) + f(n-2)

  • Answered by AI

Interview Preparation Tips

General Tips: Informatica prepare well. Sql queries too.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Presentation Skills
Duration: 1-3 Months

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 4 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 - Aptitude Test 

Reasoning and aptitude questions are given

Round 3 - HR 

(2 Questions)

  • Q1. Tell all concepts of Overloading
  • Ans. 

    Overloading is a concept in programming where multiple functions can have the same name but different parameters.

    • Functions with the same name but different parameters can be defined in a class

    • Overloading allows for flexibility in function usage

    • Example: void print(int num) and void print(string text) are overloaded functions

  • Answered by AI
  • Q2. Tell me about a live example of inheritance
  • Ans. 

    Inheritance in software development allows a class to inherit properties and behaviors from another class.

    • Inheritance allows a subclass to reuse code from a superclass

    • Subclass can also add new functionalities or override existing ones

    • Example: Animal class can be a superclass with properties like name and age, while Dog class can inherit from Animal and add a method bark()

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell about the your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare all basic concepts of oops, practice all the concepts
Interview experience
5
Excellent
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 

(3 Questions)

  • Q1. 30min technical round
  • Q2. Project manager round
  • Q3. HR round for salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is going good . They informed status day after
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Logical reasoning, pseudo codes, mathematical equations

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPS in java
  • Ans. 

    OOPS in Java stands for Object-Oriented Programming System, which is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • It involves concepts like inheritance, encapsulation, polymorphism, and abstraction

    • Java supports OOPS principles through classes and objects

  • Answered by AI
  • Q2. Data Structure, Basic SQL queries
  • Q3. Define abstract method and abstract class
  • Ans. 

    Abstract method is a method without implementation in abstract class which cannot be instantiated. Abstract class is a class with abstract methods.

    • Abstract method is declared in abstract class without implementation

    • Abstract class cannot be instantiated, only used as a base for other classes

    • Abstract class can have both abstract and non-abstract methods

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example:

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • I have successfully completed multiple projects using various programming languages and technologies.

    • I am a quick learner and always eager to expand my knowledge and skills in the field.

  • Answered by AI
  • Q2. What challenges your faced in life?
  • Ans. 

    I have faced challenges in balancing work and personal life, overcoming imposter syndrome, and adapting to new technologies.

    • Balancing work and personal life: Juggling deadlines at work while making time for family and friends.

    • Overcoming imposter syndrome: Feeling like I don't belong in the tech industry and constantly doubting my abilities.

    • Adapting to new technologies: Learning new programming languages and tools to st

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn everything from Coding, OOPs , data structure, sql queries, etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Read apti books available in the market

Round 3 - Technical 

(2 Questions)

  • Q1. All Java related questions
  • Q2. Idea about AI and general HR questions

Software Engineer Interview Questions & Answers

EagleView user image SHAURYA AGRAWAL (RA2111030010009)

posted on 28 Sep 2024

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

60min of aptitude and coding test

Round 2 - Coding Test 

2 questions on coding test

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

45 min 2 question on basic codeing

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

(2 Questions)

  • Q1. General resume discussions
  • Q2. HR questiosn aslso
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA question was asked

Round 2 - Aptitude Test 

40 questions in 20 minutes

Round 3 - Technical 

(2 Questions)

  • Q1. Stones games 2 leetcode
  • Q2. Permutations of array
  • Ans. 

    Generate all possible permutations of an array of strings

    • Use recursion to generate permutations

    • Swap elements to create different permutations

    • Base case: when array size is 1, return array as permutation

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Project discussion

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions related to Java, Spring, Rest API

Saama Technologies Interview FAQs

What are the top questions asked in Saama Technologies Associate Consultant interview?

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

  1. Get Fibonacci series in informat...read more
  2. Third round was very difficult. Couldn't answer one question properly. But I ga...read more
  3. Core informatica. Lot of scenario based questio...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Equifax Interview Questions
3.3
 • 32 Interviews
VDart Interview Questions
4.1
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
EagleView Interview Questions
3.3
 • 20 Interviews
SAS Interview Questions
4.3
 • 19 Interviews
Ciklum Interview Questions
3.5
 • 19 Interviews
View all
Saama Technologies Associate Consultant Salary
based on 86 salaries
₹4.2 L/yr - ₹12 L/yr
35% less than the average Associate Consultant Salary in India
View more details

Saama Technologies Associate Consultant Reviews and Ratings

based on 11 reviews

3.5/5

Rating in categories

3.6

Skill development

3.2

Work-life balance

3.2

Salary

3.7

Job security

3.3

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 11 Reviews and Ratings
Senior Software Engineer
309 salaries
unlock blur

₹8.4 L/yr - ₹30 L/yr

Software Engineer
296 salaries
unlock blur

₹4.4 L/yr - ₹16.7 L/yr

Associate Software Engineer
181 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Consultant
134 salaries
unlock blur

₹4.2 L/yr - ₹18 L/yr

Data Engineer
122 salaries
unlock blur

₹5 L/yr - ₹19.9 L/yr

Explore more salaries
Compare Saama Technologies with

DISYS

3.0
Compare

Data-Core Systems

3.2
Compare

Arvato

3.5
Compare

Xchanging

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