Using computer technology to harm another person is known as pharming. cyber-bullying. hacking. vishing.

Answers

Answer 1

Answer:

It is B and C.

But what are these, really?

Cyber bullying is when you use your form of technology to harm another person. It can harm them mentally and sometimes is so bad that it can cause depression.

Hacking is to mess with a server which can cause complicated errors and even breakage of code.

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

I hope this answered your question! Have a wonderful day.


Related Questions

Which statement regarding socializers is true?

Answers

Answer:

The answer is: they are comparable to suit of hearts

Explanation:

The answer is: they are comparable to suit of hearts

When two methods in a class have the same name they are said to be...

Answers

It’s called overloading. Hope this is useful

answer is overloaded

Why is my iphone not notifying me when i receive a text.

Answers

Answer:

It's probably on sleep mode.Notifications are off.Something was altered in the settings.Your phone is updating.If none of these are true, try talking to tech support.

Answer:

it depends on the app you are talking about if its something else thats not imessages then check if you havent already and see if the notifications are off and turn them on and

if its on imessages then go to settings and then click on the notifications and click messages and then after click the ensure allow notifications to make it green

Explanation:

size = input("Enter your shoe size: ") size = int(size) if size > 12: print(str(size) + " is too high.") elif size < 6: print(str(size) + " is too low.") else: print(str(size) + " is in stock.") What is the output from running the above code if the user enters ten?

Answers

Answer:

It will print that the shoe size is in stock when the user prints 10, too high when the user enters 12, and anything less than 6 would be too low. It's a python program describing how basic input data is interpreted.

How does each additional block added to the blockchain strengthen the integrity of the entire chain?

Answers

Answer:

Explanation:

The more blocks in the blockchain, the more opportunities for data on the network to be verified. More blocks means that it is less of a chance that the entire network will be compromised by one person or one group.

A blockchain exists as a decentralized ledger of all transactions across a peer-to-peer network.

What is blockchain?

A blockchain exists as a decentralized ledger of all transactions across a peer-to-peer network. Utilizing this technology, participants can verify transactions without a need for a central clearing authority. Potential applications can contain fund transfers, settling trades, voting, and many other problems.

Blockchain exists as a shared, immutable ledger that simplifies the process of recording transactions and tracking assets in a company network. An investment can be tangible (a house, car, cash, land) or intangible (intellectual property, patents, copyrights, branding).

The more blocks in the blockchain, the more possibilities for data on the network to be confirmed. More blocks mean that it stands less of a chance that the whole network will be compromised by one individual or one group.

To learn more about blockchain refer to:

https://brainly.com/question/25700270

#SPJ2

Simone is working as a photographer for a local state senator as he runs for office in her small town. While at a recent rally, she found a group of teenagers hanging out near the rally, gave them several signs to hold, and asked them to jump up and down while waving the signs and cheering. What type of photograph is Simone taking by doing this?


propaganda


military


celebrity


fashion

Answers

Answer: 1. It is bolder, with exciting backgrounds.

2. ethnographic photographer

3. analog, physical photography

4. Ethnographic photography is from the point of view of someone participating in the culture to some degree.

5. creative stock photography

6. Early Photography 1839-1900

7. medical, fiber optic, and astrophotography

8. propaganda

9. life

10. indigenous photography

11. glamour photos

12. Modern Photography 1900-1945

13. Westerners (Americans)

14. They might deemphasize her subject's faces and include more background and context.

15. Hopi ceremonial dances

Explanation: I finished the quiz

The type of photograph is Simone taking by doing this is propaganda. The correct option is A.

What is propaganda?

Dissemination of information, including facts, arguments, rumors, half-truths, and lies, is known as propaganda and is done to sway public opinion.

Simone is engaging in propaganda photography when she instructs a bunch of youngsters to bounce up and down while waving the signs they have been given at a political gathering.

Using photos to advance or popularize a specific political or ideological stance, propaganda photography frequently employs deceptive tactics to sway people's perceptions or actions.

In this instance, Simone is attempting to project a picture of fervent backing for the senator's campaign by utilizing the teenagers as a visual prop to promote the politician.

Thus, the correct option is A.

For more details regarding propaganda, visit:

https://brainly.com/question/29959113

#SPJ2

(1) Output a menu of automotive services and the corresponding cost of each service. (2 pts)Ex:Davy's auto shop servicesOil change -- $35Tire rotation -- $19Car wash -- $7Car wax -- $12(2) Prompt the user for two services. Each service type is composed of two strings. (2 pts)Ex:Select first service: Oil changeSelect second service: Car wax(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)Davy's auto shop invoiceService 1: Oil change, $35Service 2: Car wax, $12Total: $47(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)Ex:Select first service: Tire rotationSelect second service: -Davy's auto shop invoiceService 1: Tire rotation, $19Service 2: No serviceTotal: $19**THIS MUST BE IN THE C LANGUAGE**

Answers

Answer:

Follows are the code to this question:

#include <stdio.h>//header file

#include <string.h>//header file

int main()//main method

{

char f_service[100], s_service[100];//defining character array

int total;//defining integer variable

do

{

   total = 0;//assign value in total variable

   printf("Davy's auto shop services\n");//print message

   printf("Oil change -------- $35\n");//print message

   printf("Tire rotation ------ $19\n");//print message

   printf("Car wash ---------- $7\n");//print message

   printf("Car wax ----------- $12\n");//print message

   printf("Enter first service: \n");//print message

   fgets(f_service, 100, stdin);//use get function for input value

   f_service[strlen(f_service) - 1] = '\0';//use length function for calculate total length

   printf("Enter second service: \n");//print message

   fgets(s_service, 100, stdin);//use get function for input value

   s_service[strlen(s_service) - 1] = '\0';//use length function for calculate total length

   printf("\nDavy's auto shop invoice\n\n");//print message

   if(strcmp(f_service, "Oil change") == 0)//defining if block that check first input Service

   {

     printf("Service 1: %s, $%d\n", f_service, 35);//print service name with rate

     total = total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Tire rotation")== 0)

   {

     printf("Service 1: %s, $%d\n", f_service,19); //print service name with rate

     total = total + 19;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wash") == 0)

   {

     printf("Service 1: %s, $%d\n", f_service, 7);//print service name with rate

     total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wax") == 0)

   {

    printf("Service 1: %s, $%d\n", f_service, 12); //print service name with rate

     total = total + 12;//calcaulte value in total variable

   }

   else

   {

     printf("Service 1: Empty\n");//print message

   }

   if(strcmp(s_service, "Oil change") == 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 35);//print service name with rate

     total= total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Tire rotation")== 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 19);//print service name with rate

     total = total + 19;//calcaulte value in total variable    

   }

   else if(strcmp(s_service, "Car wash") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 7);//print service name with rate

   total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Car wax") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 12);//print service name with rate

   total= total+ 12;//calcaulte value in total variable

   }

   else if(strcmp(s_service, " ") == 0)

   {

   printf("Service 2: No service\n");//print service name with rate

   }

   else

   {

   printf("Service 2:No service\n");//print message

   }

   printf("Total: $%d\n", total);//print total value

   }

   while(strcmp(s_service, "_"));//defining while that compare second service value

return 0;

}

Output:

Please find the attached file.

Explanation:

In the given C language code, the two-character array "f_service and s_service" and one integer variable "total" is declared, in which character array is used for user input, and the total is used for calculating value.

In the next step, the do-while loop is used, in which we used multiple conditional statements, that check "first and second" both array input value and add values into the total variable.If the first array doesn't take any input value, it will print an "empty" message. Similarly, in the second array, if it can't take any value, it will print a message "No service", and for the exit from the program, we pass the "underscore (_)" symbol.  

In a _________ programming language the data type for a variable will not change after it has been declared.

Answers

Answer: Your answer to your question is b.strongly typed

Hope this helps!

How many total numbers can be represented with an 8-bit binary system

Answers

Answer:

256

Explanation:

2^8 = 256, i.e. 2 times 2 times 2 times ... etc.

_______________ is the practice of using a network of remote servers hosted on the Internet to store, manage, and process data, rather than a local server or a personal computer.

Answers

Answer:
The answer is "Cloud Computing"
Explanation:
Cloud computing refers to the process of storing and accessing data and programs through the internet rather than on your hard disk. I hope this helps! ^-^

Can cross browsers be tracked or no? I'm not sure because my regular browser on my pc got tracked by a rando so I'm installing a Cross browser but I don't know if it can be tracked.

Answers

Researchers have developed a way to track a user across different browsers on the same machine by querying the installed applications on the device. Certain applications, when installed, will create custom URL schemes that the browser can use to launch a URL in a specific application.

What should software firm design for the VR sample at Museum?

Answers

The software firm design for the VR sample at Museum is a 360-degree video that shows a walk through of the virtual studio of a famous artist that is aided by a narration about the various piece of art that the user wants to focus on.

How is VR used in museums?

VR is known to be a technology that puts the user inside the experience they are viewing. It is known to be a kind of  interactive or it is one that take the shape of 360-degree video.

The use of VR is done so as to form or create museum tours, so that exhibits in the museum can be interactive, and to bring the different scenes to reality.

Learn more about museums from

https://brainly.com/question/95815

Describe who was Alan Turing in 100 words.
First to answer will get brainliest.

Answers

Answer:

Alan Turing, in full Alan Mathison Turing, (born June 23, 1912, London, England—died June 7, 1954, Wilmslow, Cheshire), British mathematician and logician who made major contributions to mathematics, cryptanalysis, logic, philosophy, and mathematical biology and also to the new areas later named computer science, cognitive science, artificial intelligence, and artificial life.

Explanation:

Turing was a founding father of artificial intelligence and of modern cognitive science, and he was a leading early exponent of the hypothesis that the human brain is in large part a digital computing machine.Alan Turing was one of the most influential British figures of the 20th century. In 1936, Turing invented the computer as part of his attempt to solve a fiendish puzzle known as the Entscheidungsproblem.

Being a mason requires a five-year apprenticeship, a program that requires trainees to work for an experienced mason in order to learn the trade. True or False​

Answers

Being a mason requires a five-year apprenticeship, a program that requires trainees to work for an experienced mason in order to learn the trade is a false statement.

Who is a mason?

Mason Apprentice is known to have some skills to carry out some of their responsibilities.

A mason is known to be a profession where one uses bricks, concrete blocks, etc.  to build structures such as walls, walkways, etc. Their training is 3 years.

Learn more about program from

https://brainly.com/question/26134656

To enable a single hard drive to store more than one operating system, it would need to be ________.

Answers

Answer:My guess would be disk partitioned

Explanation:

because you are basically dividing into separate filesystems. When operating two OS when call it dual booting.

In the video game Animal Crossing: New Horizons, villagers are organized by Personality and Hobby.


The 8 Personalities are:


Normal

Lazy

Sisterly

Snooty

Cranky

Jock

Peppy

Smug


The 6 Hobbies are:


Education

Fashion

Fitness

Music

Nature

Playing


Create a program that allows the user to create their own Animal Crossing villager. The user should be able to enter a name, after which the program will choose a random Hobby and Personality for the villager:


"Please enter a Villager Name:

>> Betsy

Betsy is Snooty and into Nature"


The program should store both the Hobbies and Personalities in lists, and when creating a villager it should randomly choose from each list for the personality.



Requirements:

· Both Personalities and Hobbies must be stored in lists

· You must generate a different random number to determine the hobby and personality (that is, don't generate 1 random number and use it for both lists, as that prevents many combinations)

· In randomizing, you should make sure that all combinations are possible (that is, make sure you don't accidentally leave out a personality or hobby from random generation)

· The program shouldn't crash

Answers

The video game program is an illustration of randomization and lists

Randomization involves generating random numbers or selecting random optionsLists are variables that hold multiple values

The video game program

The video game program written in Python, where comments are used to explain each action is as follows:

#This imports the random package

import random

#This creates a list for personalities

Personality = ["Normal","Lazy","Sisterly","Snooty","Cranky","Jock","Peppy","Smug"]

#This creates a list for hobbies

Hobbies = ["Education","Fashion","Fitness","Music","Nature","Playing"]

#This gets input for name

name = input("Please enter a Villager Name: ")

#This generates a random number for personality

personalityNum = random.randint(0, 7)

#This generates a random number for hobbies

hobbiesNum = random.randint(0, 5)

#This prints the the required output

print(name,"is",Personality[personalityNum],"and into",Hobbies[hobbiesNum])

Read more about Python programs at:

https://brainly.com/question/16397886

Create a flowchart that will accept 10 whole numbers one at a time and print the highest and the lowest. Use Switch.

Answers

I will create a sequence of steps that would accept 10 whole numbers one at a time and print the highest and the lowest in Java:

Import javax.swing.JOptionPane;

public class loop_exer2 {

public static void main(String agrs[])

{ String input; int trial=10, sc=0, h=0, l=0, test=0;

System.out.print("Scores: ");

for (int ctr=1;ctr<=10;ctr ) {

input=JOptionPane.showInputDialog("Enter the Scores [" trial "] trials "); sc=Integer.valueOf(input); System.out.print(sc ", ");

if(test==0){h=sc;l=sc;test=1;}

if(sc>h){h=sc;}

else if(sc>h){

h=sc; {

else if(sc<1) {

l=sc;

}

JOptionPane.showMessageDialog (null, "Highest score is:" h "Lowest score is:" l);
System.out.println();

System.out.println ("Highest score is: " h);

System.out.println ( "Lowest score is: "l);

}

}

What is a Flowchart?

This refers to a diagram which is used to represent the various steps which a system uses to create a step by step solution.

From the above code, there is the command to accept whole numbers in String and then request for them one at a time and after the computation, display the highest and lowest numbers.

Read more about flowcharts here:
https://brainly.com/question/6532130

Which of the following displays an internal index?
O categories
publish
O tags
O featured image

Answers

Answer:

featured image

Explanation: featured image

(03.01 LC)
In programming, what is an integer number?
O A fraction
O A number with a decimal
O A round number
O A number without a decimal

Answers

A number without a decimal. I’m pretty sure


REASON: an integer is a whole number, and it cannot be A because it’s not a fraction. They cannot have decimal points so it’s not B either and not C as well,

The answer love, is D

Which of the following situations is most likely to cause issues arising from the digital divide?
A. A state makes voter registration forms available only by visiting a government website
B. Two internet-connected devices located in different countries and thousands of miles apart attempt to communicate with one another
C. Packets sent from one router to another begin arriving in a different order than they were sent
D. A smartphone attempts to communicate over the Internet with another type of device, like a tablet or laptop

Answers

Answer:

A

Explanation:

Saw it on another brainly

________ involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank. Group of answer choices Adware Spyware Phishing Spam Electronic monitoring

Answers

Answer:

Phishing involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank.

Explanation:

Adware - When software is installed without consent, and made to show disruptive pop-ups and ads.

Spyware - Records keystrokes, camera and microphone without consent. Can also track activity.

Spam - When the same message is posted several times.

It is clearly not any of these, so it must be Phishing.

- Educator

The ability to create slide shows is a major advantage of word processing software true or false

Answers

Answer:

True

Explanation:

This ability helps in the symbolic development of the word processing software

Which tools would you use to make header 1 look like header 2.

Answers

The tools that would be used to make header 1 appear and look like header 2 is the alignment tool icon and the Bold tool icon.

To understand this question, we must understand the interface of the Microsoft Excel.

What is Microsoft Excel?

Microsoft Excel is a spreadsheet that can be used for a variety of features such as:

Computation of Data sets and variablesCalculation of Business Data Arrangement and Analysis of Data into Tables etc.

As a Microsoft software, Microsoft Excel can also be used to edit sheets. In the image attached, the required tool icons needed to change the header 1 into header 2 is the alignment tool icon and the Bold tool icon.

The two tools can be seen in the image as the two lower left icons.

Learn more about Microsoft Excel here:

https://brainly.com/question/25863198

how do you take a screen shot on a chrome book

Answers

Answer:

hold ctrl + the square box thing above the six

Explanation:

Answer:

Yuh its ctrl shift and f5 if you want to crop what you are screen shotting

Explanation:

Which search strategy explores nodes from the initial state as well as the goal state?
OA. uniform-cost search
OB.
breadth-first search
OC. depth-first search
OD.
bidirectional search

Answers

The search strategy explores nodes from the initial state as well as the goal state is bidirectional search.

What is the bidirectional search?

This is known to be a type of search that is used when the initial and goal states are found in a problem.

Here, we often search forward and also backwards from the first  state and the goal state, we often Stop when they meet the middle and it tend to be faster than unidirectional search.

Learn more about search strategy  from

https://brainly.com/question/10055344

Which of the following best describes the "friction" property of a physics material?
A. Controls how fast the object will fall due to gravity
B. Controls the maximum speed of an object
C. Controls how far an object will bounce when it collides with another object
D. Controls how much resistance is felt when two objects are in contact

Answers

Answer:

D. Controls how much resistance is felt when two objects are in contact

Explanation:

Friction is a force, the resistance of motion when one object rubs against another. Whenever two objects rub against each other, they cause friction. Friction works against the motion and acts in the opposite direction.

which of the following best explains how data is typically assembled in packets for transmission over the internet?

Answers

Answer:

The Internet works by chopping data into chunks called packets. Each packet then moves through the network in a series of hops. Each packet hops to a local Internet service provider (ISP), a company that offers access to the network -- usually for a fee.Explanation:

Answer:

Do you have options given on the question?

Explanation:

yall like portal 1 or 2

Answers

Answer:

i like both, but i personally like portal 2 the most.

Explanation:

Using an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as

Answers

The use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as biofeedback.

What is biofeedback?

The Biofeedback is known to be a kind of a mind-body method that is said to often make use of some visual or auditory feedback to lecture people to know the main physical signs and symptoms linked with stress and anxiety, such as increased heart rate, etc.

It is also known to make use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to man.

Learn more about biofeedback from

https://brainly.com/question/1124510

Write a for loop that uses the print function to display your first name exactly 5 times

Answers

Answer:

idkhuhubuhuhuuhuhg hih

Explanation:

idkuhuhuhyhuhhijhuhuh

Other Questions
What causes the move from one era to another era? A pronoun that ends in -self or -selves that refer back to the subject is a _____.reflexive pronounsubjective pronounpersonal pronoun Find the equation of the line shown 6.Which of the following states Hume's standard for evaluating arguments fromanalogy?a.The standard deviation must be within a definitely subscribed range.b.The argument is only as strong as the analogy.c. The analogy must be common sensical when you first look at it.d.The contemplation of truth and beauty must be instantiated in the heart of theassessor. A student is learning about the functions of leukocytes. What statements about these cells are correct No question, just wanted to know how y'all doing. The body cavity located in the chest is the Which zone shows the water table?o 1o 2o 3o 4 PLEASE HELP I ONLY HAVE 1H TO COMPLTE AND I DON'T KNOW HOW TO SPELL AND GIVING AWAY 50 POINTS Sit with your eyes closed for 5 minutes, and think of the most exciting dreams you've had in your life.Write down one dream, and ask yourself, "Is this dream possible? List ways the dream is and isn't possible. Take a look at the reasons why the dream isn't possiblewhat can you do to remove those reasons from your list? Are there now more reasons why the dream is possible?Next, list all of your gifts and talents. How do your gifts and talents better prepare you to reach your dream? Could you accomplish your dream without them?Next, identify a brief timeline for when you think you can achieve this dream. What are 2 things you can do to remove distractions and manage your time to help you realize this dream? Please answer and say what a perfect root is pls i didnt get time to study and this is for 15 points Triangle ABC has vertices A(2,10) , B(4,8) , and C(2,4) .What are the coordinates of ABC after triangle ABC has undergone the following transformation?rotation 90 clockwise about the originEnter your answers, as ordered pairs (x, y) , in the boxes.A= B= C= Reread the first few paragraphs of the speech. What is most likely the purpose of the extended metaphor used in paragraph 2 in the story i have a dream Help me with this pls Progressive journalists attacked all of the following, except...the living conditions of New York City.the dangers of Standard Oil.the low pay in coal mines.the conditions of the poor in the army. The volume of a cylinder is approximately 942 cubic inches. The height of the cylinder is 12 inches. Which is the best approximation for the radius of the cylinder? 4 inches, 6 inches, 7 inches, 5 inches Help help help help What did wealthy ladies of the Middle Ages wear?skirtstunicsdressesslacks pls solve this wordsearch How can heredity be used to describe the real world?Science What is an equation of the line that passes through the points (-6,-4) and(-4,0)?