The blobs are broken into smaller pieces using which of the following functions?

A partition()
B cut()
C sliceall()
D slice()

Correct Answer: slice()

The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user’s system. The web browser can store Blobs in memory or on disk, and Blobs can represent really enormous chunks of data (such as video files) that are too large to fit in main memory without first being broken into smaller pieces with slice().

Related Questions

Which algorithm supports blobs?
Which database can be used to retrieve blobs?
Which object can be used to create your own blobs?
The size of blobs are generally calculated in
The blobs are generally stored in

Next steps