Answer:
Optical Character Recognition
Explanation:
Optical Character Recognition (Reader) Shortened as OCR refers to the conversion of images (as well as hand writings or printed text) from scanned documents or images into text that can be stored (Soft-copy) in the computer.
This allows the information to be edited on the computer, In the most basic form the information is scanned with a photo scanner and then converted with a OCR to be edited with a word processor such as MS-Word
A. browser
Web browsers are programs like internet explorer, safari, chrome. You use them to access web pages on the internet.
Binary large objects(BLOb):this data type is also called a binary object, and its fields are called binary fields.
Answer:
Diamond pickaxe with efficiency 3
Explanation: It will mine quicker and you can just get unbreaking
Answer:
The output of this question is 21. As show in the image
The explanation is given in below
Explanation:
Let first write the question
C=1
sum = 0
while(C<10):
C=C+3
sum=sum + C
print(sum)
Now Focus on
while(C<10):
C=C+3
sum=sum + C
The value of C is initially 1
C=1+3
Sum= 0+4
In second loop the value of C will become 4
c=4+3
sum=4+7
In third loop the value of C will be 7
c=7+3
sum=11+10
so the answer is 11+10=21