Upload Button Icon Add office photos
Engaged Employer

i

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

uCertify Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

uCertify Software Developer Intern Interview Questions and Answers

Updated 16 Sep 2021

uCertify Software Developer Intern Interview Experiences

1 interview found

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120min
Round difficulty - Easy

  • Q1. What are semaphores?
  • Ans. 

    Semaphores are synchronization primitives used to control access to shared resources in a multi-threaded environment.

    • Semaphores can be used to limit the number of threads accessing a resource simultaneously.

    • They can be binary (mutex) or counting semaphores.

    • Operations on semaphores include wait (P) and signal (V).

    • Example: In a producer-consumer problem, semaphores can be used to control access to a shared buffer.

  • Answered by AI
  • Q2. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Check if a given graph can be colored using two colors without adjacent vertices sharing the same color.

    • Use graph coloring algorithm like BFS or DFS to check if adjacent vertices can be colored with different colors.

    • If there are odd cycles in the graph, it is not possible to color the graph with two colors.

    • If the graph is bipartite, it is always possible to color the graph with two colors.

    • Example: For the input 5 4, 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

  • Q1. 

    Water Flow Problem Statement

    You are given a matrix 'A' of size 'N' x 'M', where each cell contains the height of water placed in that cell. Water can flow in four directions: up, down, left, and right, b...

  • Ans. 

    Find coordinates from which water can flow to both the Pacific and Atlantic Oceans in a given matrix of water heights.

    • Create a function that takes in the matrix 'A' and its dimensions 'N' and 'M'.

    • Implement a depth-first search (DFS) algorithm to find all coordinates from which water can flow to both oceans.

    • Keep track of visited cells and use two separate DFS calls to find coordinates for each ocean.

    • Sort and return the

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 10 minutes
Round difficulty - Easy

  • Q1. Can you tell us about yourself and your projects?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - Intern in NoidaEligibility criteriaNoneUcertify interview preparation:Topics to prepare for the interview - Dmbs, project, python, os, cn, oops, ai, ml, system design. Study them well, practice always, work hard.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Study and work hard. Work hard work hard. Always work hard. Practice Atleast 250 questions 

Tip 2 : Solve at least 2 projects. 
 

Application resume tips for other job seekers

Tip 1 : Have strong projects on your resume
Tip 2 : Be yourself always.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basics Managerial Questions

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 45

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

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

  • Q1. DSA - related to arrays hard
  • Q2. Stack medium level
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Basic Aptitude test

Round 3 - Coding Test 

Coding Round is little tough.

Round 4 - HR 

(3 Questions)

  • Q1. Formal conversation about the projects and all that kind of stuff
  • Q2. What kind of project you have worked on
  • Q3. How you tackles different project

Interview Preparation Tips

Interview preparation tips for other job seekers - All the Best to all!!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give you problem to solve

Round 2 - Coding Test 

Machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do your best

I appeared for an interview in Mar 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing (10 am- 11 am)
For this round I had slightly more time than the last, due to the fact that the weekend fell in between.The interviewer was very very cool and helping this time, something which I kept at the last in my list of probable things that can happen during an interview. Duration of this round was around 45 minutes.

  • Q1. 

    Connecting Ropes with Minimum Cost

    You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...

  • Ans. 

    Connect ropes with minimum cost by merging smallest ropes first.

    • Sort the array of rope lengths in ascending order.

    • Merge the two smallest ropes at each step to minimize cost.

    • Keep track of the total cost as you merge the ropes.

    • Repeat the merging process until all ropes are connected.

    • Return the total cost as the minimum cost to connect all ropes.

  • Answered by AI
  • Q2. 

    Validate Binary Search Tree (BST)

    You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

    BST Definition:

    A Binary Search Tr...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Recursively check if both the left and right subtrees are also binary search trees.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Medium

This round was on call where I was just supposed to answer the HRquestions that were asked. It started with a brief interview with one another and then moved to questions on DBMS, operating systems, computer networks and all. Almost 10-15 questions were asked and I probably answered 90% of them correctly.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in GurgaonEligibility criteriaall branches were allowedSpeedLabs interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice on gfg and coding ninjas
Tip 2 : compete in online coding contests
Tip 3 : learn DSA and practice regularly from GFG or leetcode

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : put the handle of you competitive coding profiles

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 4 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 - Assignment 

Implement login with Google SSO, show emails in a single place

Round 3 - One-on-one 

(4 Questions)

  • Q1. How to implement JWT
  • Ans. 

    JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.

    • Generate a JWT token with user information and a secret key

    • Include necessary claims like expiration time, issuer, etc.

    • Verify the JWT token using the same secret key

    • Handle token expiration and refresh if needed

  • Answered by AI
  • Q2. Please read about it on the internet, do take care of public and private key use
  • Q3. Middleware in express, how to create one?
  • Ans. 

    Middleware in Express is a function that has access to the request and response objects.

    • Create a middleware function using app.use() method in Express.

    • Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.

    • Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });

  • Answered by AI
  • Q4. Read about it on the internet
Round 4 - One-on-one 

(6 Questions)

  • Q1. Discussed about guards in Angular
  • Q2. Read about it on the internet
  • Q3. How does lazy loading work in Angular
  • Ans. 

    Lazy loading in Angular delays loading of modules until they are needed

    • Lazy loading helps improve performance by only loading modules when they are required

    • It is achieved by using the loadChildren property in the route configuration

    • Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route

  • Answered by AI
  • Q4. Read about lazy loading in Angular
  • Q5. How to enable SSR in Angular
  • Ans. 

    Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.

    • Install Angular Universal using Angular CLI

    • Create a new Angular Universal project

    • Update app.module.ts to include server-side rendering

    • Build and run the Angular Universal project

  • Answered by AI
  • Q6. Read about Angular Universal for this

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Angular concepts, DSA and Ruby on Rails concepts for the round

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Nov 2022. There were 4 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 

3 questions in 3 hr, topics were Dp, Strings, Tree

Round 3 - Aptitude Test 

1hr durations 40 questions, main topics were patterns, profit loss, work man , etc.

Round 4 - Technical 

(1 Question)

  • Q1. OOPS, JAVA, Mysql, general questsjons

Interview Preparation Tips

Topics to prepare for Internshala Software Engineer interview:
  • java
  • Android
  • DSA
  • OOPS
Interview preparation tips for other job seekers - Just prepare what you know and deep dive in it so that you can fully explain about them.

I applied via Naukri.com and was interviewed in Jul 2022. 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 

It was on hacker rank

Round 3 - Aptitude Test 

It was a aptitude test taken by me of the new and all the response and the of new

Interview Preparation Tips

Topics to prepare for Coding Ninjas Software Engineer interview:
  • MySQL
  • YourSql
  • Analytics
Interview preparation tips for other job seekers - if the coin and the new off the medium and new if you add me in the data and of the suer

Tell us how to improve this page.

Interview Questions from Similar Companies

Internshala Interview Questions
3.9
 • 56 Interviews
Acadecraft Interview Questions
3.5
 • 52 Interviews
Coding Ninjas Interview Questions
3.7
 • 49 Interviews
TALENTEDGE Interview Questions
3.3
 • 21 Interviews
Nerdy Turtlez Interview Questions
2.8
 • 17 Interviews
MASAI School Interview Questions
4.1
 • 16 Interviews
SpeedLabs Interview Questions
3.6
 • 14 Interviews
UpThink Interview Questions
3.9
 • 13 Interviews
View all
Accounts Manager
21 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Application Developer
14 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

SME
12 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Inside Sales Executive
9 salaries
unlock blur

₹2.9 L/yr - ₹4.5 L/yr

Web Developer
9 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare uCertify with

Acadecraft

3.5
Compare

Coding Ninjas

3.7
Compare

Internshala

3.9
Compare

Globus Infocom

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