Answer:
#include <iostream>
using namespace std;
int main() {
int num, check=0;
for(int num = 1; num<=100;num++){
for(int i = 2; i <= num/2; i++) {
if(num % i == 0)
{
check=1;
break; } }
if (check==0) { cout <<num<<" "; }
check = 0;
}
return 0;
}
Explanation:
This line declares num as integer which represents digits 1 to 100.
A check variable is declared as integer and initialized to 0
<em> int num, m=0, check=0;
</em>
This for loop iterates from 1 to 100
for(int num = 1; num<=100;num++){
This iterates from 2 to half of current digit
for(int i = 2; i <= num/2; i++) {
This checks for possible divisors
if(num % i == 0)
{
If found, the check variable is updated to 1
check=1;
And the loop is terminated
break; } }
The following if statement prints the prime numbers
if (check==0) { cout <<num<<" "; }
check = 0;
}
Answer:
I think it is unshielded coaxial. Not 100% sure.
Explanation:
Answer:
Explanation:
1. Observing users as they enter passwords or other personal information to a computer Auditing software often used to test computer data - (shoulder surfing)
2. An acronym for security institute that studies computer crime activities The act of altering data that are entered into, or used by, a computer --- (CSI)
3. A small text file that stores information about your browsing habits and interests Stealing personal information from trash cans - (COOKIES)
4. A software program specifically designed for computer forensic investigations - (EnCase)
5. A type of fraud in which the perpetrator steals small amounts from many different accounts - (salami technique)
6. A software program or hardware device designed to prevent unauthorized data communications - (firewall)
7. Malicious software similar to a computer virus -- (_worm)
8. Federal legislation aimed specifically at computer crime (CFAA)
Explanation:
This transient state occurs due to the fact that the signal change from low to high and high to low doesn't occur intermediately but in a very small time, in relation to the signal time itself.
At transistor level there are parasitic (undesired) capacitances and resistances, formed due to the layout configuration of conductor and dielectrics. As consequence a RC circuit is formed, thus making a propagation delay.
This delay must be characterized for each circuit, and specified as tpHL (transition time from High to Low) and tpLH (transition time from Low to High)