define and explain cyberbullying with example​

Answers

Answer 1

Answer:

Definition: Cyberbullying is a form of bullying using electronics as a way to hide behind the screen

Joan got an email telling her she was ugly from Kate, that is cyberbullying.


Related Questions

Why does the media play such an important role in our personal freedom? Select 3 options.

It holds government accountable.
It holds government accountable.

It promotes self-expression.
It promotes self-expression.

It spreads government’s views.
It spreads government’s views.

It keeps us informed.
It keeps us informed.

It keeps us entertained.
It keeps us entertained.

Answers

Answer:

It promotes self-expression

It holds the government accountable

It keeps us informed

Explanation:

I got them right Ed

The media play such an important role in our personal freedom because of the following:

A. It holds the government accountable.

B. It promotes self-expression.

D. It keeps us informed.

What is media?

The media is a center of communication or transfer of information throughout the world. Its main aim is to collect information from the world and provide it to the citizens.

Because it enables the public expression of one's personal opinion about a subject, the media is crucial to freedom.

Media plays an important role in freedom because it helps in expressing a personal view about something in front of people. It gives us information about the world, and what is happening in the government, and other current situations.

Thus, the correct options are:

A. It holds the government accountable.

B. It promotes self-expression.

D. It keeps us informed.

To learn more about media, refer to the link:

https://brainly.com/question/28100033

#SPJ5

A collection of modules and packages that can be imported into a program is called

Answers

Answer:

library

Explanation:

class - used to create objects

documentation - provides information on the program's workings

function - this is part of a module

2 what is deep learning?

Answers

Answer:

a type of machine learning based on artificial neural networks in which multiple layers of processing are used to extract progressively higher level features from data.

Which data value is most likely an outlier in the dataset below?

89, 100, 95, 26, 79, 85, 98, 75

Answers

The answer is A, 26. Hope this helps!

A leading pharmaceutical company is launching a major transformation of its entire Cloud operations in order to more quickly and efficiently perform research and conduct clinical trials.

How can a Cloud-first strategy help this client?


by providing a data and analytics platform that keeps the client's legacy systems intact


by providing a data-centric approach that offers more speed, agility, and security


by transforming and upskilling the client's workforce to build their own Cloud solution


by automating the entire scope of the client's business

Answers

A cloud-first strategy helps this client by providing a data-centric approach that offers more speed, agility, and security. Thus, the correct option is B.

What is a Cloud-first strategy?

A cloud-first strategy may be defined as an operational strategy that allows the users to reposition all or most of their infrastructure to cloud-computing platforms.

A cloud-first strategy helps this client in numerous ways. It provides a data-centric approach that offers more speed, agility, and security to its customers or clients in a facilitated manner.

Therefore, the correct option for this question is B.

To learn more about the Cloud-first strategy, refer to the link:

https://brainly.com/question/24719487

#SPJ1

4.13 LAB: Playlist (output linked list)
Given main(), complete the SongNode class to include the printSongInfo() method. Then write the Playlist class' printPlaylist() method to print all songs in the playlist. DO NOT print the dummy head node.

Ex: If the input is:

Stomp!
380
The Brothers Johnson
The Dude
337
Quincy Jones
You Don't Own Me
151
Lesley Gore
-1
the output is:

LIST OF SONGS
-------------
Title: Stomp!
Length: 380
Artist: The Brothers Johnson

Title: The Dude
Length: 337
Artist: Quincy Jones

Title: You Don't Own Me
Length: 151
Artist: Lesley Gore

import java.util.Scanner;

public class Playlist {

// TODO: Write method to ouptut list of songs

public static void main (String[] args) {
Scanner scnr = new Scanner(System.in);

SongNode headNode;
SongNode currNode;
SongNode lastNode;

String songTitle;
int songLength;
String songArtist;

// Front of nodes list
headNode = new SongNode();
lastNode = headNode;

// Read user input until -1 entered
songTitle = scnr.nextLine();
while (!songTitle.equals("-1")) {
songLength = scnr.nextInt();
scnr.nextLine();
songArtist = scnr.nextLine();

currNode = new SongNode(songTitle, songLength, songArtist);
lastNode.insertAfter(currNode);
lastNode = currNode;

songTitle = scnr.nextLine();
}

// Print linked list
System.out.println("LIST OF SONGS");
System.out.println("-------------");
printPlaylist(headNode);
}
}

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that will organize the songs of a playlist through the titles and singers.

Writing the code in JAVA we have:

import java.util.Scanner;

public class Playlist {

public static void printPlaylist(SongNode songs){

SongNode song = songs.getNext();

while (song!=null) {

song.printSongInfo();

System.out.println();

song = song.getNext();

}

}

public static void main (String[] args) {

Scanner scnr = new Scanner(System.in);

SongNode headNode;

SongNode currNode;

SongNode lastNode;

String songTitle;

int songLength;

String songArtist;

headNode = new SongNode();

lastNode = headNode;

songTitle = scnr.nextLine();

while (!songTitle.equals("-1")) {

songLength = scnr.nextInt();

scnr.nextLine();

songArtist = scnr.nextLine();

currNode = new SongNode(songTitle, songLength, songArtist);

lastNode.insertAfter(currNode);

lastNode = currNode;

songTitle = scnr.nextLine();

}

System.out.println("LIST OF SONGS");

System.out.println("-------------");

printPlaylist(headNode);

}

}

class SongNode {

private String songTitle;

private int songLength;

private String songArtist;

private SongNode nextNodeRef;

public SongNode() {

songTitle = "";

songLength = 0;

songArtist = "";

nextNodeRef = null;

}

public SongNode(String songTitleInit, int songLengthInit, String songArtistInit) {

this.songTitle = songTitleInit;

this.songLength = songLengthInit;

this.songArtist = songArtistInit;

this.nextNodeRef = null;

}

public SongNode(String songTitleInit, int songLengthInit, String songArtistInit, SongNode nextLoc) {

this.songTitle = songTitleInit;

this.songLength = songLengthInit;

this.songArtist = songArtistInit;

this.nextNodeRef = nextLoc;

}

public void insertAfter(SongNode nodeLoc) {

SongNode tmpNext;

tmpNext = this.nextNodeRef;

this.nextNodeRef = nodeLoc;

nodeLoc.nextNodeRef = tmpNext;

}

public SongNode getNext() {

return this.nextNodeRef;

}

public void printSongInfo(){

System.out.println("Title: "+this.songTitle);

System.out.println("Length: "+this.songLength);

System.out.println("Artist: "+this.songArtist);

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Please select the word from the list that best fits the definition

Plagiarism

Answers

the practice of taking someone else's work or ideas and passing them off as one's own.

Answer:

You need to give context/examples/question answers.

Explanation:

Review this persuasive speech outline .
.This speech includes an effective introduction using humor,several transitions and an effective conclusion with a thought provoking ending

Answers

Saying that the speech includes an effective introduction using humor, several transitions and an effective conclusion with a thought provoking ending is false.

What is persuasive speech?

This is known to be a speech that is given so as to convince a person about a thing or topic.

Note that in the excerpt, the speech does not includes an effective introduction using humor, several transitions and an effective conclusion with a thought provoking ending and thus, it is a false statement.

Learn more about persuasive speech from

https://brainly.com/question/14047451

#SPJ1

fast i need now ill give anything
Why is compressed air energy storage considered to be very useful?
A. because it allows people to use the resource at the exact time they need it
B. because it uses outside electricity to change the speed of the flywheel
C. because it stores electricity as rotational energy
D. because the vacuum chamber reduces friction and minimizes energy loss

Answers

Answer:A

Explanation:

Because compressed air energy storage (CAES) is known to have strong potential to deliver high performance energy storage at large scales for relatively low costs compared with any other solution.

Answer: A. because it allows people to use the resource at the exact time they need it

Explanation:

Word frequencies (lists)

Answers

A list in programming is list of values for a given parameter enclosed in a square bracket and separated by commas.

Worde frequences ( lists )

A list can contain a mixture of string, integer and float values while a list can also be mutable when required to add or delete value(s) from the list.

The debugged lines of code ( file ) which can be run with zyBooks Lab 7.8 is attached below

Learn more about lists in programming : https://brainly.com/question/26352522

#SPJ1

Question 6 of 10
In which part of the Scratch interface does a programmer combine code
blocks to build the program?
OA. Block palette
OB. Scripts area
OC. Sprite info pane
Stans

Answers

The part of the Scratch interface does a programmer combine code that blocks to build the program is Block palette.

What is block programming in Scratch?

Scratch is known to be a kind of "block-based" programming language. that uses "blocks" in programming.

Note that The block palette is where a lot of script blocks are found and as such, The part of the Scratch interface does a programmer combine code that blocks to build the program is Block palette.

Learn more about programmer from

https://brainly.com/question/23275071

#SPJ1

How can you tell if a website is biased?

Answers

Answer:

the author has not considered other points of view.

On a leading-trailing system technician A says that both shoes do equal work when stopping while going in reverse. Technician B says that the shoe facing the rear does most of the work when stopping in reverse. Who is right?

Answers

Based on the scenario above about the leading-trailing system Both technician A and B are incorrect.

How many brake shoes function?

There are known to be two shoes function that are said to be working a way where both become either the trailing shoe or leading shoe based on whether the vehicle is moving forward or backward.

Therefore we can say that, Based on the scenario above about the leading-trailing system Both technician A and B are incorrect.

Learn more about trailing system from

https://brainly.com/question/14367881

#SPJ1

As the Data Analyst, you have been named in a lawsuit against the company. Other
emplovees of the company are upset over findings from a recent company network
traffic usage report. Which of the following best describes the reason for this situation?
Capturing video of employees working using a hidden camera
Failure to publish positive comments along with employee complaints.
Publishing an incomplete list of employee suggestions for network improvements.
Failure to keep personal information collected private.

Answers

Publishing an incomplete list of employee suggestions for network improvements.

What is Data Analyst?

A Data Analyst is a professional who gathers and analyzes data across the organization in order to make informed decisions or to assist other team members and leadership in making sound decisions.

You have been named in a lawsuit against the company as the Data Analyst. Other company employees are displeased with the findings of a recent network traffic usage report.

One possible explanation is that an incomplete list of employee suggestions for network improvements was published.

Thus, this can be the reason for the given scenario.

For more details regarding data analyst, visit:

https://brainly.com/question/28893491

#SPJ1

Regarding k-NN algorithm which of the following statements is true?

Select the best answer

Select one:

A.
KNN could be used for both classification and regression problems


B.
All answers are correct


C.
It makes sense to use KNN, in cases where the data changes frequently and the prediction time is not important


D.
It does not make sense to use very high values of K (number of neighbors)

Answers

Answer:

A

Explanation:

KNN could be used for both classification and regression problems

Which of the following is classified as a workgroup information system?

Answers

The Monterey Bay Aquarium's tool that helps staff communicate, organize, plan, schedule, and track jobs is classified as a workgroup information system.

What is a workgroup information system?

A workgroup information system (WIS) can be defined as a system that is designed and developed to provide support for team members during a group decision-making process.

The main purpose of a workgroup information system (WIS) is to enhance and promote the free flow of information among the members of a team.

Read more on workgroup information system here: https://brainly.com/question/25226643

#SPJ1

a) In order to execute a program, instructions must be transferred from memory along a bus to the CPU. If the bus has 8 data lines, at most one 8 bit byte can be transferred at a time. How many memory accesses would be needed in this case to transfer a 32 bit instruction from memory to the CPU? ​

Answers

Answer: 4 memory accesses

.........We should now focus on the 8 bit byte and how many can it transfer at a time. Notice how I bolded that word so we no know that we should fivide the 32 bit instruction divided by the 8 bit byte which would be 4 memory acesses

Write a function where you are given: a list of numbers "nums", a number to search for "num". Return the index of "num" in the list "nums". If "num" is not found in the list, return -1 instead.

Answers

The program is an illustration of functions; functions are used to represent collection of named statements

The program in Python

The function in Python where comments are used to explain each line is as follows:

#This defines the function

def checkList(nums,num):

   #This checks if num exists in nums

   if num in nums:

       #If yes, this returns the index of num

       return nums.index(num)

   #If otherwise, this returns -1

   return -1

Read more about Python programs at:

https://brainly.com/question/26497128

#SPJ1

An example of people working for a social cause is when a:
A.family complains to a restaurant manager that the food and service were poor
B.group stands on the corner with signs urging people to spray or neuter their pets
C.government decides that a certain newspaper company must be shut down.
D.student writes in his journal about how much he enjoyed visiting a national park

Answers

Answer:

B. Group stands on the corner with signs urging people to spray or neuter their pets.

Explanation:

It is B because they are fighting for people to neuter their pets to probably to avoid having so many strays


To what extent do preexisting personal biases affect representation in new media

Answers

Answer:

Below

Explanation:

I believe that it's a bit of a case by case scenario. However, personal biases will inevitably show throughout any sort of writing or other presenting within media. That's why you should always be careful about what you read and believe is true

Explain why you would use the soft the soft on/off jumper when working on the ATX system

Answers

Soft power is one that hinders a user from turning off a system when the operating system has not yet been shut down.

What is the system about?

The BIOS or operating system is known to be a kind of system that handles the work of turning the PC on or off. This is known to be soft power.

Note that the use of soft power instead of a physical switch has a lot of benefits such as it prevents a user from turning off a system when the operating system is not yet shut down.

Learn more about system from

https://brainly.com/question/25594630

#SPJ1

What type of scripts can tap in to your mobile device’s GPS location, which can then be used in a game?
geo-location scripts
geo-level scripts
heightmap scripts
evasion vector scripts

Answers

Answer:

geo-location scripts

Explanation:

see above

CALCULATE THE MISSING VALUE:


1. P=?, I = 2A, E = 12V

2. P=200W, I = 2A, E = ?

3. P= 100W, I = ?, E = 120V

4. P = 1000W,I= 10A, E = ?

5. P=150W, I = ?, E = 120V

6. P=?,I= 3A, E = 15V

7. P=300W, I = ?, E = 100V

8. What unit is to measure power?

9. What unit is to measure voltage?

10. What unit is to measure amperage?.​

Answers

Answer:

See below ~

Explanation:

Relating Power (P), Amperage (I), and Voltage (V) :

Power (P) = Voltage (V) × Amperage (I)

===========================================================

Q1

⇒ P = 2A × 12V

⇒ P = 24W

============================================================

Q2

⇒ 200W = 2A × E

⇒ E = 100V

=============================================================

Q3

⇒ 100W = I × 120V

⇒ I = 5/6

⇒ I = 0.83A

=============================================================

Q4

⇒ 1000W = 10A × E

⇒ E = 100V

=============================================================

Q5

⇒ 150W = I × 120V

⇒ I = 5/4

⇒ I = 1.25A

=============================================================

Q6

⇒ P = 3A × 15V

⇒ P = 45W

===========================================================

Q7

⇒ 300W = I × 100v

⇒ I = 3A

============================================================

Q8

⇒ The unit to measure power is Watt (W)

===========================================================

Q9

⇒ The unit to measure voltage is volt (V)

============================================================

Q10

⇒ The unit to measure amperage is Ampere (A)

What kind of AR target category makes sense for a playing card with a picture on it?
single image
cylinder
3D object
bitmap

Answers

Answer:

3D objects

Explanation:

Repeated patterns and 3D makes AR target category more sensible for playing card with picture in it. 3D usually stands for three dimensional imaging which helps in better visualisation techniques of object.

Option C

You work at a computer store and a client approaches you, asking you to recommend a computer that she can buy for her son who wants to use the computer for gaming.

Answers

Answer:

just search a gaming pc and write the components then the specs of the pc

Explanation:

now gimme answer for question 4.2 please

Karishma is setting up a wired network for a small office. Which hardware component on the computer will help in network connection, and which cables will she use for the most economical network connection?

A bridgenetwork interface cardrepeater connects a computer to a network.
Fiber-opticShielded twisted-pairUnshielded twisted-pair cables are the cheapest option for network connections.

Answers

A hardware component on the computer which will help in network connection is a network interface card.

What is a network interface card?

In Computer technology, a network interface card can be defined as a hardware component installed on a computer system which is used to connect to the Internet or create a network connection.

In this scenario, a hardware component on the computer which will help in network connection is a network interface card, and the cables she would use for the most economical network connection is an unshielded twisted pair cables because it is cheaper than the other types of cables.

Read more on cables here: https://brainly.com/question/25337328

#SPJ1

Answer:

network interface cardunshielded twisted-pair

Dalton needs to prepare a close-out report for his project. Which part of the close-out report would describe how he would plan and manage projects in the future?

Answers

The part of the close-out report would describe how he would plan and manage projects in the future is summary of project management effectiveness.

What is summary?

A summary is known to be a short statement or the restatement of key fact , mostly in a form of  a conclusion to a work.

Note that in the above case, The part of the close-out report would describe how he would plan and manage projects in the future is summary of project management effectiveness.

See the options below

Select an answer:

project highlights

major changes and risks

summary of schedule and cost performance

summary of project management effectiveness

Learn more about report from

https://brainly.com/question/24256083

#SPJ1

which set of possible outputs can result from a Boolean function
A. Movement or sound
B. If or then
C. True or false
D. High or low

Answers

The set of possible outputs that can result from a Boolean function is known to be True or false.

What is the output of Boolean?

In Boolean Algebra terms, that which is known to be the output will only come out as TRUE only if all of its inputs are TRUE and false if it is not.

Therefore, The set of possible outputs that can result from a Boolean function is known to be True or false.

Learn more about Boolean function from

https://brainly.com/question/13265286

#SPJ1

Draw a Hierarchical input process output ( HIPO ) chart to represent a high - level view of the functions of the proposed system .​

Answers

The format to use in drawing the Hierarchical input process output  chart to show a high - level view of the functions of the proposed system is given in the image attached.

What is hierarchical input process output?

An HIPO model is known to be a form of hierarchical input process output model that helps in  systems analysis design and also in documentation .

Note that it is often used for depicting the modules of a system based on the use of hierarchy and for saving each module and thus by following the method used in the image attached, one can draw a Hierarchical input process output ( HIPO ) chart to represent a high - level view of the functions of the proposed system.​

Learn more about HIPO  from

https://brainly.com/question/2665138

#SPJ1

write a pseducode that will ask the user to enter the amount of a purchase. The program should then compute that state and provisional sales tax

Answers

The pseudocode of the program is simply a prototype of the actual program

How to write the pseudocode?

The pseudocode that does the requirements in the question is as follows:

StartGet Input for amount of purchaseCompute the state tax: sales tax = sales tax percentage * amountCompute the provisional sales tax: provisional sales tax = provisional sales tax percentage * amountPrint the taxes

Read more about pseudocode at:

https://brainly.com/question/24735155

#SPJ1

Other Questions
Why do many organizations use the hybrid and multi-Cloud approach? what is tectonic plate How do the authors use historical evidence to support.their claim in this passage?They use primary-source quotations to show thatenslaved people in Saint Domingue were willing todestroy property to gain their freedom.They use secondary-source quotations to show theplan that the commanders devised in Alligator Woodsin August of 1791.They use primary-source information to describe therole of commanders on sugar plantations in SaintDomingue.They use secondary-source information to describeToussaint's plan to enslave all the people working onthe sugar plantations. What is the quotient? X+5/3x^2 + 4x+5 HELP ASAP PLEASE (answer all parts please)The upcoming championship high school football game is a big deal in your little town. The problem is, it is being played in the next biggest town, which is two hours away! To get as many people as you can to attend the game, you decide to come up with a ride-sharing app, but you want to be sure it will be used before you put all the time in to creating it. You determine that if more than three students share a ride, on average, you will create the app.You conduct simple random sampling of 20 students in a school with a population of 300 students to determine how many students are in each ride-share (carpool) on the way to school every day to get a good idea of who would use the app. The following data are collected:6 5 5 5 3 2 3 6 2 25 4 3 3 4 2 5 3 4 5You will construct a 90% confidence interval and 95% confidence interval for the mean number of students who share a ride to school, then you will compare and interpret the results.Part A: Decide which partner will construct each confidence interval, and then state the parameter and check the conditions.Part B: Construct the confidence interval. Be sure to show all your work, including the degrees of freedom, critical value, sample statistics, and an explanation of your process. Part C: Interpret, share, and compare. Interpret the meaning of the confidence interval, compare your results with your partner, and describe the difference in the width of the interval and the margin of error.Part D: Use your findings to explain whether you should develop the ride-share app for the football game. (Citizenship 02.05 HC)Imagine that a natural disaster affects a large city and the power is out for weeks. Local officials order a temporary curfew, so people must remain in their homes during night hours. Officials say the curfew ensures safety for both the public and for workers restoring power yall help please and thank you! Choose the function for this graph Which of the following initiatives most contributed to Mao Zedongs goals for China as described in the passage?A. The Cultural Revolution to purge traces of capitalism and traditionalism from communist China.B. The Great Leap Forward to rapidly develop Chinas economy while creating a more fully communist society.C. The New Economic Policy to recover from war, famine, and natural disasters by privatizing Chinas agricultural production.D. The Four Modernizations to strengthen Chinas economy by reforming agriculture, industry, national defense, and science and technology What's function of ADH Marking as brainliest last attempt (ZOOM IN THE PHOTO)write a paragraph about the topic : bullying in schools TIME REMAINING57:53Allied leaders sought to address the Sudetenland conflict byagreeing to give Hitler land where the predominant population was German.offering to pay Hitler to stop the annexation of a part of Czechoslovakia. convincing Czechoslovakia to give up land where Germans were a majority.helping Czechoslovakia fight the annexation of this part of their country. A ball is tied to the end of a cable of negligible mass. The ball is spun in a circle with a radius 2. 00 m making 7. 00 revolutions every 10. 0 seconds. What is the magnitude of the acceleration of the ball?. Answer the statistical measures and create a box and whiskers plot for the following set of data. 2, 2, 4, 6, 6, 7, 8, 9, 9, 11, 11, 12, 19 What is the hottest temperature ever recorded in texas. Which conclusion is best supported by the passage?Which excerpt from Initiation is the best example of an internal conflict? answer the problem please Find f(5)+j(-2) if f(x)=12-3x ind j(x)=x + 4x 1 Among children with kwashiorkor, Multiple Choice protein intake may be low, but calorie intake is severely deficient. intakes of both calories and protein are severely deficient. calorie intake may be low, but carbohydrate intake is severely deficient. calorie intake may be low, but protein intake is severely deficient. The table gives information about the height of some trees draw a histogram for the information of some trees