Upload Button Icon Add office photos
Engaged Employer

i

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

UKG Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

UKG Sde1 Interview Questions and Answers

Updated 7 Aug 2024

UKG Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Coding Test 

Aptitude and coding round, one coding question and others are computer fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Return true if Subarray is present whose sum is 0
  • Ans. 

    Check if there is a subarray with sum 0 in the given array of strings.

    • Iterate through the array and keep track of the running sum using a hashmap.

    • If the running sum is seen before, then there exists a subarray with sum 0.

    • Return true if a subarray with sum 0 is found, otherwise return false.

  • Answered by AI
  • Q2. Project, oops, dbms
Round 3 - Technical 

(2 Questions)

  • Q1. Subarray sun equal to k
  • Ans. 

    Find the number of subarrays that sum up to a given target value k.

    • Use a hashmap to store the running sum and its frequency as you iterate through the array.

    • For each element, check if the running sum - k exists in the hashmap. If it does, increment the count of subarrays.

    • Return the total count of subarrays that sum up to k.

  • Answered by AI
  • Q2. Project, oops, dbms
Round 4 - HR 

(1 Question)

  • Q1. Did not got slected i answered all still

Skills evaluated in this interview

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Filter in MVC
  • Ans. 

    Filter in MVC is used to retrieve a subset of data from a larger dataset based on certain criteria.

    • Filters can be applied to data in the model or in the view.

    • Filters can be used to sort, group, or limit the data returned.

    • Filters can be implemented using LINQ or other query languages.

    • Examples of filters include date range filters, category filters, and search filters.

  • Answered by AI
  • Q2. Authentication and authorisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all basics of MVC,SQL and C#

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sql based quedtion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare continuously don't lose hope

Interview Questionnaire 

2 Questions

  • Q1. Basic Java Question, oop concept collection Framework, Multithreading
  • Q2. Basic Data Structure, Algorithms, Sorting, Searching

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Basic concepts of javascript, html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare basic concepts properly. Don't hurry to highlight advance topics.
Answer questions only if you are sure about the correct answer.

I applied via LinkedIn and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic C++ questions mainly on OOPS.
  • Q2. Few puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly prepare c++ OOPS concept

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

The round was conducted in day around 3PM.

  • Q1. 

    Partition Equal Subset Sum Problem

    Given an array ARR consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that the sum of the elements in both sub...

  • Ans. 

    The problem is to determine if it is possible to partition an array into two subsets with equal sum.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the results of subproblems.

    • Check if the sum of the array is even before attempting to partition it.

    • Iterate through the array and update the 2D array based on the sum of subsets.

    • Return true if a subset with half the sum is found, false ot

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

The interview was preponed and was conducted at 9AM.
The interviewer was friendly and I had saw him earlier at pre-placement talk.

  • Q1. 

    Convert Sentence to Pascal Case

    Given a string STR, your task is to remove spaces from STR and convert it to Pascal case format. The function should return the modified STR.

    In Pascal case, words are con...

  • Ans. 

    Convert a given string to Pascal case format by removing spaces and capitalizing the first letter of each word.

    • Iterate through each character in the string

    • If the character is a space, skip it

    • If the character is not a space and the previous character is a space or it is the first character, capitalize it

  • Answered by AI
  • Q2. Write an SQL query to retrieve the Nth highest salary from a database.
  • Ans. 

    SQL query to retrieve the Nth highest salary from a database

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to retrieve the Nth highest salary

    • Consider handling cases where there might be ties for the Nth highest salary

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This round was conducted 15mins after 1st round.

  • Q1. 

    Remove the Kth Node from the End of a Linked List

    You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Lin...

  • Ans. 

    Remove the Kth node from the end of a singly linked list.

    • Traverse the list to find the length 'N'.

    • Calculate the position of the node to be removed from the beginning as 'N - K + 1'.

    • Remove the node at the calculated position.

    • Handle edge cases like removing the head or tail of the list.

    • Update the pointers accordingly after removal.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from National Institute of Technology, Raipur. I applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPAOracle interview preparation:Topics to prepare for the interview - Computer Networks, SQL, DBMS, Data Structures, Algorithms, OS, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do Competitive Coding
Tip 2 : Learn at least 1 framework
Tip 3 : Build interest in computers

Application resume tips for other job seekers

Tip 1 : Be well informed of everything you mention in your resume
Tip 2 : Mention competitive coding achivements in your resume(if any)

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between abstract class and interface?
  • Ans. 

    Abstract class can have implementation while interface cannot. Classes can implement multiple interfaces but only one abstract class.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have non-abstract methods while interface cannot.

    • Interfaces are used for full abstraction while abstract classes are used for partial abstraction.

    • Example: Abstract class - Animal with method eat() and subclass ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about java and object oriented programming programming.

Skills evaluated in this interview

UKG Interview FAQs

How many rounds are there in UKG Sde1 interview?
UKG interview process usually has 4 rounds. The most common rounds in the UKG interview process are Technical, Coding Test and HR.
What are the top questions asked in UKG Sde1 interview?

Some of the top questions asked at the UKG Sde1 interview -

  1. return true if Subarray is present whose sum i...read more
  2. subarray sun equal t...read more
  3. Did not got slected i answered all st...read more

Tell us how to improve this page.

UKG Sde1 Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 865 Interviews
Amdocs Interview Questions
3.7
 • 518 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 166 Interviews
Dassault Systemes Interview Questions
4.0
 • 164 Interviews
Freshworks Interview Questions
3.5
 • 164 Interviews
View all
Senior Software Engineer
550 salaries
unlock blur

₹10.2 L/yr - ₹23.6 L/yr

Lead Software Engineer
384 salaries
unlock blur

₹14.5 L/yr - ₹34 L/yr

Principal Software Engineer
260 salaries
unlock blur

₹17 L/yr - ₹43.4 L/yr

Lead Software Quality Assurance Engineer
103 salaries
unlock blur

₹12.5 L/yr - ₹26 L/yr

Senior Software QA Engineer
101 salaries
unlock blur

₹9.2 L/yr - ₹18.4 L/yr

Explore more salaries
Compare UKG with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

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