LCD screen is composed of "pixels": nowadays an array 1080*1920 of them (so called "High Resolution TV", but becoming pretty standard). In old days, CRT image consisted of 480 "lines". So, today's digital image is of better resolution than old analogue image.
Each pixel consists of three miniature dots:
Red
Green and
Blue. The colour and intensity of any given pixel is obtained by the sum of the three RGB components. The intensities of said components are usually expressed as values from 0 to 255 in typical screens and TV signals.
As such, the totally black colour is represented as RGB triplet of (0,0,0) - no signal - while totally white colour by RGB triplet (255,255,255) - maximum signal. You can play with different RGB colour e.g. here:
https://www.rapidtables.com/web/color/RGB_Color.html
The LCD display operates by supplying the appropriate amount of energy to each of 3 dots (R G and B) of each pixel in 1024*1980 matrix, to set the brightness of each dot at the appropriate level 0 to 255 (0 - off 255 - maximum) according to the series of numbers received from the TV signal (or from the computer). That's a lot of numbers: 3*1024*1980 = 6millions only for one image. Video images are typically 25 frames/sec (from old analogue standard) but new digital standards are 60 or 100 or even 200 frames/sec. That's 6millions times 200 bytes, more than 1GB/sec.
There are some methods to compress said 1GB/sec of data (sometimes compromising the loss of quality) but that's a different subject. The bottom line is: even after compression, both sending TV station/computer and the receiving LCD screen must crunch these numbers pretty fast to show you the quality LCD image. Needless to say the hardware to display the video on LCD must be fast e.g.: the diodes displaying the RGB "dots" must have very fast response time to change their brightness anywhere from level 0 to 255 within at least 1/25sec if not 1/200sec.
This question is the very basis of my professional living. Like 2+2=4 (or more precisely a definition of a "plus" operation on natural numbers) for a mathematician.