Answer:
7 bytes
Explanation:
<u>2 Address Instruction</u>
The 2 address instruction consist 3 components in the format.
One is opcode,other two are addresses of destination and source.
<u>Example-</u>
load b,c | Opcode destination address,source address
add a,d | Opcode destination address,source address
sub c,f | Opcode destination address,source address
Opcode consists of 1 bytes whereas destination address and source address consist of 3 bytes each.
(1+3+3) bytes=7 bytes
Answer:
D. PORT
Explanation:
A Port is the interface used to connect external devices to computer.
Ports are of various types based on the type of communication interface:
For example:
- Serial port : information transfer takes place one bit at a time.
- Parallel port : transfer of multiple bits at a time.
- Ethernet : used for connecting network cable
- USB : Universal Serial Bus
Computer peripherals like mouse,keyboard, modem, printer etc connect to the computer via the port which is in accordance with their specified communication interface.
Answer:
true
Explanation:
sometimes you've just gotta roll with it. the final parts of the statement is what gives away the answer.
Answer:
First, create a new database using CREATE DATABASE statement. Second, export all the database objects and data of the database from which you want to copy using the mysqldump tool. Third, import the SQL dump file into the new database.