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

Sciative Solutions Junior Software Development Engineer Interview Questions and Answers

Updated 27 Jul 2020

Sciative Solutions Junior Software Development Engineer Interview Experiences

1 interview found

Interview Questionnaire 

5 Questions

  • Q1. Fibonnaci Series without using recursive functions
  • Ans. 

    Fibonacci series can be generated using iterative approach with a loop and two variables.

    • Declare two variables to store the first two numbers of the series

    • Use a loop to generate the next number by adding the previous two numbers

    • Repeat the loop until the desired number of terms is generated

    • Store the generated numbers in an array

  • Answered by AI
  • Q2. Inline functions in python
  • Ans. 

    Inline functions in Python are functions that are defined and called in a single line of code.

    • Inline functions are defined using the lambda keyword.

    • They are useful for simple operations that don't require a full function definition.

    • Example: double = lambda x: x * 2

    • Inline functions can be used as arguments for other functions.

    • Example: list(map(lambda x: x * 2, [1, 2, 3])) returns [2, 4, 6]

  • Answered by AI
  • Q3. Dictionaries
  • Q4. How will you approach the problem of tracing all squares in a chess board by doing valid moves of a Knight, without repeating any squre?
  • Ans. 

    Tracing all squares in a chess board by valid moves of a Knight without repeating any square.

    • Create a 2D array to represent the chess board.

    • Start from any square and mark it as visited.

    • Generate all possible moves of a Knight from the current square.

    • Check if the move is valid and not visited before.

    • If yes, mark the square as visited and add it to the path.

    • Repeat the above steps until all squares are visited.

    • If no more m...

  • Answered by AI
  • Q5. Nested SQL queries

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Sciative Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion

Junior Software Development Engineer Interview Questions Asked at Other Companies

Q1. How would you approach the problem of tracing all squares on a ch ... read more
Q2. Write a program to print the Fibonacci sequence without using rec ... read more
Q3. What are inline functions in Python?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. It was mostly on scenario based questions and I was asked to code online.
Round 2 - Technical 

(1 Question)

  • Q1. Discussion were there past projects, how different objectives were done.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Round 1 was hackerrank test. MCQs and coding questions.
  • Q2. Kafka related questions.
  • Q3. Java 8 related questions. Java streams.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Multithreading and Java8 coding question
  • Q2. System design question on payments, design patterns and Java, Spring Questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. System design for robust e-commarce site
  • Q2. How to reduce the failure rate for payment gateway which is communicating to multiple 3rd party wallets and credit card transactionm
  • Ans. 

    Implementing strategies to enhance reliability and reduce failure rates in payment gateway integrations.

    • Implement retries with exponential backoff for failed transactions to handle temporary issues.

    • Use circuit breakers to prevent overwhelming third-party services during outages.

    • Monitor and log transaction failures to identify patterns and root causes.

    • Implement fallback mechanisms to alternative payment methods when pri...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Discussion on experience and current role and responsibilities

Round 2 - Technical 

(2 Questions)

  • Q1. 1. Discuss one past project
  • Ans. 

    Developed a web-based inventory management system to streamline stock tracking and order processing for a retail client.

    • Utilized React for the front-end, ensuring a responsive and user-friendly interface.

    • Implemented a RESTful API using Node.js and Express to handle data transactions.

    • Integrated a PostgreSQL database for efficient data storage and retrieval.

    • Incorporated real-time notifications for low stock levels using ...

  • Answered by AI
  • Q2. 2. Design a job scheduler
  • Ans. 

    A job scheduler is a software application that manages the scheduling of tasks or jobs to be executed by a computer system.

    • Define the job scheduling requirements such as priority, deadline, resource constraints, etc.

    • Implement a scheduling algorithm like First Come First Serve, Shortest Job First, Round Robin, etc.

    • Maintain a queue of jobs to be executed and allocate resources accordingly.

    • Monitor job execution and handle...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
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
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. HR interviews questions, Tell about yourself?
  • Q2. What motivates you to do work?
  • Ans. 

    I am motivated by challenges, continuous learning, and the impact my work has on users and the team.

    • Solving complex problems: I enjoy tackling difficult coding challenges, like optimizing algorithms for better performance.

    • Continuous learning: I am driven by the opportunity to learn new technologies, such as exploring machine learning frameworks.

    • Team collaboration: Working with a diverse team inspires me, as we share kn...

  • Answered by AI

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

Round 1 - Aptitude Test 

It was a combination of aptitude and react mcq questions.

Round 2 - Technical 

(2 Questions)

  • Q1. It was technical round where questions were mostly from JavaScript and a few on React (depends on individual’s experience). You might expect a array/string coding question as well. Example- To find the pai...
  • Q2. In JavaScript, there were code output questions, ES6 features, hoisting, closures, Arrow functions etc. Css and bootstrap responsiveness questions. All basic questions.
Round 3 - HR 

(6 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. Share details of your previous job.
  • Ans. 

    I worked as a Software Engineer at XYZ Corp, focusing on developing scalable web applications and enhancing user experience.

    • Developed a customer relationship management (CRM) system that improved client interactions by 30%.

    • Collaborated with cross-functional teams to design and implement new features, resulting in a 20% increase in user engagement.

    • Utilized Agile methodologies to streamline project workflows, leading to ...

  • Answered by AI
  • Q4. What are your salary expectations?
  • Q5. What is your family background?
  • Q6. If your location is far from the office (baner road), how would you commute daily? How will you manage once office resumes working from office.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on JavaScript es6 features, code output questions, and array/string data structure questions so that you can code it up if asked.

Sciative Solutions Interview FAQs

What are the top questions asked in Sciative Solutions Junior Software Development Engineer interview?

Some of the top questions asked at the Sciative Solutions Junior Software Development Engineer interview -

  1. How will you approach the problem of tracing all squares in a chess board by do...read more
  2. Fibonnaci Series without using recursive functi...read more
  3. Inline functions in pyt...read more

Tell us how to improve this page.

Business Analyst
18 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Junior Business Analyst
9 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Full Stack Developer
8 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Jr. Data Scientist
7 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Pricing Executive
5 salaries
unlock blur

₹1.4 L/yr - ₹9 L/yr

Explore more salaries
Compare Sciative Solutions with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.2
Compare

Global Edge Software

3.5
Compare

Moveinsync Technology Solutions

3.3
Compare
write
Share an Interview