Upload Button Icon Add office photos

Filter interviews by

Globe group Front end Developer Interview Questions, Process, and Tips

Updated 19 Jul 2024

Globe group Front end Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. Tell me something about yourself.
  • Q2. Explain what API is?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods for requesting and receiving data from a web server

    • They can be used to integrate different software systems or services

    • Examples include Google Maps API for embedding maps in websites

  • Answered by AI
  • Q3. What is meant by Bootstrap?
  • Ans. 

    Bootstrap is a popular front-end framework for building responsive and mobile-first websites.

    • Bootstrap is a free and open-source CSS framework.

    • It includes pre-built design templates and components for creating responsive web pages.

    • Bootstrap uses a grid system for layout and includes CSS and JavaScript components.

    • It helps developers to quickly and easily design and customize websites.

    • Example: Bootstrap's grid system all...

  • Answered by AI
  • Q4. Difference between JS and CSS.
  • Ans. 

    JS is a programming language used for adding interactivity to websites, while CSS is a styling language used for designing the layout and appearance of web pages.

    • JS is used for adding functionality and interactivity to websites.

    • CSS is used for styling and designing the layout of web pages.

    • JS can manipulate HTML elements and handle events.

    • CSS can control the visual presentation of web pages, such as colors, fonts, and l...

  • Answered by AI
  • Q5. Give me full forms of HTML, CSS and JS.
  • Ans. 

    HTML - HyperText Markup Language, CSS - Cascading Style Sheets, JS - JavaScript

    • HTML - HyperText Markup Language

    • CSS - Cascading Style Sheets

    • JS - JavaScript

  • Answered by AI
Round 2 - Coding Test 

Was given to replicate a website.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare some answers for some of the generic questions beforehand.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. DSA Based Questions
  • Q2. Full Stack Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study
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 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Based on our resuem

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Coding bassed interview
Round 2 - Coding Test 

I had made a four page website

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

(2 Questions)

  • Q1. Project disscuss ion machine coding round
  • Q2. Live mcr solution drag and drop
  • Ans. 

    Live MCR solution drag and drop allows users to interactively move and rearrange elements on a webpage in real-time.

    • Use HTML5 drag and drop API to implement the functionality

    • Utilize JavaScript to handle drag and drop events

    • Update the DOM dynamically based on user interactions

    • Consider accessibility and usability aspects for a seamless user experience

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

To share assignment for email.

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview arrange google meet.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About Yourself.
  • Q2. About coding skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Explain arrow function
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to traditional function expressions.

    • They do not have their own 'this' keyword, instead they inherit 'this' from the parent scope.

    • Arrow functions are best suited for non-method functions and do not work well as object methods.

  • Answered by AI
  • Q2. What are primitive data types in javascript
  • Ans. 

    Primitive data types in JavaScript are basic data types that are not objects and do not have methods.

    • Primitive data types include string, number, boolean, null, undefined, and symbol.

    • Examples: 'hello' (string), 42 (number), true (boolean), null, undefined, Symbol('foo')

  • Answered by AI
  • Q3. Questions on previously worked projects
  • Q4. Explain equality in JS
  • Ans. 

    Equality in JS refers to how values are compared in JavaScript.

    • In JavaScript, there are two types of equality: strict equality (===) and loose equality (==)

    • Strict equality (===) checks if the values are of the same type and have the same value

    • Loose equality (==) converts the operands to the same type before making the comparison

    • Example: 1 === '1' is false (strict equality), 1 == '1' is true (loose equality)

  • Answered by AI
  • Q5. OOPS concepts in JS
  • Ans. 

    OOPS concepts in JavaScript involve encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Ability of a class to inherit properties and methods from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the neces

  • Answered by AI
Round 2 - Coding Test 

Complex program to test knowledge of JS, HTML, CSS, DOM manipulation and 2D animations

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

I was asked to build some components like a buttons ,checkboxes etc

Round 2 - Technical 

(4 Questions)

  • Q1. In this round too i was aked to. Reate components while i was on team cal with the interviwer
  • Q2. Who you can make button disabled on click
  • Ans. 

    You can make a button disabled on click by adding a click event listener and setting the 'disabled' attribute.

    • Add a click event listener to the button element

    • Inside the event listener function, set the 'disabled' attribute of the button to true

  • Answered by AI
  • Q3. Create a simple drop down menu
  • Ans. 

    Create a simple drop down menu using HTML and CSS

    • Use element to define the options in the menu

    • Style the drop down menu using CSS to customize its appearance

Answered by AI
  • Q4. Create hide and show kinda features
  • Ans. 

    Use CSS and JavaScript to create hide and show functionality on elements.

    • Use CSS display property to hide and show elements

    • Toggle classes with JavaScript to control visibility

    • Utilize event listeners to trigger hide and show actions

  • Answered by AI

    Skills evaluated in this interview

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

    I applied via Recruitment Consulltant and was interviewed in Feb 2023. 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 

    Html, css, java script, react, bootstrap, jQuery,

    Round 3 - Group Discussion 

    Html, css, java script, bootstrap, react, jQuery

    Interview Preparation Tips

    Topics to prepare for Zero Miles Infratech Front end Developer interview:
    • Html
    • Css
    • Javascript
    • Bootstrap
    • JQuery
    • React.Js
    Interview preparation tips for other job seekers - I am good in html, css, bootstrap, js, and, react and experience all in one year

    Globe group Interview FAQs

    How many rounds are there in Globe group Front end Developer interview?
    Globe group interview process usually has 2 rounds. The most common rounds in the Globe group interview process are HR and Coding Test.
    What are the top questions asked in Globe group Front end Developer interview?

    Some of the top questions asked at the Globe group Front end Developer interview -

    1. What is meant by Bootstr...read more
    2. Give me full forms of HTML, CSS and ...read more
    3. Explain what API ...read more

    Tell us how to improve this page.

    Globe group Front end Developer Interview Process

    based on 1 interview

    Interview experience

    5
      
    Excellent
    View more
    Compare Globe group with

    Technique Control Facility Management

    3.8
    Compare

    Impressions Services

    3.7
    Compare

    Lion Services

    3.6
    Compare

    Sms Integrated Facility Services

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