Upload Button Icon Add office photos

Filter interviews by

Icancerhelp India Senior UI Developer Interview Questions and Answers

Updated 5 Nov 2021

13 Interview questions

A Senior UI Developer was asked
Q. How do you implement light and dark themes in the same project?
Ans. 

Use CSS variables to define colors and switch between themes based on user preference.

  • Define CSS variables for light and dark theme colors

  • Use JavaScript to detect user preference for light or dark theme

  • Switch between themes by updating CSS variables with JavaScript

  • Consider using a toggle button or system preference to allow users to switch themes manually

A Senior UI Developer was asked
Q. How do you check or uncheck a checkbox by clicking on its label?
Ans. 

Use 'for' attribute in label tag to associate with checkbox id

  • Add 'for' attribute in label tag with value as the id of the checkbox input element

  • Clicking on the label will toggle the checkbox state

Senior UI Developer Interview Questions Asked at Other Companies

asked in Ixigo.com
Q1. Life cycle methods in react js, explain context API, advantages a ... read more
asked in Ixigo.com
Q2. Implement setInterval using setTimeout.
Q3. How do you check or uncheck a checkbox by clicking on its label?
Q4. Can we make a page responsive without media queries?
Q5. How do you implement light and dark themes in the same project?
A Senior UI Developer was asked
Q. Explain the CSS box model.
Ans. 

Box model is a fundamental concept in CSS that defines how elements are rendered on a web page.

  • Box model consists of content, padding, border, and margin.

  • Content is the actual content of the element.

  • Padding is the space between the content and the border.

  • Border is the line that surrounds the element.

  • Margin is the space between the border and the adjacent elements.

  • Box-sizing property can be used to change the box m...

A Senior UI Developer was asked
Q. What are the differences between flexbox and grid?
Ans. 

Flexbox is one-dimensional layout while Grid is two-dimensional layout.

  • Flexbox is best suited for arranging items in a single row or column.

  • Grid is best suited for arranging items in rows and columns.

  • Flexbox has a main axis and a cross axis.

  • Grid has rows and columns that intersect to form grid cells.

  • Flexbox is great for responsive design and centering items.

  • Grid is great for complex layouts and aligning items prec...

A Senior UI Developer was asked
Q. What is Viewport?
Ans. 

Viewport is the visible area of a web page displayed on a device's screen.

  • Viewport determines how much content can be seen without scrolling

  • It can be adjusted using meta tags in HTML or CSS media queries

  • Viewport size varies depending on the device and orientation

  • Viewport can affect the layout and responsiveness of a website

A Senior UI Developer was asked
Q. Why do we use SCSS?
Ans. 

SCSS is used to write more maintainable and scalable CSS code.

  • SCSS allows for nesting of CSS rules, making it easier to read and organize code.

  • Variables and mixins in SCSS can be reused throughout the codebase, reducing redundancy.

  • SCSS also supports inheritance, allowing for more efficient and modular code.

  • It compiles to regular CSS, so it can be used in any web project.

  • SCSS is widely used in modern web developmen...

A Senior UI Developer was asked
Q. What are the benefits of using SCSS?
Ans. 

SCSS provides benefits like variables, nesting, mixins, and inheritance to make CSS more efficient and maintainable.

  • SCSS allows for the use of variables, which can be reused throughout the stylesheet.

  • Nesting in SCSS makes it easier to read and organize code.

  • Mixins allow for the reuse of code snippets, reducing the amount of code needed.

  • Inheritance in SCSS allows for the creation of base styles that can be extended...

Are these interview questions helpful?
A Senior UI Developer was asked
Q. How do you make a webpage responsive?
Ans. 

A webpage can be made responsive by using media queries, flexible grids, and images, and by optimizing the layout for different devices.

  • Use CSS media queries to adjust the layout based on screen size

  • Use flexible grids and images that can scale to fit different screen sizes

  • Optimize the layout for touch devices by using larger buttons and spacing

  • Test the responsiveness on different devices and adjust as needed

A Senior UI Developer was asked
Q. What is the difference between tags and elements in HTML?
Ans. 

Tags are used to define the structure of an element in HTML, while elements are the actual components that make up a webpage.

  • Tags are enclosed in angle brackets (<>) and define the beginning and end of an element.

  • Elements consist of the opening tag, content, and closing tag.

  • Example: <p> is a tag that defines a paragraph element, while <p>This is a paragraph</p> is the complete paragraph ele...

A Senior UI Developer was asked
Q. What is the use of meta tags in HTML?
Ans. 

Meta tags in HTML are used to provide metadata about the HTML document.

  • Meta tags are placed in the head section of an HTML document.

  • They provide information such as character set, viewport settings, keywords, and description.

  • Meta tags can also be used for search engine optimization (SEO) purposes.

  • Example: <meta charset='UTF-8'>

Icancerhelp India Senior UI Developer Interview Experiences

1 interview found

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

Interview Questionnaire 

13 Questions

  • Q1. Position relative and absolute how both are works ?
  • Ans. 

    Position relative and absolute are CSS properties used for positioning elements on a webpage.

    • Position relative: element is positioned relative to its normal position in the document flow.

    • Position absolute: element is positioned relative to its nearest positioned ancestor.

    • Position absolute takes the element out of the normal document flow.

    • Position relative can be used to create subtle adjustments to an element's positio...

  • Answered by AI
  • Q2. Difference between tags and elements in html ?
  • Ans. 

    Tags are used to define the structure of an element in HTML, while elements are the actual components that make up a webpage.

    • Tags are enclosed in angle brackets (<>) and define the beginning and end of an element.

    • Elements consist of the opening tag, content, and closing tag.

    • Example: <p> is a tag that defines a paragraph element, while <p>This is a paragraph</p> is the complete paragraph element.

  • Answered by AI
  • Q3. How to check , uncheck checkbox by clicking on lebel ?
  • Ans. 

    Use 'for' attribute in label tag to associate with checkbox id

    • Add 'for' attribute in label tag with value as the id of the checkbox input element

    • Clicking on the label will toggle the checkbox state

  • Answered by AI
  • Q4. Box model in CSS ?
  • Ans. 

    Box model is a fundamental concept in CSS that defines how elements are rendered on a web page.

    • Box model consists of content, padding, border, and margin.

    • Content is the actual content of the element.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the element.

    • Margin is the space between the border and the adjacent elements.

    • Box-sizing property can be used to change the box model ...

  • Answered by AI
  • Q5. Difference between flexbox and grid ?
  • Ans. 

    Flexbox is one-dimensional layout while Grid is two-dimensional layout.

    • Flexbox is best suited for arranging items in a single row or column.

    • Grid is best suited for arranging items in rows and columns.

    • Flexbox has a main axis and a cross axis.

    • Grid has rows and columns that intersect to form grid cells.

    • Flexbox is great for responsive design and centering items.

    • Grid is great for complex layouts and aligning items precisely...

  • Answered by AI
  • Q6. Why we use SCSS ?
  • Ans. 

    SCSS is used to write more maintainable and scalable CSS code.

    • SCSS allows for nesting of CSS rules, making it easier to read and organize code.

    • Variables and mixins in SCSS can be reused throughout the codebase, reducing redundancy.

    • SCSS also supports inheritance, allowing for more efficient and modular code.

    • It compiles to regular CSS, so it can be used in any web project.

    • SCSS is widely used in modern web development fra...

  • Answered by AI
  • Q7. What is Mixin in SCSS ?
  • Ans. 

    Mixin is a reusable block of code in SCSS that can be included in other stylesheets.

    • Mixin allows developers to define a set of CSS declarations that can be reused throughout the stylesheet.

    • It helps in reducing code duplication and makes the code more maintainable.

    • Mixin can take arguments and can be used to generate different styles based on the arguments passed.

    • Mixin can be defined using the @mixin directive and includ...

  • Answered by AI
  • Q8. Benefits of using SCSS ?
  • Ans. 

    SCSS provides benefits like variables, nesting, mixins, and inheritance to make CSS more efficient and maintainable.

    • SCSS allows for the use of variables, which can be reused throughout the stylesheet.

    • Nesting in SCSS makes it easier to read and organize code.

    • Mixins allow for the reuse of code snippets, reducing the amount of code needed.

    • Inheritance in SCSS allows for the creation of base styles that can be extended and ...

  • Answered by AI
  • Q9. What Viewport is ?
  • Ans. 

    Viewport is the visible area of a web page displayed on a device's screen.

    • Viewport determines how much content can be seen without scrolling

    • It can be adjusted using meta tags in HTML or CSS media queries

    • Viewport size varies depending on the device and orientation

    • Viewport can affect the layout and responsiveness of a website

  • Answered by AI
  • Q10. What is the use on meta tags in html ?
  • Ans. 

    Meta tags in HTML are used to provide metadata about the HTML document.

    • Meta tags are placed in the head section of an HTML document.

    • They provide information such as character set, viewport settings, keywords, and description.

    • Meta tags can also be used for search engine optimization (SEO) purposes.

    • Example: <meta charset='UTF-8'>

  • Answered by AI
  • Q11. How to make a webpage responsive ?
  • Ans. 

    A webpage can be made responsive by using media queries, flexible grids, and images, and by optimizing the layout for different devices.

    • Use CSS media queries to adjust the layout based on screen size

    • Use flexible grids and images that can scale to fit different screen sizes

    • Optimize the layout for touch devices by using larger buttons and spacing

    • Test the responsiveness on different devices and adjust as needed

  • Answered by AI
  • Q12. Can we make a page responsive without media queries ?
  • Ans. 

    No, media queries are necessary for responsive design.

    • Media queries are used to apply different styles based on screen size

    • Without media queries, the design would not adapt to different devices

    • Responsive design is essential for a good user experience

  • Answered by AI
  • Q13. How to work on light and dark theme in same project.
  • Ans. 

    Use CSS variables to define colors and switch between themes based on user preference.

    • Define CSS variables for light and dark theme colors

    • Use JavaScript to detect user preference for light or dark theme

    • Switch between themes by updating CSS variables with JavaScript

    • Consider using a toggle button or system preference to allow users to switch themes manually

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice continue and give interviews of regular basic. Don't loose your confidence, just try and try again you will get hired. Each and every companies have different requirement. Someone is there which want your skill set.
In the End - Be Positive.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Icancerhelp India ?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Css , html , bootstrap , coding and Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Please brush up your basics

Senior UI Developer Interview Questions Asked at Other Companies

asked in Ixigo.com
Q1. Life cycle methods in react js, explain context API, advantages a ... read more
asked in Ixigo.com
Q2. Implement setInterval using setTimeout.
Q3. How do you check or uncheck a checkbox by clicking on its label?
Q4. Can we make a page responsive without media queries?
Q5. How do you implement light and dark themes in the same project?

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are the activities that you have performed?
  • Q2. Some important journal entries

Interview Preparation Tips

Interview preparation tips for other job seekers - I would advice to be more confident on subject amd have a crisp cv which actually shows what you have done in your last company. After walkin, it is your cv which would create an impression of yours because in walkin, it is difficult to remember the candidate. I got call after 1 month and it was all because they liked my cv.
Be confident and practice all what you have done.

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

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. How to change the process

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is good but working with manger is not

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

Interview Questionnaire 

1 Question

  • Q1. After 5 year in which position you will be

Interview Preparation Tips

Interview preparation tips for other job seekers - You should must improve your communication skills.

You have basic knowledge of your qualifications

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

Interview Questionnaire 

1 Question

  • Q1. General knowledge in coding and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Nooooooooooo noooooooooooooooooooooooooooo
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Online Type of interview

Team Lead Interview Questions & Answers

Cognizant user image P VIJAY MOHAN

posted on 23 Oct 2021

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

Interview Questionnaire 

3 Questions

  • Q1. SLA's , KPI, FMEA
  • Q2. Situation management, conflict management
  • Q3. Payments related questions and different ERP's

Interview Preparation Tips

Interview preparation tips for other job seekers - Over the interview experience was good and challenging, the interviewer had idea about the roles and responsibilities and took interview process accordingly

Interview Questionnaire 

1 Question

  • Q1. Current project
  • Ans. 

    I am currently working on developing a mobile application for a client in the hospitality industry.

    • The application will allow users to make reservations and order food and drinks from their mobile devices.

    • We are using React Native for the front-end and Node.js for the back-end.

    • We are also implementing a payment gateway to allow for secure transactions.

    • The client has requested that the app be available in both iOS and A...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview -prepare well on the working technology and project

Icancerhelp India Interview FAQs

What are the top questions asked in Icancerhelp India Senior UI Developer interview?

Some of the top questions asked at the Icancerhelp India Senior UI Developer interview -

  1. How to check , uncheck checkbox by clicking on lebe...read more
  2. Can we make a page responsive without media querie...read more
  3. How to work on light and dark theme in same proje...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all
Compare Icancerhelp India with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview