Upload Button Icon Add office photos

Filter interviews by

Usthaan Integrated Solutions SDE Intern Interview Questions and Answers

Updated 7 Oct 2024

Usthaan Integrated Solutions SDE Intern Interview Experiences

1 interview found

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2024

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

(2 Questions)

  • Q1. Kadane Algorithm
  • Ans. 

    Kadane's Algorithm is used to find the maximum subarray sum in an array of integers.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • If the current element is greater than the sum ending at the previous index, start a new subarray.

    • Return the maximum sum found.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q2. Dutch National Algorithm
  • Ans. 

    Dutch National Algorithm is a sorting algorithm that partitions an array into three sections based on a pivot element.

    • Choose a pivot element

    • Partition the array into three sections: elements less than the pivot, elements equal to the pivot, and elements greater than the pivot

    • Recursively apply the algorithm to the subarrays

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Tell us about yourself.
  • Ans. 

    I am a computer science student with a passion for coding and problem-solving.

    • Currently pursuing a degree in computer science

    • Proficient in programming languages like Java, Python, and C++

    • Experience with data structures and algorithms

    • Completed internships at tech companies like Google and Microsoft

  • Answered by AI
  • Q2. Can you explain any recent projects you have worked on?
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress.

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Incorporated chart.js for visualizing progress data

  • Answered by AI
  • Q3. Given a sorted linked list, how can you remove duplicates from it?
  • Ans. 

    Remove duplicates from a sorted linked list

    • Use two pointers - one to iterate through the list and another to keep track of unique elements

    • Compare current node with next node, if they are equal, skip the next node

    • Repeat until end of list is reached

  • Answered by AI
  • Q4. There was a String based leetcode hard level question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three questions were assigned to be solved within a two-hour timeframe.

Round 2 - Aptitude Test 

The assessment consists of two multiple-choice question (MCQ) rounds, each lasting 15 minutes, and one essay writing task requiring 400 words to be completed within 25 minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your communication skills.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was mcqs with one coding question

Round 2 - Coding Test 

It consisted of 2 medium coding ques

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was a binary tree medium level leetcode ques
  • Q2. It was majority element ques from leetcode
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 DSA questions and 70 minutes.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement Min-stack using O(N) space .
  • Ans. 

    Min-stack is implemented using O(N) space by keeping track of minimum value at each element.

    • Use two stacks - one to store the actual elements and another to store the minimum value at each step.

    • When pushing an element, check if it is smaller than the current minimum and update the minimum stack accordingly.

    • When popping an element, also pop from the minimum stack if the popped element is the current minimum.

  • Answered by AI
  • Q2. Sliding Window Problem.
  • Ans. 

    Sliding Window Problem involves finding a subarray of fixed size k with the maximum sum.

    • Use a sliding window approach to iterate through the array and keep track of the sum of elements within the window.

    • Slide the window by removing the first element and adding the next element in each iteration.

    • Keep track of the maximum sum found so far and update it if a new maximum is found.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA .

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

This round had questions from various topics like DBMS, system design, OOPs, aptitude etc. with one coding ques.

Round 2 - Coding Test 

This had 2 coding questions (medium level) and a digital HR round where we just have to use a slider to answer our best reaction to situations.

Round 3 - Technical 

(2 Questions)

  • Q1. Implementation of Min Stack
  • Ans. 

    Implement a stack that supports push, pop, top, and retrieving the minimum element in constant time.

    • Use two stacks - one to store the actual elements and another to store the minimum values.

    • When pushing an element, check if it is smaller than the current minimum and push it to the min stack if so.

    • When popping an element, check if it is the current minimum and pop from the min stack if so.

    • Top operation can be implemente...

  • Answered by AI
  • Q2. Find leaf nodes in a binary tree ,followed by printing path to leaf nodes.
  • Ans. 

    Find leaf nodes in a binary tree and print path to each leaf node.

    • Traverse the binary tree using depth-first search (DFS)

    • When reaching a leaf node, store the path from root to that leaf node

    • Repeat the process for all leaf nodes in the tree

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

I was asked to do a string based hard level question. Interviewerr asked me how the code worked and the logic which i explained step by step.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. DSA question to be solved
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

2 hours mcqs from all cse related topics + 1 coding question

Round 2 - Coding Test 

3 coding questions easy level

Round 3 - Technical 

(1 Question)

  • Q1. I do not remember
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

OA + behavioural questions

Round 2 - Technical 

(1 Question)

  • Q1. Leetcode medium
Round 3 - Technical 

(1 Question)

  • Q1. Leetcode medium

Usthaan Integrated Solutions Interview FAQs

How many rounds are there in Usthaan Integrated Solutions SDE Intern interview?
Usthaan Integrated Solutions interview process usually has 1 rounds. The most common rounds in the Usthaan Integrated Solutions interview process are Technical.
What are the top questions asked in Usthaan Integrated Solutions SDE Intern interview?

Some of the top questions asked at the Usthaan Integrated Solutions SDE Intern interview -

  1. Dutch National Algori...read more
  2. Kadane Algori...read more

Tell us how to improve this page.

Usthaan Integrated Solutions SDE Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
View all
Business Development Executive
7 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Software Developer
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Software Development Engineer
4 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Software Engineer
3 salaries
unlock blur

₹10.5 L/yr - ₹16 L/yr

HR Manager
3 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Usthaan Integrated 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