Upload Button Icon Add office photos

Filter interviews by

Hubilo Softech SDE-2 Interview Questions and Answers

Updated 20 Jan 2023

Hubilo Softech SDE-2 Interview Experiences

1 interview found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2023

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

I applied via Internshala and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Normal HR questions like about you current role and technologies.
Round 2 - Technical 

(5 Questions)

  • Q1. Event loop in javascript
  • Ans. 

    Event loop is a mechanism in JavaScript that allows asynchronous code to be executed.

    • Event loop continuously checks the call stack and the task queue.

    • If the call stack is empty, it takes the first task from the queue and pushes it to the call stack.

    • If the task is an asynchronous operation, it is pushed to the Web API and a callback function is registered.

    • Once the operation is complete, the callback function is pushed t...

  • Answered by AI
  • Q2. Connection pooling in databases
  • Ans. 

    Connection pooling is a technique used to improve performance and scalability of database applications.

    • Connection pooling allows multiple clients to reuse a single database connection, reducing the overhead of creating and tearing down connections.

    • It helps in improving the performance of the application by reducing the time taken to establish a new connection.

    • Connection pooling can be implemented at the application lev...

  • Answered by AI
  • Q3. Asynchronous programming
  • Q4. Indexing in database and SQL vs NO SQL
  • Ans. 

    Indexing is important for efficient data retrieval. SQL databases use traditional indexing while NoSQL databases use various indexing techniques.

    • SQL databases use B-tree indexing while NoSQL databases use hash-based, inverted index, or full-text search indexing

    • SQL databases are better suited for structured data while NoSQL databases are better suited for unstructured or semi-structured data

    • SQL databases have strict sch...

  • Answered by AI
  • Q5. System designing - High and low level

Interview Preparation Tips

Interview preparation tips for other job seekers - Normal Javascript based question like promises, callback, event loop
Database - Mongo/ Mysql
Kafka

Skills evaluated in this interview

Interview questions from similar companies

I applied via Indeed and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Business problems and case studies
  • Q2. Guesstimates
  • Q3. Experience to date
  • Ans. 

    I have 3 years of experience working as a Data Analyst in the finance industry.

    • Analyzed financial data to identify trends and make recommendations

    • Created reports and dashboards using tools like Tableau and Excel

    • Collaborated with cross-functional teams to improve data quality and accuracy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use your basic aptitude.

Intern Interview Questions & Answers

Droom user image Anonymous

posted on 5 May 2017

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. What do you know about our company and product
  • Ans. 

    I'm sorry, I don't have access to the internet to research the company and product.

    • Answered by AI
    • Q2. Tell us all you know about Droom
    • Ans. 

      Droom is an online marketplace for buying and selling new and used vehicles.

      • Founded in 2014 by Sandeep Aggarwal

      • Offers a wide range of vehicles including cars, bikes, and scooters

      • Provides services such as vehicle history reports and inspections

      • Has over 6,500 certified dealers and over 50,000 listings

      • Operates in India and Singapore

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: Seems like an HR question, but is a product based question for the company. So now, when they call it technical, it is because their product is the website that they manage. So I started talking about Droom's vision and mission.
    I spoke of a few features that would help customers. I also spoke of the tools that were useful for customer experience. I also mentioned the speed and quality of the site.
    Tips: Here be careful as you need to answer in the technical sense. Starting with when the company was started/ the location will not help build a point. Start off with the product. Also feel free to point out negatives, but make sure you sandwich it between smoother and better things.

    I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (3 Questions)

    • Q1. Program for a palindrome Number.
    • Ans. 

      Program to check if a number is a palindrome.

      • Convert the number to a string to easily check for palindrome

      • Reverse the string and compare it with the original string

      • If they are the same, the number is a palindrome

    • Answered by AI
    • Q2. React Lifecycle methods
    • Q3. Hooks in react?
    • Ans. 

      Hooks are a feature in React that allow you to use state and other React features in functional components.

      • Hooks were introduced in React 16.8.

      • They allow you to use state and other React features without writing a class.

      • Commonly used hooks include useState, useEffect, useContext, and useReducer.

      • Hooks must be used at the top level of your functional component.

      • Example: const [count, setCount] = useState(0);

    • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. Create a High-level design
    • Ans. 

      Design a high-level architecture for a software system

      • Identify the main components of the system

      • Define the interactions between the components

      • Consider scalability, security, and performance

      • Choose appropriate technologies and frameworks

      • Create a diagram to visualize the architecture

    • Answered by AI
    • Q2. Questions on the design you created

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Delete nth node from end in linked list
    • Ans. 

      To delete the nth node from the end in a linked list, we can use a two-pointer approach.

      • Use two pointers, one to traverse the list and another to keep track of the nth node from the end.

      • Move the second pointer n steps ahead of the first pointer.

      • When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.

      • Adjust the pointers to delete the nth node.

    • Answered by AI
    • Q2. Project discussion

    Interview Preparation Tips

    Interview preparation tips for other job seekers - revise your latest projects and technologies used thoroughly, prepare trees and linked list in DSA

    Skills evaluated in this interview

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

    I appeared for an interview before Feb 2024.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Introduction and Work Experience
    Round 2 - Assignment 

    A Presentation on certain concepts.

    Round 3 - Technical 

    (1 Question)

    • Q1. Role related technical questions
    Round 4 - HR 

    (1 Question)

    • Q1. Cultural Fitment related questions.

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

    Interview Questionnaire 

    3 Questions

    • Q1. Ds algo questions
    • Q2. Js basics
    • Q3. React.js

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

    Interview Questionnaire 

    1 Question

    • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

    Round 1 - Technical 

    (1 Question)

    • Q1. SQL: left join, right join and inner join questions find out the latest entry for an user when they log in to a app Python: few basic questions on python like count the characters in a word. Linux: what co...

    Hubilo Softech Interview FAQs

    How many rounds are there in Hubilo Softech SDE-2 interview?
    Hubilo Softech interview process usually has 3 rounds. The most common rounds in the Hubilo Softech interview process are Resume Shortlist, HR and Technical.
    What are the top questions asked in Hubilo Softech SDE-2 interview?

    Some of the top questions asked at the Hubilo Softech SDE-2 interview -

    1. Indexing in database and SQL vs NO ...read more
    2. Connection pooling in databa...read more
    3. Event loop in javascr...read more

    Tell us how to improve this page.

    Hubilo Softech SDE-2 Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    MagicPin Interview Questions
    2.6
     • 50 Interviews
    Tokopedia Interview Questions
    4.1
     • 25 Interviews
    Meritto Interview Questions
    3.6
     • 22 Interviews
    Furlenco Interview Questions
    3.4
     • 21 Interviews
    JUSPAY Interview Questions
    3.1
     • 21 Interviews
    Melorra Interview Questions
    3.2
     • 20 Interviews
    Droom Interview Questions
    3.8
     • 19 Interviews
    AstroTalk Interview Questions
    3.4
     • 19 Interviews
    Nestaway Interview Questions
    3.8
     • 18 Interviews
    View all

    Hubilo Softech SDE-2 Reviews and Ratings

    based on 2 reviews

    3.0/5

    Rating in categories

    2.0

    Skill development

    2.0

    Work-life balance

    3.4

    Salary

    1.8

    Job security

    2.6

    Company culture

    2.4

    Promotions

    1.4

    Work satisfaction

    Explore 2 Reviews and Ratings
    Talent Acquisition Executive
    19 salaries
    unlock blur

    ₹5.2 L/yr - ₹12 L/yr

    Software Development Engineer II
    8 salaries
    unlock blur

    ₹20 L/yr - ₹35.5 L/yr

    Sdet 2
    7 salaries
    unlock blur

    ₹17.1 L/yr - ₹25 L/yr

    Technical Lead
    6 salaries
    unlock blur

    ₹40 L/yr - ₹45 L/yr

    Customer Success Manager
    6 salaries
    unlock blur

    ₹4.5 L/yr - ₹12 L/yr

    Explore more salaries
    Compare Hubilo Softech with

    MagicPin

    2.6
    Compare

    Awign Enterprises

    3.9
    Compare

    Nestaway

    3.8
    Compare

    Ketto

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