RLE – Run Length Encoding: It is a famous lossless compression algorithm widely used in many data compression applications and used with many image compression algorithms. In Run Length Encoding method the consecutive same data is compressed. This technique used in few type of BMP image formats particularly 8 bit and 16 bit BMP images, JPEG images and almost all compression application software like winzip, winrar etc..RLE – Run Length Encoding Example. Input data : qqqqqqqqqqwwwrrrrqqqqqqqiiioooopppppp RLE compressed Data : 10q3w4r7q3i4o6pLet’s consider the above sample data, in RLE compression the count and the data value is represented. i.e q is repeated at 10 times instead of writing ten q it can be written as 10q. likewise all other data’s are written. Compression ratio = (37 (total...