Answer:
i dont know anything about them only that the bear is the ducks son and the duck is the fox mom.
Explanation:
Answer: b
The computer virus is simply a ___
b. Set of computer instructions or code
Answer:
1. G
2. J
3. I
4. B
5. A
6. H
7. C
8. F
9. E
10. D
11. D
12. C
13. A
14. B
Explanation:
1. OCR: converts paper based text to digital form. OCR is an acronym for Optical Character Recognition.
2. OMR: marks candidates' responses on a multiple choice exam. OMR is an acronym for Optical Mark Recognition.
3. Printer: produces a hard copy document. It is an output device that accepts electronic data and prints them on a paper (hardware document).
4. Joystick: used for playing a car racing game on the computer
5. Sensor: turns on the light when someone enters the room. It can be defined as a device designed to detect changes or events within its immediate surroundings and then transfers this data to the central processing unit of a computer.
6. ROM: Contains 'boot up' instructions. ROM is acronym for read only memory and it contains the basic input and output system (BIOS) used during a computer start-up.
7. Pad and tablet: draws lines in an architectural design. They are an electronic device that can be used two or three dimensional shapes.
8. Modem: Modulates and demodulates signals. Modulation refers to the conversion of digital signals into an analogue signal while transmitting it over a line. Demodulation is the conversion of analogue signal into a digital signal.
9. Barcode reader: Reads data containing information on a product
10. MICR: reads digit specially printed on a cheque. MICR is an acronym for Magnetic Ink Character Recognition.
Section B
11. Banking industry: managing user accounts through the use of software applications.
12. Weather forecasting: predicting the weather through the use of software programs.
13. Household appliance: sequencing wash cycle tasks in a washing machine.
14. Manufacturing industry: using robots to assemble a car components.
The answer is embedded computer. It is a PC framework with a committed capacity inside a bigger mechanical or electrical framework, frequently with ongoing figuring constraints. It is implanted as a component of a total gadget regularly including equipment and mechanical parts. Installed frameworks control numerous gadgets in like manner utilize today.
A complete program with the method ShowCar:
import java.util.Scanner; // header file
public class ShowChar
{
public static void main(String[] args)
{
String lnOfText;
int i;
Scanner input = new Scanner(System.in);
System.out.print("Enter a line of text:");
lnOfText = input.nextLine();
System.out.print(" Enter your index: ");
i = input.nextInt();
show_Char(lnOfText,i);
}
public static void show_Char(String str_a, int i)
{
System.out.print(str_a.charAt(i));
}
}
In this program, both the inputs ie. a sentence or line of text as well as the index position is obtained. A method is written to find the string at that particular position. Finally the method prints that character at the particular index.