Upload Button Icon Add office photos

Filter interviews by

Sagent Interview Questions and Answers

Updated 2 Aug 2024

Sagent Interview Experiences

Popular Designations

3 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 2 Aug 2024

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

(2 Questions)

  • Q1. Its all about full stack development from job description
  • Q2. General questions

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Technical MCQS were also asked

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 5 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 - Coding Test 

Coding test and technical with real time applications to know programming experience ranges from beginner to test framework design and implementation

Round 3 - One-on-one 

(1 Question)

  • Q1. Manager/Architect round to undestand from project handling capability as a independent contributor
Round 4 - Client Interview 

(1 Question)

  • Q1. Some project have client round and must discussion with Head/VP
Round 5 - HR 

(1 Question)

  • Q1. Medical benefits, Company procedures and salary. Reason and aspiration of joining

Interview Preparation Tips

Interview preparation tips for other job seekers - Individual contributor and deep knowledge on known topics

Senior Software Quality Engineer Interview Questions asked at other Companies

Q1. What is STLC and how you work in different layers of it?
View answer (1)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Programming questions in python
  • Q2. Selenium and API Testing interview questions
Round 2 - Technical 

(2 Questions)

  • Q1. Deeper Product-related question
  • Q2. Programming using python
  • Ans. 

    Python is a versatile programming language known for its simplicity and readability.

    • Python is an interpreted language, making it easy to write and test code quickly.

    • It supports multiple programming paradigms, including object-oriented, imperative, and functional programming.

    • Python has a large standard library with built-in modules for various tasks, reducing the need for external libraries.

    • Python uses indentation to de...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am damn sure I cleared the interview, but no call back from the HR, no rejection emails. When I called the HR, she cut the call. Worst interview experience ever
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic Hacker Rank SQL Questions 2 . and 10 MCQ based

Round 2 - Technical 

(3 Questions)

  • Q1. Select customer, sum(amt ) as total_amt from t1 group by customer how many no. of rows it will return and explain this table t1 column name-> dept customer item amt
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Ans. 

    The query selects all columns and calculates the total amount for each customer in table t2.

    • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

    • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

    • The 'select *' statement selects all columns from the table along with the calculated total amount.

    • The 'sum(amt) over (partiti...

  • Answered by AI
  • Q3. How many Customers has purchased same item on the Same day more than onnce
  • Ans. 

    To find customers who purchased the same item multiple times on the same day.

    • Identify unique customers who purchased the same item multiple times on the same day

    • Check for duplicate transactions by customer and item on the same day

    • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql and solve questiosn without seeing answers
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Java versions. System design, Kafka and rabbit mq
Round 2 - Technical 

(1 Question)

  • Q1. Some more questions on system design. Questions on Messaing system, EDA and Microservices architecture. AWS cloud.
Round 3 - Coding Test 

I am not sure about what this round about. After couple of simple management questions, The interviewer asking leet code questions which was not expected as it was mentioned that its a managerial round. As it was on 31st I was little not prepared and wanted to skip the question. The interviewer got offended and talking very rude. At this point I got the idea that interview is not.

Worst part is after every round they is no feedback cycle. they just ghost you. very bad attitude.

Intern Interview Questions & Answers

CodeClouds user image dipnarayan sen

posted on 3 Jan 2025

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

General Computer Science Questions.

Round 2 - Technical 

(3 Questions)

  • Q1. 2NF and 3NF difference
  • Ans. 

    2NF eliminates partial dependencies, while 3NF eliminates transitive dependencies.

    • 2NF eliminates partial dependencies by ensuring all non-key attributes are fully functionally dependent on the primary key.

    • 3NF eliminates transitive dependencies by ensuring that non-key attributes are not dependent on other non-key attributes.

    • Example: In a table with columns A, B, and C where A is the primary key, if B depends on A and C...

  • Answered by AI
  • Q2. Alternative of using loop to print 1 to 100
  • Ans. 

    Using recursion to print numbers from 1 to 100 without a loop

    • Create a recursive function that takes a number as input and prints it

    • Call the function with 1 as the initial input and increment the input by 1 in each recursive call

    • Stop the recursion when the input reaches 100

  • Answered by AI
  • Q3. Delete and Truncate Difference
  • Ans. 

    Delete removes rows from a table while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete operation can be rolled back while truncate operation cannot be rolled back.

    • Delete operation fires triggers on each row deletion while truncate operation does not fire triggers.

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic OOPs concept and coding
Round 2 - Technical 

(3 Questions)

  • Q1. Basic DSA question
  • Q2. 1 mySql query to fetch records
  • Q3. Design patterns

Interview Preparation Tips

Topics to prepare for Entrata PHP Developer interview:
  • php
  • mysql
  • oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is the code to determine the minimum number of dice throws required to reach 100 in a game of Snakes and Ladders?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Have you used fluient wait in selenium and why we are not using mostly
  • Ans. 

    Fluent wait in Selenium is used for handling dynamic elements and synchronization issues.

    • Fluent wait is used to wait for a condition to be true before proceeding with the next steps in Selenium automation scripts.

    • It provides more flexibility in defining wait conditions compared to implicit or explicit waits.

    • Fluent wait can be used to wait for a specific element to be visible, clickable, or any other custom condition.

    • It...

  • Answered by AI
  • Q2. How to get all the links available in the page
  • Ans. 

    To get all the links available on a page, you can use web scraping techniques.

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple we have to stick to basics well.

Skills evaluated in this interview

Sagent Interview FAQs

How many rounds are there in Sagent interview?
Sagent interview process usually has 2-3 rounds. The most common rounds in the Sagent interview process are Coding Test, Resume Shortlist and One-on-one Round.
How to prepare for Sagent 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 Sagent. The most common topics and skills that interviewers at Sagent expect are Automation, IPS, Identity Management, Information Security and Linux.
What are the top questions asked in Sagent interview?

Some of the top questions asked at the Sagent interview -

  1. Some project have client round and must discussion with Head...read more
  2. Its all about full stack development from job descript...read more

Tell us how to improve this page.

Sagent Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 228 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 205 Interviews
Tredence Interview Questions
3.6
 • 122 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Sagent Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.2

Salary

4.5

Job security

4.5

Company culture

4.2

Promotions

3.9

Work satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
4 salaries
unlock blur

₹15 L/yr - ₹22 L/yr

Software Development Engineer II
3 salaries
unlock blur

₹11.9 L/yr - ₹15 L/yr

Explore more salaries
Compare Sagent with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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