Upload Button Icon Add office photos

Filter interviews by

Startling World Services ASP.NET Web Developer Interview Questions and Answers

Updated 9 Mar 2021

Startling World Services ASP.NET Web Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to refresh your mind when you under pressure
  • Ans. 

    Taking breaks, physical activity, meditation, and deep breathing can help refresh the mind under pressure.

    • Take short breaks to step away from the task at hand

    • Engage in physical activity to release endorphins and reduce stress

    • Practice meditation or deep breathing exercises to calm the mind

    • Listen to music or engage in a hobby to distract from the stress

    • Get enough sleep and maintain a healthy diet to support mental health

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - We all know how difficult it is to get a good job and when you get an offer letter after overcoming all the hurdles, interviews and cut-throat competition, you would definitely accept the offer without losing any time. We can understand your excitement and you have every right to be thrilled at your achievement. However, instead of jumping at the offer and immediately accepting it, it would be wise to thank the company for the offer and then take a little time to let the excitement settle before you reply to the letter. Use this time to go through the offer letter and evaluate if everything is as per what you have asked for. After confirming that, you need to ask yourself a few questions to understand why you should accept the job. Let's look at what you need to ask and understand before joining the new organisation.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude blood relation questions

Round 2 - Coding Test 

Programming data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Question ke answer slow nhi ho rhe he
Aptitude and technical ke liye help chahiye

Interview Questionnaire 

1 Question

  • Q1. What do you want to know about Our company
  • Ans. I like the way you approach your customers and the long term goals you try to achieve with your activities
  • Answered Anonymously
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. R u interested in sales
  • Ans. 

    Yes, I am interested in sales as it allows me to understand customer needs and provide solutions.

    • I enjoy interacting with customers and understanding their requirements.

    • I am motivated by meeting sales targets and achieving success.

    • I believe in the value of building relationships with clients to drive business growth.

  • Answered by AI
  • Q2. Ready to relocation
  • Ans. 

    Yes, I am ready for relocation.

    • I am open to relocating for the right opportunity

    • I have experience moving for previous jobs

    • I am excited about the possibility of living in a new city

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

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

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 oops spring spring boot rest api
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 spring stream api java oops rest api
Round 3 - HR 

(1 Question)

  • Q1. It was salary negotiation round which went good with a FAKE promise that the offer will be rolled out the next day which was also the last working day , they didnt roll the offer out with a lame excuse .

Interview Preparation Tips

Interview preparation tips for other job seekers - Few Recruiters spoiling company image, hiding facts , giving fake assurity with 100% confidence

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was in the evening. Coding platform was good. There were 3 coding questions only in the screening round

  • Q1. Triple Sum

    It was Todd’s Birthday, So Bojack decided to give Todd a Binary tree with ‘N’ nodes. But the binary tree was too big to keep in his house, so Bojack decided to give exactly three nodes from that...

  • Ans. 

    The task is to determine if it is possible to select three nodes from a binary tree such that their sum equals a given value.

    • Traverse the binary tree and store all the node values in an array

    • Use three nested loops to iterate through all possible combinations of three nodes

    • Check if the sum of the three nodes equals the given value

    • If a valid combination is found, return True

    • If no valid combination is found, return False

  • Answered by AI
  • Q2.  Inorder Traversal

    You have been given a Binary Tree of 'N' nodes, where the nodes have integer values. Your task is to find the In-Order traversal of the given binary tree.

    For example :
    For the...
  • Ans. 

    The task is to find the in-order traversal of a given binary tree.

    • Implement a recursive function to perform in-order traversal of the binary tree

    • Start from the left subtree, then visit the root, and finally visit the right subtree

    • Use an array to store the values of the nodes in the in-order traversal

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was conducted in day time. Interviewer shared the jio's platform link where question was there and a function was there which I needed to complete while sharing my screen. Interviewer was very nice in behaviour

  • Q1. Check Whether Binary tree Is Complete

    You are given a binary tree. Your task is to check whether the given binary tree is a Complete Binary tree or not.

    A Complete Binary tree is a binary tree whose ever...

  • Ans. 

    The task is to check whether a given binary tree is a complete binary tree or not.

    • A complete binary tree is a binary tree where every level, except possibly the last, is completely filled.

    • All nodes in the last level are placed at the left end.

    • To check if a binary tree is complete, we can perform a level order traversal and check if any null nodes appear before all non-null nodes in the last level.

    • If any null nodes appe...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was conducted in early evening, again it consist of one coding question and some Basic OOP question.

  • Q1. Rat in a maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. 

    The task is to find all possible paths for a rat to reach its destination in a maze.

    • The maze is represented as a square matrix of 0s and 1s.

    • The rat starts at (0, 0) and the destination is at (N-1, N-1).

    • The rat can move in four directions: up, down, left, and right.

    • Use backtracking to explore all possible paths.

    • Print the paths in alphabetical order.

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was conducted at night like it was 8.00pm . HR was very nice. She asked managerial questions only and asked about my hobbies, experiences, why I want to join jio etc.

  • Q1. Basic HR question

    Why do you want to join jio?

  • Ans. 

    I want to join Jio because of its innovative technology and vast opportunities for growth.

    • Jio is known for its cutting-edge technology and I want to be a part of that innovation.

    • Jio offers a wide range of career opportunities and growth prospects.

    • Jio's strong market presence and success make it an exciting company to work for.

    • Jio's focus on digital transformation aligns with my passion for technology.

    • Jio's commitment t...

  • Answered by AI
  • Q2. Basic HR Question

    What will you do if there is some conflict in a team were you working?r

  • Ans. 

    In case of conflict in a team, I would first try to understand the root cause and then facilitate open communication and collaboration to resolve the conflict.

    • Listen to all parties involved and understand their perspectives

    • Encourage open and respectful communication

    • Facilitate a discussion to identify the root cause of the conflict

    • Promote collaboration and finding common ground

    • Propose potential solutions and encourage c...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 7 CGPAJio Private Limited interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Dynamic Programming, Backtracking, Binary Search Trees, Binary SearchTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve leetcode problems.
Tip 2 : Don't run for multiple languages , any one language is enough
Tip 3 : Maintain Consistency

Application resume tips for other job seekers

Tip 1 : Make it single page.
Tip 2 : Only write key points in resume and don't write any false point

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in

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 - Aptitude Test 

General knowledge ,appitude

Interview Preparation Tips

Interview preparation tips for other job seekers - We write the code of the java programming

Interview Questionnaire 

2 Questions

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them.

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection ob...

  • Answered by AI
  • Q2. What is the use of bean factory
  • Ans. 

    Bean factory is used for creating and managing instances of beans in Spring framework.

    • Bean factory is responsible for creating and managing instances of beans defined in the Spring configuration file.

    • It provides a way to decouple the configuration and specification of dependencies from the actual application code.

    • Bean factory supports different scopes of beans such as singleton, prototype, request, session, etc.

    • It also...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the full-stack development. On all the questions

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare Startling World Services with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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