Upload Button Icon Add office photos
Engaged Employer

i

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

Sciative Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Sciative Solutions Data Engineer Interview Questions and Answers

Updated 1 Oct 2023

Sciative Solutions Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Abhishek Tripathi

posted on 1 Oct 2023

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

I applied via campus placement at Lokmanya Tilak College of Engineering, Navi Mumbai and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions related to web development and quantitative aptitude. It was one hour test. Based on the score of this test, the position is allotted to you for which you are eligible to give the interview.

Round 2 - Coding Test 

Coding round didn't had compilers and I had to write the pseudo code for the given problems. Few DSA and SQL questions were there in this round.

Round 3 - One-on-one 

(1 Question)

  • Q1. This round was with the CEO of the company. He asked me to introduce myself and later switch to technical questions. He gave me a problem based on nested-dictionary type of thing and also few SQL queries t...

Interview Preparation Tips

Topics to prepare for Sciative Solutions Data Engineer interview:
  • Python
  • Data Structures
  • Algorithms

HCLTech

A more secure future awaits you

Find your spark and supercharge your own potential

Data Engineer Jobs at Sciative Solutions

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 campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions related to my tech stack
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioral round with manager
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to my tech stack
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introducing your self and project
  • Q2. Severity and priority
  • Q3. Smoke and sanity testing
  • Q4. Scenario base question if find bug before release

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all manual testing type question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at PSG College of Arts & Science, Coimbatore and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are Question based on data strcuture ,they cover all the topic in ds

Round 2 - Coding Test 

In coding code they gave internet access to solve the problem after 30 they told us to make some changes in it and we should ready to explain the entire code

Interview Preparation Tips

Interview preparation tips for other job seekers - To clear 1 st round ,revise all the data structure concepts ,in second round make sure to be strong in fundamentals of programming and good in logical thinking
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. There wer four questions 1) wildcard pattern matching(leetcode) 2) cows and buffaloes(leetcode) 3) unix based cd directory 4) backtracking question
  • Q2. It was a resume based round for 45 min
Round 2 - Technical 

(1 Question)

  • Q1. It was a resume based round for 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium to hard questions
Know your resume very well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About ur self some technical problem
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - Aptitude Test 

Totally there were 15 questions

Round 1 - Technical 

(3 Questions)

  • Q1. C# , oops & mvc. Be clear with basic concepts
  • Q2. What is the four pillars of oops
  • Ans. 

    The four pillars of OOP are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions that manipulate it together.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q3. What is mvc and how it helps the developers
  • Ans. 

    MVC stands for Model-View-Controller. It is a software design pattern that separates an application into three interconnected components.

    • Model represents the data and business logic of the application

    • View is responsible for rendering the user interface

    • Controller handles user input and updates the model and view accordingly

    • MVC helps developers to write clean, modular and maintainable code

    • It also enables parallel develop...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic oops concept and basic mvc along with databases

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Sciative Solutions Interview FAQs

How many rounds are there in Sciative Solutions Data Engineer interview?
Sciative Solutions interview process usually has 4 rounds. The most common rounds in the Sciative Solutions interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Sciative Solutions Data Engineer 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 Sciative Solutions. The most common topics and skills that interviewers at Sciative Solutions expect are Data Engineering, Data Integration, Data Modeling, MongoDB and NoSQL.

Recently Viewed

INTERVIEWS

Lenovo

38 interviews

INTERVIEWS

Sharekhan

81 interviews

INTERVIEWS

StrideOne

2 interviews

INTERVIEWS

Tredence

123 interviews

INTERVIEWS

Edelweiss

58 interviews

INTERVIEWS

Indegene

151 interviews

INTERVIEWS

IMS People

37 interviews

INTERVIEWS

Tata Power

No Interviews

INTERVIEWS

dezerv

No Interviews

INTERVIEWS

CONCAST

No Interviews

Tell us how to improve this page.

Sciative Solutions Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Data Engineer Interview Questions from Similar Companies

View all
Sciative Solutions Data Engineer Salary
based on 4 salaries
₹4 L/yr - ₹4.5 L/yr
61% less than the average Data Engineer Salary in India
View more details
Business Analyst
16 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Data Analyst
11 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Jr. Data Scientist
9 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Full Stack Developer
8 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Junior Business Analyst
8 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Explore more salaries
Compare Sciative Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent