Answer:
In HTML file
<body style="background-color:orange;">
Or
In CSS file
body {
background-color: orange;
}
Answer: Output
input keyboard mouse joystick graphics tablet trackball touchpad touchscreen microphone sensor
Processing processor (CPU) processor (GPU) memory motherboard
Output printer monitor touchscreen plotter speakers headphones motor data projector
Explanation:
Answer:
hardware-initiated reset
Explanation:
Once in protected mode, the 80286 is designed to remain there until it is reset by hardware.
__
External hardware can be designed so that software can cause such a reset. In the 1984 PC/AT, such hardware combined with code in the BIOS allowed real mode re-entry and returned execution control to the program that caused the reset.
A situation that might create a problem for a website’s security is known o be as a result of Outside people having access to a companies website and documents and also hackers hacking into a company database.
Others are;
- Lack of authentication in company security.
- Access control-linked misconfigurations.
- A Software misconfigurations.
<h3>What could a back-end developer do to prevent this situation from occurring?</h3>
- Always Encrypt sensitive data:
- Do not use weak encryption algorithm.
The back end in cyber security is know to be a sort of a kind of a repository of all that entails your web presence and also that of your mobile apps and it is one that makes it to run smoothly.
Hence, A situation that might create a problem for a website’s security is known o be as a result of Outside people having access to a companies website and documents and also hackers hacking into a company database.
Learn more about website’s security from
brainly.com/question/10450768
#SPJ1
The program is an illustration of arrays; Arrays are variables that are used to hold multiple values of the same data type
<h3>The main program</h3>
The program written in C++, where comments are used to explain each action is as follows:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
//This declares the array
int myArray[4][5];
//This seeds the time
srand(time(NULL));
//The following loop generates the array elements
for(int i = 0; i< 4;i++){
for(int j = 0; j< 5;j++){
myArray[i][j] = rand()%(61)-30;
}
}
//The following loop prints the array elements as grid
for(int i = 0; i< 4;i++){
for(int j = 0; j< 5;j++){
cout<<myArray[i][j]<<" ";
}
cout<<"\n";
}
return 0;
}
Read more about arrays at:
brainly.com/question/22364342