Answer:
A
Explanation:
A packet is a set of data or information.
Answer:
// code to read grade
#include <stdio.h>
// main function
int main(void) {
// if grade is character
char grade;
// if grade is numeric then we can use int or double
// int grade;
// double grade;
printf("Enter your grade:");
// read grade from user
scanf("%c",&grade);
// print grade
printf("your grade is:%c",grade);
return 0;
}
Explanation:
To read a value, scanf() function is used from stdio.h.Read a grade from user and assign it to variable "grade".
Output:
Enter your grade:A
your grade is:A
// code to read die volt
#include <stdio.h>
// main function
int main(void) {
// variable
double die_volt;
printf("Enter die volt:");
// read die volt from user
scanf("%lf",&die_volt);
// print die volt
printf("Entered die volt is:%0.2lf",die_volt);
return 0;
}
Explanation:
Read the die volt from user and assign it to variable "die_volt" with the help
of scanf() function.
Output:
Enter die volt:220
Entered die volt is:220.00
Answer:
import random
print("Hello! I have a random number from 1 to 100! It is your job to try and guess it!")
number = random.randint(1,101)
guess = int(input("start to guess: "))
num_guesses = 1
while guess != number:
if guess > number:
print("lower")
guess = int(input("try again: "))
num_guesses +=1
elif guess < number:
print ("higher")
guess = int(input("start to guess: "))
num_guesses +=1
print("congrats it took you", num_guesses, "tries")
Explanation:
Set your camera up on a tripod
Choose a subject (anything really)
Get your camera up close to the subject
Switch your camera to Manual focus. You can try auto focus, but generally you will be able to focus a little closer on manual focus.
(If you are using manual focus, the tripod will be important.)
Answer:
Types of cybercrime
Here are some specific examples of the different types of cybercrime:
*Email and internet fraud.
*Identity fraud (where personal information is stolen and used).
*Theft of financial or card payment data.
*Theft and sale of corporate data.
*Cyberextortion (demanding money to prevent a threatened attack).
*Ransomware attacks (a type of cyberextortion).
*Cryptojacking (where hackers mine cryptocurrency using resources they do not own).
*Cyberespionage (where hackers access government or company data).
Most cybercrime falls under two main categories:
*Criminal activity that targets
*Criminal activity that uses computers to commit other crimes.
Explanation: