AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Icancerhelp India

Compare button icon Compare button icon Compare
4.0

based on 1 Review

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.
  • About
  • Reviews
    1
  • Salaries
    10
  • Interviews
    1
  • Jobs
    -
  • Benefits
    -
  • Photos
    -

Filter interviews by

Icancerhelp India 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

View all Senior UI Developer interview questions
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

View all Senior UI Developer interview questions
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...

View all Senior UI Developer interview questions
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...

View all Senior UI Developer interview questions
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

View all Senior UI Developer interview questions
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...

View all Senior UI Developer interview questions
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...

View all Senior UI Developer interview questions
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

View all Senior UI Developer interview questions
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...

View all Senior UI Developer interview questions
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'>

View all Senior UI Developer interview questions
1 2

Icancerhelp India Interview Experiences

1 interview found

Senior UI Developer Interview Questions & Answers

user image Anonymous

posted on 31 Oct 2021

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer

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

Anonymous

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

company Logo

Software Developer Interview Questions & Answers

TCS user image Anonymous

posted on 29 Jun 2022

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of
Anonymous
company Logo

Associate Interview Questions & Answers

Amazon user image Anonymous

posted on 23 Feb 2020

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Add your answer
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way
Anonymous
company Logo

Consultant Interview Questions & Answers

Infosys user image Anonymous

posted on 11 Oct 2020

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Add your answer
  • Q2. Be yourself
  • Add your answer
Anonymous
company Logo

Senior Associate Interview Questions & Answers

Wipro user image Anonymous

posted on 29 Jul 2022

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.
Anonymous
company Logo

Consultant Interview Questions & Answers

Capgemini user image Anonymous

posted on 20 Feb 2021

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Add your answer
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

Anonymous
company Logo

Business Analyst Interview Questions & Answers

Infosys user image Anonymous

posted on 6 Jul 2021

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance
Anonymous
Are these interview questions helpful?
company Logo

Associate Interview Questions & Answers

Wipro user image Anonymous

posted on 26 Sep 2020

Interview Questionnaire 

1 Question

  • Q1. 1)Tmaus? 2 ) why are you lefted previous job? 3) technical skills knowledge 4) work in under pressure? 5) hr round 6) manager round
  • Ans. 

    Interview questions for an Associate position cover various aspects like motivation, skills, and handling pressure.

    • 1) Tmaus: This could refer to a specific term or acronym; clarify its meaning during the interview.

    • 2) Leaving previous job: Focus on seeking new challenges or growth opportunities, not negative experiences.

    • 3) Technical skills: Highlight relevant skills like data analysis, programming languages, or software...

  • Answered by AI
    Add your answer
Anonymous
company Logo

Analyst Interview Questions & Answers

Accenture user image Anonymous

posted on 16 Feb 2022

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying
Anonymous
company Logo

Assistant Manager Interview Questions & Answers

Genpact user image Anonymous

posted on 29 May 2020

Interview Questionnaire 

2 Questions

  • Q1. Accounting question asked
  • Add your answer
  • Q2. Answer has been given accordingly
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an average interview. If you have good experience of MNC culture and you have short notice period of your existing company then they can hire you.
Anonymous

Icancerhelp India Interview FAQs

How to prepare for Icancerhelp India 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 Icancerhelp India . The most common topics and skills that interviewers at Icancerhelp India expect are Business Analysis, Javascript, Agile, Angular and Angularjs.
What are the top questions asked in Icancerhelp India interview?

Some of the top questions asked at the Icancerhelp India 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 for Popular Designations

  • Analyst Interview Questions
  • Intern Interview Questions
  • Senior Associate Interview Questions
  • Sales Executive Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Accountant Interview Questions
  • Senior Software Engineer Interview Questions
  • System Engineer Interview Questions
  • Show more
  • Deputy Manager Interview Questions
  • Sales Officer Interview Questions

Interview Questions from Similar Companies

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

Icancerhelp India Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Icancerhelp India Salaries in India
Senior UI Developer
3 salaries
unlock blur

₹10 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Icancerhelp India with
TCS

TCS

3.6
Compare
Accenture

Accenture

3.8
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Icancerhelp India Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter