Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books
3.99K subscribers
878 photos
11 videos
995 files
354 links
One place for the latest in JavaScript, Python, Django, React, and more. Get top-notch tutorials, tips, and downloadable resources. Join us to elevate your tech skills!
Download Telegram
Here’s how you can build image carousel using two CSS properties.

1. scroll-snap-type

This CSS property is used to control the behavior of scrolling alignment within a container.
In this case, it's set to x mandatory, which means:

β€’ x: Refers to the horizontal axis. This property is specific to horizontal scrolling.
β€’ mandatory: Indicates that the scrolling will always snap to the nearest snap point.

2. scroll-snap-align: start;

This CSS property defines how an element should be aligned during a scroll operation. In this case, it ensures that each image starts at the beginning of the carousel.
πŸ‘2
60+ React.js Interview Questions

[ For both Beginners & Experienced ]

⇩
πŸ‘1
Level: Beginner to Medium
Topics:
➊ Introduction
βž‹ JSX
➌ Virtual DOM
➍ Components
➎ States and Props
➏ Data Binding
➐ Component Rendering
βž‘ Introduction to Hooks
πŸ”₯1
➊ Introduction

βž€ What is React?
➁ What are the latest features introduced recently?
βž‚ What are the core features of React?
βžƒ What are the advantages of using React?
βž„ Where shouldn't we use React?
βž… What are different rendering techniques?
βž† Difference: CSR v/s SSR
πŸ”₯1
βž‡ What is SPA? How does it work?
➈ When may an SPA run slower?
βž‰ What is SSR?
βž€βž€ Does React support SSR?
βž€βž What is SSG?
βž€βž‚ Key differences between SSR and SSG.
βž€βžƒ What is RSC (React Server Components)?
βž€βž„ How does an RSC work?
πŸ”₯1
βž‹ JSX

βž€ What is JSX?
➁ Can a JSX code directly run on a browser?
βž‚ What do we need to convert JSX code to plain-JS code?
βžƒ Is "import React from react" necessary? If yes, when?
βž„ Write a sample JSX code and convert it to its equivalent JavaScript.
πŸ”₯1
➌ Virtual DOM

βž€ What is a Virtual DOM?
➁ Why does React use a Virtual DOM?
βž‚ Advantages of Virtual DOM over normal DOM?
βžƒ Explain how the Virtual DOM works.
βž„ When and how are changes propagated to the real DOM?
πŸ”₯1
➍ Components

βž€ What is a component?
➁ How many ways can a component be defined?
βž‚ How to define a class-based component?
βžƒ How to define a function-based component?
βž„ What are the advantages and disadvantages of defining a component function-based vs. class-based?
πŸ”₯1
βž… Explain the life cycle of a component.
βž† What is a life cycle method and what is its purpose?
βž‡ Give examples of some life cycle methods and their usage.
πŸ”₯1
➎ States and Props

βž€ What is a state?
➁ What is a prop?
βž‚ Difference between a state and a prop?
βžƒ What is a stateful component and a stateless component?
πŸ”₯1