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
2.7

based on 83 Reviews

Filter interviews by

uCertify Interview Questions, Process, and Tips

Updated 31 Aug 2023

Top uCertify Interview Questions and Answers

View all 7 questions

uCertify Interview Experiences

Popular Designations

5 interviews found

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

I applied via Campus Placement and was interviewed in Jan 2023. There were 6 interview rounds.

Round 1 - Coding Test 

There were 4 coding rounds first was mainly from from both javascript htm css api and php.

Round 2 - Coding Test 

2nd round was html and css coding test on there website.

Round 3 - Assignment 

3 round was javascript coding round on their website.

Round 4 - Coding Test 

4 th round was the pho round on their website.

Round 5 - HR 

(1 Question)

  • Q1. In this round the hr asked for personel information and project discussion mainly.
Round 6 - One-on-one 

(1 Question)

  • Q1. In this round the hr took deep dive into my projects and asked more about projects and technical skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for php and php frameworks and make enough projects on php.

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given DifferenceYou are given an integer array 'ARR' of size ‘N’ and two integers ‘A’ and ‘B’. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your About project manager skills
  • Q2. What is ITIL PROCESS
  • Ans. 

    ITIL (Information Technology Infrastructure Library) is a set of best practices for IT service management.

    • ITIL is a framework that outlines processes, tasks, and checklists for managing IT services.

    • It focuses on aligning IT services with the needs of the business and improving efficiency.

    • ITIL processes include incident management, problem management, change management, and more.

    • ITIL helps organizations deliver value to...

  • Answered by AI

Skills evaluated in this interview

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me something or prove me that you live in an organised manner?
  • Ans. Every day I woke up I made a todo list and I wrote down that these are the things I should do and if something occurs these things won’t suffer
  • Answered Anonymously
  • Q2. Tell me something about yourself apart from your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and leave the rest
The rest will automatically achieve by you and your confidence

Inside Sales Executive Interview Questions asked at other Companies

Q1. Sell me an android phone, if I am already having a iPhone.
View answer (1)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120min
Round difficulty - Easy

  • Q1. What are semaphores?
  • 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. DFS

    We can approach this problem by running a DFS starting from vertex-1.

    We have a total of ‘m’ edges.

    When can we achieve the configuration when we see in reference to vertex-1? 

    1. Let's say vertex-1 is ‘Blue’
      1. If all the vertices that connect to vertex-1 are ‘Red’, then we can say that the configuration is possible.
    2. If this would be the negation of the last one. Say, vertex-1 is ‘Red’
      1. If all the vertices that connect to ...
  • Answered Anonymously
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. Brute force, DFS
    • We will run two nested loops to traverse each cell of the matrix.
    • For each cell, we perform DFS in which we go to all adjacent neighbours having their height lower than the current cell.
    • We take two boolean variables to mark the reachability of that cell to the ocean. If we somehow reach any of the ocean we mark the corresponding boolean variable to be true.
    • In the end, if both of the boolean variables are...
  • Answered Anonymously
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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

uCertify interview questions for popular designations

 Inside Sales Executive

 (1)

 Project Manager

 (1)

 Software Developer

 (1)

 Software Developer Intern

 (1)

 Web Developer

 (1)

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. Brute Force

    The idea here is to first, sort the critical POINTS with respect to their coordinate and height pairs. Make a pair of 'X1' and take a negative of the height for the building so that 'X1' pairs are sorted before 'X2' pairs. Create a dictionary keeping the heights as keys and as soon as a left edge of a building is encountered, we add that building to the dictionary with its height as the key. When we encounte...

  • Answered Anonymously
  • Q2. 

    Sort String with Alternate Lower and Upper Case

    Given a string STR containing both lowercase and uppercase letters, the task is to sort the string so that the resulting string contains uppercase and lower...

  • Ans. Brute Force Approach
    • We will solve this problem by taking two arrays, ‘upCount’ and ‘lowCount’ of size ‘26’ that will store the count of uppercase and lowercase letters.
    • We will traverse the given string and increment its count corresponding to its value.
    • Now, ‘upCount’ and ‘lowCount’ will store the count of uppercase and lowercase letters in sorted order, but there will be some characters whose count is ‘0’, i.e., the ch...
  • Answered Anonymously
Round 2 - Telephonic Call 

Round duration - 15 Minutes
Round difficulty - Easy

Round 3 - Assignment 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. Valid Parenthesis

    Make use of the stack. Traverse the string and push the current character in the stack if it is an opening brace else pop from the stack If it is the corresponding starting brace for current closing brace then move to the next character of the string otherwise return false.

     

    If after complete traversal if the stack is empty then the string is balanced else it is not balanced.

     

    Pseudo Code:

    • Decla...
  • Answered Anonymously
Round 4 - HR 

Round duration - 15 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaUcertify interview preparation:Topics to prepare for the interview - Aptitude , DS, Algo, Networking, OOPSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice as many as topics u can
Tip 2 : practice important questions asked in company by seeing reviews 

Application resume tips for other job seekers

Tip 1 : have some projects and internships in your resume
Tip 2 : Skills related to position

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview questions from similar companies

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

I applied via Referral and was interviewed in Aug 2023. There were 5 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 - One-on-one 

(3 Questions)

  • Q1. Good dba questions
  • Q2. There 3 rounds followed by HR
  • Q3. Generally Dba question
Round 3 - One-on-one 

(1 Question)

  • Q1. Generally asked dba questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Generall discussion
Round 5 - HR 

(1 Question)

  • Q1. General discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

People development Interview Questions & Answers

Coursera user image Anonymous

posted on 17 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. There were situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview went well but there was no proper response post my interview.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about your daily routine
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your previous job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice reasoning, general awareness questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 2 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. What is evolution? What is convergent and divergent evolution?
  • Ans. 

    Evolution is the process of gradual change in the inherited traits of a population over successive generations.

    • Convergent evolution is when unrelated species evolve similar traits due to similar environmental pressures.

    • Divergent evolution is when a species diverges into two or more descendant species with different adaptations.

    • Examples of convergent evolution include the wings of birds and bats, while an example of div...

  • Answered by AI
  • Q2. What is Allelic and genetic frequency?
  • Ans. 

    Allelic frequency refers to the proportion of a particular allele in a population, while genetic frequency refers to the proportion of a particular genotype in a population.

    • Allelic frequency is calculated by dividing the number of copies of a specific allele by the total number of alleles in the population.

    • Genetic frequency is calculated by dividing the number of individuals with a specific genotype by the total number...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for UpThink Biology Subject Matter Expert interview:
  • Biology

Curriculum Engineer Interview Questions & Answers

MASAI School user image Anonymous

posted on 1 Nov 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is database indexing? How does indexing work? What is compound indexing in mongodb
  • Q2. How is node.js non blocking? How does it handle async operations?
  • Q3. What are aggregation pipelines?
  • Q4. Design an e-commerce schema, and some of the things to look into while designing the schema
  • Q5. What is the difference between fs.writeFile and fs.writeFileSync? How will it affect your apis when there is 1, 10 and 1000+ users respectively

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are going for mern roles, especially backend, learn in depth understanding of DBs and general practices of backend

Skills evaluated in this interview

uCertify Interview FAQs

How many rounds are there in uCertify interview?
uCertify interview process usually has 4-5 rounds. The most common rounds in the uCertify interview process are Coding Test, One-on-one Round and Resume Shortlist.
How to prepare for uCertify 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 uCertify. The most common topics and skills that interviewers at uCertify expect are Sales, Educational Sales, Javascript, Cold Calling and Communication Skills.
What are the top questions asked in uCertify interview?

Some of the top questions asked at the uCertify interview -

  1. What is ITIL PROC...read more
  2. In this round the hr took deep dive into my projects and asked more about proje...read more
  3. In this round the hr asked for personel information and project discussion main...read more

Tell us how to improve this page.

uCertify Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
upGrad Interview Questions
3.7
 • 205 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
NIIT Interview Questions
3.6
 • 81 Interviews
MeritNation Interview Questions
3.6
 • 7 Interviews
View all

uCertify Reviews and Ratings

based on 83 reviews

2.7/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

2.7

Salary

2.6

Job security

2.7

Company culture

2.9

Promotions

2.7

Work satisfaction

Explore 83 Reviews and Ratings
Explore more jobs
Accounts Manager
20 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Application Developer
14 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

SME
11 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

Simplilearn

3.2
Compare

upGrad

3.7
Compare

MeritNation

3.6
Compare

BYJU'S

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