Upload Button Icon Add office photos

Filter interviews by

Sun Data Tech Interview Questions and Answers

Updated 25 Oct 2024

Sun Data Tech Interview Experiences

Popular Designations

2 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Questions regarding Previous job
Round 2 - Technical 

(2 Questions)

  • Q1. Basic excel functions
  • Q2. Pivot table and flash fill
Round 3 - Behavioral 

(2 Questions)

  • Q1. Previous job discussion
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want a job. Give it a try

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Financial Analyst Interview Questions & Answers

user image Purusothaman D

posted on 25 Oct 2024

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

(1 Question)

  • Q1. Tell me about yourself

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Jobs at Sun Data Tech

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Symptoms of vaginism
  • Q2. Uses of HCG test in pregnancy

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with medical terminology and its basics

Senior Analyst - Data Science Interview Questions & Answers

Merilytics user image Shubham Prakash

posted on 10 Mar 2022

I applied via Naukri.com and was interviewed in Feb 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 - Aptitude Test 

2 rounds of 15 min each
1st was probability and statistics
2nd was data science

Round 3 - Assignment 

A problem statement was given to build a predictive model to help a CFO of an IT company to predict the time taken by an issue to resolve and classify the issue to high and low priority. Give some insights on the dataset to reduce the time to resolve the issue

Round 4 - Technical 

(4 Questions)

  • Q1. What is onehotencoding?
  • Q2. What do you mean by cross validation?
  • Q3. Explain Random Forest Classifier.
  • Q4. What are API and restful API?
Round 5 - Case Study 

Estimate the market size for a babysitter company across India? How will you proceed to expand the company across India?

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical rounds were easy to crack. Case study are of medium difficulty and can be cracked easily with a little bit of preperation.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Nov 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Salary and job role discussions and confirmation
  • Q2. Questions about experience and medical knowledge
  • Q3. What was your previous job role about?
  • Q4. How are dental diseases related to systemic diseases?
  • Q5. Questions about short term and long term goals.

Interview Preparation Tips

Topics to prepare for Cotiviti Clinical Analyst interview:
  • US healthcare
  • CMS
  • Medicaid
Interview preparation tips for other job seekers - Be well prepared for interviews. Go through basics of US healthcare- terms and overview of how it works.

I was interviewed in Oct 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on CodeChef or any IDE of your preference. Interviewer was helpful throughout the interview and helped with syntaxes at one point as well.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
Reaching the correct output was not mandatory but was preferred. Priority to coding practices was given.

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in the given array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the next greater element.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • If the stack is empty, there is no greater element, so assign -1.

    • If a greater element is found, assign it as the next greater element.

    • Push the current element ...

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem Statement

    Determine the zigzag level order traversal of a given binary tree's nodes. Zigzag traversal alternates the direction at each level, starting from left to rig...

  • Ans. 

    The zigzag level order traversal of a binary tree is the traversal of its nodes' values in an alternate left to right and right to left manner.

    • Perform a level order traversal of the binary tree

    • Use a queue to store the nodes at each level

    • For each level, alternate the direction of traversal

    • Store the values of the nodes in each level in separate arrays

    • Combine the arrays in alternate order to get the zigzag level order tra

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on google doc. Interviewer was helpful throughout the interview.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
4. Making it to the correct output.

Reaching the correct output was mandatory in best possible time comlexity.

  • Q1. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    This is a problem where a sorted array is rotated and we need to search for given numbers in the array.

    • The array is rotated clockwise by an unknown amount.

    • We need to search for Q numbers in the rotated array.

    • If a number is found, we need to return its index, otherwise -1.

    • The search needs to be done in O(logN) time complexity.

    • The input consists of the size of the array, the array itself, the number of queries, and the q

  • Answered by AI
  • Q2. 

    K-th Element of Two Sorted Arrays

    You are provided with two sorted arrays, arr1 and arr2, along with an integer k. By merging all elements from arr1 and arr2 into a new sorted array, your task is to ident...

  • Ans. 

    The task is to find the kth smallest element of a merged array created by merging two sorted arrays.

    • Merge the two sorted arrays into a single sorted array

    • Return the kth element of the merged array

  • Answered by AI
Round 3 - HR 

Round duration - 40 minutes
Round difficulty - Easy

I was asked to introduce myself and general family background check and then discussion around salary negotiation.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Data Engineer in BangaloreEligibility criteriaDecent work experience (for SDE-1 1-2 years experience was expected), self projects in any domain,Sigmoid interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice popular questions from Arrays, Binary Trees, LinkedLists from CodeStudio's Interview Problems
Tip 2 : Make sure you are aware of calculating the time and space complexity for every problem you're coding.
Tip 3 : Prepare through Mock Interviews to practice explaining your approach while solving in an actual interview.

Application resume tips for other job seekers

Tip 1 : Describe best of your projects in minimum words. Don't forget to add buzz words like REST APIs/ DB Indexing/ Benchmarking etc if you worked on backend.
Tip 2 : Don't add school achievements like Olympiads or Class Topper in your resume.
Tip 3 : If you've some work experience, put it in a way ,you're marketing yourself. Add terms like 'Created/Owned the Project through entire SDLC' 
Tip 4 : Make sure you mention how your work experience actually impacted the company. Or how your self project can be actually useful to end user.

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Assignment 
Round 2 - Technical 

(2 Questions)

  • Q1. How to sale the prodect
  • Ans. 

    To sell a product, understand the customer's needs, highlight the benefits, and create a sense of urgency.

    • Research the customer's needs and tailor your pitch accordingly

    • Highlight the unique benefits and features of the product

    • Create a sense of urgency by emphasizing limited availability or time-sensitive deals

    • Build rapport and establish trust with the customer

    • Address any objections or concerns the customer may have

    • Clos...

  • Answered by AI
  • Q2. How to make profit and which easy root . How to atrect the consumer
  • Ans. 

    To make profit and attract consumers, focus on providing value, building relationships, and utilizing effective marketing strategies.

    • Provide high-quality products or services that meet the needs of your target market

    • Build strong relationships with customers through excellent customer service and personalized experiences

    • Utilize effective marketing strategies such as social media advertising, email marketing, and influen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare God quality and give the advatisment

I applied via

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Focus on basics ..what you have applied for ...for associate position.

Round 3 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. Why should we hire you?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please focus on basics.suppose if you are applied for Oil and gas..then Please go through value chain,Crytsral clear understanding in all segment..I think guys you understand what I am say...Be confident and positive.

Interview Questionnaire 

1 Question

  • Q1. Basic marketing questions, past work experience, questions on brand management

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm, simple interview read marketing basics and you're good to go

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1st round was an online test, which was pretty forward, thereafter I went onto a technical interview with Director & Lead Data Scientist where they asked very few basic questions.
  • Q2. The interview was really basic and any fresher can achieve iff they want you to get in!
  • Q3. Questions were asked on the topics like SQL, Python programming questions, a couple of coding questions, and some HR-related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience for me but feedback is expected because the questions asked from them were easy and I don't know how did they judge me based on that.

Sun Data Tech Interview FAQs

How many rounds are there in Sun Data Tech interview?
Sun Data Tech interview process usually has 2 rounds. The most common rounds in the Sun Data Tech interview process are HR, Technical and Behavioral.
How to prepare for Sun Data Tech 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 Sun Data Tech. The most common topics and skills that interviewers at Sun Data Tech expect are Business Analysis, Advanced Excel, VLOOKUP, Excel and Troubleshooting.
What are the top questions asked in Sun Data Tech interview?

Some of the top questions asked at the Sun Data Tech interview -

  1. Pivot table and flash f...read more
  2. Basic excel functi...read more

Tell us how to improve this page.

Sun Data Tech Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 809 Interviews
EXL Service Interview Questions
3.7
 • 738 Interviews
View all

Sun Data Tech Reviews and Ratings

based on 8 reviews

4.0/5

Rating in categories

2.9

Skill development

3.9

Work-life balance

4.0

Salary

3.9

Job security

3.5

Company culture

3.9

Promotions

3.4

Work satisfaction

Explore 8 Reviews and Ratings
SQL Developer

Coimbatore

3-8 Yrs

Not Disclosed

HR and Admin Professional

Coimbatore

1-2 Yrs

Not Disclosed

Business Operation Analyst

Coimbatore

1-3 Yrs

Not Disclosed

Explore more jobs
Business Analyst
23 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Business Operations Analyst
18 salaries
unlock blur

₹2.5 L/yr - ₹4.7 L/yr

PHP Web Developer
6 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Senior Business Analyst
4 salaries
unlock blur

₹3.7 L/yr - ₹5.8 L/yr

Senior Business Operations Analyst
4 salaries
unlock blur

₹4.5 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Sun Data Tech with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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