Upload Button Icon Add office photos

Filter interviews by

GetMyUni UI Developer Interview Questions and Answers

Updated 14 May 2021

GetMyUni UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 14 May 2021

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

Interview Questionnaire 

2 Questions

  • Q1. Basic question on html css js
  • Q2. Assignment to convert psd to html
  • Ans. 

    Converting PSD to HTML involves translating a design file into a functional website using HTML, CSS, and possibly JavaScript.

    • Analyze the PSD file to identify design elements and layout

    • Use HTML to structure the content and layout of the website

    • Apply CSS to style the elements according to the design

    • Optimize images and assets for web use

    • Ensure responsiveness for different screen sizes

    • Test the website across browsers and d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Given assignment to complete it in 3days as I completed in 2days after that I call hr she said you where shortlisted but still some interviews are going on so wait for some time. I said ok but after 6 days I mailed her but no reply again I mailed her after 6days no use

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Registration 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Why you choos this domain
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Why should I hire u
  • Q3. How much salary ru expecting

Interview Preparation Tips

Topics to prepare for CollegePur Front end Developer interview:
  • HTML
  • CSS
  • Javascript
Interview preparation tips for other job seekers - I don't know
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Hoisting in javascript
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between useMemo and useCallback ?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a computed value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q2. How we do error handling in js ?
  • Ans. 

    Error handling in JavaScript involves using try-catch blocks, throwing errors, and using error objects.

    • Use try-catch blocks to catch errors and handle them gracefully

    • Throw errors using the throw keyword to indicate when something goes wrong

    • Use error objects like Error, SyntaxError, TypeError, etc. to provide more information about the error

    • Handle asynchronous errors using promises and the .catch() method

  • Answered by AI
  • Q3. What is Promises ? Write a Polyfill of Promise.all()
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • Promise.all() takes an array of promises and returns a single promise that resolves when all of the input promises have resolved.

    • A polyfill for Promise.all() can be implemented using a combination of Promise and Array.prototype.reduce().

  • Answered by AI
Round 2 - Assignment 

Frontend assignment make the CRUD application using of reactj.s

Interview Preparation Tips

Topics to prepare for Interview Kickstart Front end Developer interview:
  • Reactjs
  • Javascript
  • NextJs
  • HTML
  • CSS
Interview preparation tips for other job seekers - i submit my assignment, but hr not giving feedback for next interview rounds. They do not reply for my messages after submit the assignment.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AngelList and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Very Polite in nature and good human
  • Q2. Some basic Hr question and telephonic tech round
Round 2 - HR 

(1 Question)

  • Q1. Video tech round by Technical hr team
Round 3 - One-on-one 

(2 Questions)

  • Q1. All the question are basic and some output based Js question no any practical question base on react and node
  • Q2. The interviewer voice is too slow as you can guess very average communication skills .They are asking for question from sheet provided by seniors .make it seems like they aren't well prepared for conductin...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Walk-in and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does your experience align with the role?
  • Ans. 

    My experience in sales includes exceeding targets, building strong client relationships, and implementing successful sales strategies.

    • Exceeded sales targets by 20% in my previous role

    • Built and maintained strong relationships with key clients, resulting in repeat business

    • Implemented a new sales strategy that increased revenue by 30%

  • Answered by AI
  • Q2. How did you achieve your targets?
  • Ans. 

    I achieved my targets through strategic planning, effective communication, and consistent follow-up.

    • Set clear and achievable goals

    • Developed a detailed sales plan

    • Regularly communicated with clients to understand their needs

    • Followed up on leads and opportunities

    • Analyzed sales data to identify trends and adjust strategies accordingly

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain angular life cycle hook
  • Ans. 

    Angular life cycle hooks are methods that allow you to tap into specific points in a component's life cycle.

    • ngOnChanges: Called when an input property changes

    • ngOnInit: Called once after the component is initialized

    • ngOnDestroy: Called before the component is destroyed

    • ngAfterViewInit: Called after the component's view has been initialized

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to make responsive image using html do not use css nd bootstrap
  • Ans. 

    Use the 'srcset' attribute in the 'img' tag to make images responsive without using CSS or Bootstrap.

    • Use the 'srcset' attribute in the 'img' tag to provide multiple image sources with different resolutions.

    • Specify the 'sizes' attribute to define the layout breakpoints for different screen sizes.

    • Include the 'width' attribute to help the browser determine the correct image size to display.

    • Example: <img src='small.jpg'...

  • Answered by AI
  • Q2. What is different between html html 4 nd html 5
  • Ans. 

    HTML5 introduced new features like semantic elements, audio/video support, canvas element, and improved form controls.

    • HTML5 introduced new semantic elements like <header>, <footer>, <nav>, <article>, <section> for better structure and SEO.

    • HTML5 added native support for audio and video elements, eliminating the need for third-party plugins like Flash.

    • HTML5 introduced the <canvas> elem...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please share the correct answer for that qutions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is html and css
  • Ans. 

    HTML is a markup language used for creating the structure of a web page, while CSS is a styling language used for designing the layout and appearance of a web page.

    • HTML stands for HyperText Markup Language and is used to create the structure of web pages.

    • CSS stands for Cascading Style Sheets and is used to style the layout and appearance of web pages.

    • HTML uses tags to define elements like headings, paragraphs, images, ...

  • Answered by AI
  • Q2. Why we hire u
  • Ans. 

    I have the skills, experience, and passion to contribute effectively to the team and help achieve the company's goals.

    • Strong expertise in UI development technologies such as HTML, CSS, JavaScript, and frameworks like React

    • Proven track record of delivering high-quality, user-friendly interfaces that meet business requirements

    • Ability to collaborate effectively with cross-functional teams and adapt to new technologies and...

  • Answered by AI

Skills evaluated in this interview

GetMyUni Interview FAQs

What are the top questions asked in GetMyUni UI Developer interview?

Some of the top questions asked at the GetMyUni UI Developer interview -

  1. Assignment to convert psd to h...read more
  2. Basic question on html css...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Inside Sales Executive
58 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Client Account Manager
35 salaries
unlock blur

₹3.5 L/yr - ₹6 L/yr

Content Marketing Specialist
23 salaries
unlock blur

₹2.4 L/yr - ₹4.1 L/yr

Academic Counsellor
22 salaries
unlock blur

₹1.4 L/yr - ₹3.6 L/yr

Team Lead
14 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare GetMyUni with

Collegedunia

3.0
Compare

Careers360

3.2
Compare

MeritNation

3.6
Compare

Toppr

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