Upload Button Icon Add office photos

Filter interviews by

HighLevel Software Development Engineer III Interview Questions and Answers

Updated 13 Aug 2024

HighLevel Software Development Engineer III Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Leetcode Medium question: 3sum
  • Q2. Puzzle: Two doors with two guards - one lies, one tells the truth
Round 2 - Assignment 

Make some API integration for a given problem statement

Round 3 - One-on-one 

(2 Questions)

  • Q1. System Design Round
  • Q2. Overall discussion on scalibility
Round 4 - HR 

(2 Questions)

  • Q1. Introduction and basic HR questions
  • Q2. Role fitting questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through a recruiter. The process took 3 weeks. I interviewed at highlevel (Bengaluru) from 22 Jul 2024 to 12 Aug 2024.

Extremely unprofessional HR and tech team. The first round was scheduled early morning and at the last moment after waiting for 10 minutes on the link, they rescheduled the interview.

2nd round was an assignment round and getting the feedback after multiple followups was painful.

The tech team is too busy for interviews and assignment review. 3rd round was system design. 4th round was culture fit with HR.

After strong positive feedback from all the interview panelists and HR, I still wasn't communicated when the offer call will take place. After multiple followups and endless excuses they arranged a call after 5 days from last round.

They got back to me with a 9% increase from my last employer. We started the process after discussing a minimum 25% increment. Throughout the process I received strong feedbacks, and after 3 weeks of this, they told me it was a budget issue.

They're just wasting everyone's time, the unprofessionalism was unacceptable.

Software Development Engineer III Jobs at HighLevel

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Island Perimeter and Number of Provinces. Basic Leetcode question

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions
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 - Coding Test 

Strings question asked, baics

Round 3 - Technical 

(1 Question)

  • Q1. Java basics question asked
Round 4 - HR 

(1 Question)

  • Q1. Regarding salary, experience

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 2022. There were 4 interview rounds.

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

There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. First question was binary search in unsorted arrays So here i have asked about sorting algorithms all sorting algorithms must be clear
  • Q2. Second question was to find longest consecutive subarray.
  • Ans. 

    Find the longest consecutive subarray.

    • Iterate through the array and keep track of the current subarray length.

    • Update the maximum length as you iterate.

    • Reset the current subarray length when a non-consecutive element is encountered.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOPS related question Heap insertion deletion question Hashing Spanning tree
  • Q2. Minimum Spanning tree Implementation of MST
  • Ans. 

    Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.

    • MST can be found using Prim's algorithm or Kruskal's algorithm.

    • Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.

    • Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.

    • MST has...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You have strong understanding of core cs subjects
You have full command in DSA. You have to practice from leetcode
Sometimes your luck also matters

Skills evaluated in this interview

I applied via Job Fair and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and academic details and strength and weakness and how many sebbling and as well as project title as well as procedure
  • Q2. About company and why your choosing in this company and salary package expected

Interview Preparation Tips

Topics to prepare for Deloitte Softwaretest Engineer interview:
  • Manual testing and SQL
  • Types of testing
Interview preparation tips for other job seekers - I don't have job present iam searching for job I want to job in our company

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. What is difference between controller and rest controller?
  • Ans. 

    A controller is a component that handles incoming requests and returns a response, while a REST controller specifically handles RESTful requests.

    • A controller is responsible for handling various types of requests, such as HTTP, WebSocket, etc.

    • A REST controller is a type of controller that specifically handles RESTful requests, which follow the principles of Representational State Transfer (REST).

    • REST controllers typical...

  • Answered by AI
  • Q2. What is functional interface?
  • Ans. 

    A functional interface is an interface that has only one abstract method.

    • Functional interfaces are used in lambda expressions and method references.

    • They can have default methods and static methods.

    • Examples include Runnable, Comparator, and Function interfaces.

    • Functional interfaces can be annotated with @FunctionalInterface annotation.

  • Answered by AI
  • Q3. What is lamda expression?
  • Ans. 

    Lambda expression is a concise way to represent anonymous functions in programming languages.

    • Lambda expressions are commonly used in functional programming languages.

    • They can be used to create functions on the fly without having to define them explicitly.

    • Lambda expressions are often used in higher-order functions, such as map, filter, and reduce.

    • They can also be used to create closures, which are functions that capture...

  • Answered by AI
  • Q4. What is exception propagation?
  • Ans. 

    Exception propagation is the process of passing an exception up the call stack to be handled by a higher-level method.

    • Exceptions are thrown when an error occurs in a method.

    • If the exception is not caught and handled within the method, it is propagated up the call stack.

    • Each method in the call stack has the option to catch and handle the exception or propagate it further up.

    • If the exception reaches the top of the call s...

  • Answered by AI
  • Q5. Difference between get and load method in hibernate?
  • Ans. 

    get() method returns null if the object is not found in the cache or database, while load() method throws an exception.

    • get() method is eager loading while load() method is lazy loading.

    • get() method returns the object from the database or cache while load() method returns a proxy object.

    • get() method is slower than load() method.

    • get() method is used when we are not sure if the object exists in the database or cache while...

  • Answered by AI
  • Q6. What is method overriding?
  • Ans. 

    Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.

    • Method overriding is used to achieve runtime polymorphism.

    • The method signature (name, parameters, return type) must be the same in both the superclass and subclass.

    • The access level of the overriding method cannot be more restrictive than the overridden method.

    • Example: class Dog extends Animal { pub...

  • Answered by AI
  • Q7. What IOC and DI in spring?
  • Ans. 

    IOC and DI are design patterns used in Spring framework for loose coupling and dependency injection.

    • IOC (Inversion of Control) is a design pattern where the control of object creation and lifecycle is handed over to a container or framework.

    • DI (Dependency Injection) is a design pattern where the dependencies of an object are injected into it by an external entity, rather than the object creating them itself.

    • Spring fram...

  • Answered by AI
  • Q8. What is internal working of hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • Each bucket contains a linked list of entries with the same hash code

    • When a key-value pair is added, its hash code is used to determine the bucket and added to the linked list

    • When a value is retrieved, its hash code is used to find the bucket and search the linked ...

  • Answered by AI
  • Q9. Advantages of spring boot?
  • Ans. 

    Spring Boot provides rapid application development and microservices architecture.

    • Easy configuration and setup

    • Embedded servers for faster development

    • Auto-configuration of dependencies

    • Supports multiple data sources

    • Actuator for monitoring and managing applications

    • Simplifies development of RESTful web services

    • Enables building of microservices architecture

    • Provides a wide range of plugins and extensions

    • Reduces boilerplate c

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly focus on core java concept and then spring, hibernate, spring boot. Be confident with your answers. Always answer in a simple way don't make it complicated to understand it.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. There were questions mainly checking core java skills and concept on hibernate, spring boot, spring core, spring MVC, optimization
  • Q2. Serialization, internal working hashmap, concurrent hashmap, abstraction, interface, oops concepts, threading cycle, exception handling, singleton class, singleton pattern, spring annotations, springboot a...
  • Q3. Custom exception, custom immutable string, defining abstraction n interface, hashmap internal working, thread creation n working, singleton class ABOVE ALL PROGRAM

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare mainly core skills , before going to any interview prepare all these programs well in different scenarios. These scenarios like optimized, iterative and recursion

Interview Questionnaire 

2 Questions

  • Q1. TELL ME BREIFLY ABOUT YOUR FAVOURITE SUB WHICH YOU MENTIONED IN YOUR RESUME?
  • Ans. 

    My favorite sub is Artificial Intelligence.

    • I am fascinated by the potential of AI to revolutionize various industries.

    • I have experience in developing machine learning algorithms and neural networks.

    • I enjoy working on projects that involve natural language processing and computer vision.

    • I find the ethical implications of AI development and deployment intriguing.

    • I stay updated with the latest advancements in AI through r

  • Answered by AI
  • Q2. ABOUT MY MAJOR PROJECT AND HOW IT WILL BE USEFUL TO SOCIETY?

Interview Preparation Tips

Round: HR Interview
Experience: ITS A COOL & FRIENDLY MEETING WITH HR.BEFORE I ENTERED INTO THE ROOM I WAS SO TENSED THEN I THOUGHT I CAN DO & FULFILLED MY CONFIDENCE LEVEL.WITH THAT CONFIDENT I ENTERED INTO THE ROOM & I WISHED HIM BOLDLY& FOR EACH & EVERY QUESTION I ANSWERED WITH CLARITY WITH OUT ANY TENSE.
Tips: THOROUGH WITH C&C++ CONCEPTS.THOUGH IF YOU DON'T KNOW THE ANSWER TO ANY QUESTION JUST DON'T BE QUIT.......TELL SOMETHING RELATED TO THAT.TELL EACH & EVERY ANSWER BOLDLY&CONFIDENTLY.......WHEN YOU ENTERED INTO THE ROOM WISH THEM BOLDLY WITH A SMILE...............SPEAK CONFIDENTLY.SIMPLY JUST TRY TO IMPRESS THE HR

General Tips: JUST CONCENTRATE MOSTLY ON INDIA BIX SITE & TRY TO SOLVE THE RS AGARWAL MODEL PAPERS
Skill Tips: WHAT EVER YOU SPEAK........ SPEAK IT FLUENTLY
Skills: COMMUNICATION SKILLS, LEADER SHIP SKILLS
College Name: SATHYABAMA UNIVERSITY
Motivation: MY PARENTS

HighLevel Interview FAQs

How many rounds are there in HighLevel Software Development Engineer III interview?
HighLevel interview process usually has 4 rounds. The most common rounds in the HighLevel interview process are One-on-one Round, Assignment and HR.
How to prepare for HighLevel Software Development Engineer III 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 HighLevel. The most common topics and skills that interviewers at HighLevel expect are Full Stack, Javascript, Monitoring Tools and RDBMS.
What are the top questions asked in HighLevel Software Development Engineer III interview?

Some of the top questions asked at the HighLevel Software Development Engineer III interview -

  1. Puzzle: Two doors with two guards - one lies, one tells the tr...read more
  2. Overall discussion on scalibil...read more
  3. leetcode Medium question: 3...read more

Tell us how to improve this page.

HighLevel Software Development Engineer III Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 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
 • 5.1k 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
 • 3.1k Interviews
View all
Software Development Engineer II
13 salaries
unlock blur

₹24 L/yr - ₹27 L/yr

Software Development Test Engineer 2
9 salaries
unlock blur

₹10.5 L/yr - ₹24 L/yr

Product Manager
7 salaries
unlock blur

₹28 L/yr - ₹32 L/yr

Customer Support Representative
6 salaries
unlock blur

₹7 L/yr - ₹11.4 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹15 L/yr - ₹29 L/yr

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