can you help me here please​

Can You Help Me Here Please

Answers

Answer 1

Explanation:

because Anna is a music lover she had download lots of songs.When downloading songs a virus should have gone from the websites to her computer.

to avoid this problems she should not have gone through the different websites


Related Questions

For what purpose do the hackers create the zombies army?

A. DDoS Attacks
B. DoS Attacks
C. Warm Attacks

Answers

Answer:

A. DDoS Attacks

Explanation:

A zombie, in computer terminology, is a hacker, computer worm, trojan horse, or virus compromised internet connected computer, which can be remotely directed to perform malicious tasks

E-mail spams and denial-of-service, DoS attacks are spread and launched by botnets of zombie computers

Botnets which are also known as "zombie army", are used by hackers mainly for spam and distributed-denial-of-service, DDoS, attacks

While a DoS attack involves one machine, while a DDoS attack consist of multiple computing devices and machines

A botherder is the originator of a botnet and common botnets include Mr Black. Pushdo, and cyclone

Convert the algebraic expression below to C++ statement Do not use the pow function. Ans = 5x^2 + 15k + y^-2

Answers

Answer:

The C++ statement for the given algebraic expression 5x^2 + 15k + y^-2 is ( ( 5 * ( x * x ) ) + ( 15 * k ) + ( 1 / ( y * y ) ).

Explanation:

To convert the given algebraic expression 5x^2 + 15k + y^-2 into the C++ statement without using the pow function is:

In the given algebraic expression, there are three expressions combined using the + operator.

The first algebraic expression is 5x^2.

Here, x has a power of 2, and 5 is multiplied by the result of x^2. x having the power of 2 means x is multiplied itself twice. The C++ statement for this algebraic expression is (5 * ( x * x)).

The second algebraic expression is 15k.

Here, 15 is multiplied by k. The C++ statement for this algebraic expression is (15 * k).

The third algebraic expression is y^-2.

Here, x has a power of -2. it means [tex]1/y^{2}[/tex].  The C++ statement for this algebraic expression is (1/ (y * y).

The combination of all the three C++ statement is (5 * ( x * x)) + (15 * k) + (1/ (y * y).

Write a loop that displays your name 10 times. 2. Write a loop that displays all the odd numbers from 1 through 49. 3. Write a loop that displays every fifth number from 0 through 100. 4. Write a code sample that uses a loop to write the numbers from 1 through 10 to a file. 5. Assume that a file named People.txt contains a list of names. Write a code sample that uses a while loop to

Answers

Answer:

The program in Python is as follows:

#1

for i in range(10):

   print("MrRoyal",end=" ")

print()    

#2

for i in range(1,50,2):

   print(i,end=" ")

print()

#3

for i in range(0,101,5):

   print(i,end=" ")

print()

#4

i = 1

while i <=10:

   print(i,end =" ")

   i+=1

#5

myfile = open("People.txt", "r")

eachLine = myfile.readline()

while eachLine:

   print(eachLine)

   eachLine = myfile.readline()

myfile.close()

Explanation:

The program in Python is as follows:

Program #1

This iterates from 1 to 10

for i in range(10):

This prints the name for each iteration [modify to your name]

   print("MrRoyal",end=" ")

This prints a new line

print()    

Program #2

This iterates from 1 to 49 with an increment of 2

for i in range(1,50,2):

This prints the odd numbers in the above range

   print(i,end=" ")

This prints a new line

print()

Program #3

This iterates from 0 to 100 with a step of 5

for i in range(0,101,5):

This prints every 5th number

   print(i,end=" ")

Print a new line

print()

Program #4

This initializes the number to 1

i = 1

This opens the file in an append mode

f = open("myfile.txt", "a")

This loop is repeated from 1 to 10

while i <=10:

This writes each number to the file

   f.write(str(i))

Increment the number by 1

   i+=1

Close the file

f.close()

Program #5

This opens the file in a read mode

myfile = open("People.txt", "r")

This reads each line

eachLine = myfile.readline()

This loop is repeated for every line

while eachLine:

Print the content on the line

   print(eachLine)

Read another line

   eachLine = myfile.readline()

Close the file

myfile.close()

Question 10 :In a word processor, you can use the Word Count function to:This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt 1 to alt 9. A count the number of images and animations in a document. B count the number of index entries in a document. C count the number of lines and paragraphs in a document. D count the number of primary and secondary headers in a document.

Answers

Answer:

C. count the number of lines and paragraphs in a document.

Explanation:

A word processor or word processing software application is a type of software designed to enable its users type, format and save text-based documents such as .docx, .txt, and .doc files. Some examples of a word processor are Microsoft Word, Notepad, Sublime text, etc.

In Microsoft Word, the number of words and pages you type in a document are automatically counted and displayed on the status bar at the left-bottom of the workspace.

Basically, you can use the Word Count function of a word processor to count the number of lines, pages, words, characters, and paragraphs in a text-based document.

it is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together​

Answers

Answer:

Cable ties

Explanation:

Used to bundle cables neatly inside and outside of a computer. It is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together.

>3

[tex]\boxed{Parts\: organizer}[/tex] is used to hold screws, jumpers, fasteners, and other small parts and prevent them from getting mixed together.

[tex]\bold{ \green{ \star{ \orange{Mystique35}}}}⋆[/tex]

Marcia is using the software program Slack. What is she most likely using it for at work?

Answers

Answer:

Communicating with collegues.

Explanation:

Marica is probably using slack for communicating with colleagues as slack has great features for work and organizations. It is most popular and reccomended for organizations and schools/colleges.

I hope for your success!

differentiate agricultural waste from hazardous waste.​

Answers

Mark Brainliest please

Answer :

Hazardous waste is waste that poses a severe threat to human health or the environment if improperly disposed of. According to the EPA, a substance is a hazardous waste if it appears on specific lists of hazardous waste or exhibits the established characteristics of hazardous waste. Hazardous waste is regulated under the Resource Conservation and Recovery Act (RCRA).

Agricultural waste is waste produced as a result of various agricultural operations. It includes manure and other wastes from farms, poultry houses and slaughterhouses; harvest waste; fertilizer run- off from fields; pesticides that enter into water, air or soils; and salt and silt drained from fields.




Review the HTML tags that we have gone over in this lesson. Research HTML tags on the web and identify two new tags. Use these tags along with the ones you have learned in the lesson and construct a simple web page in HTML.

Some suggestions of simple tags include those which:

create a simple line break;

another way to create bold text;

underline text;

make text within the tag bigger than the rest of the text (specifying the size of the text);

mark or highlight a word or parts of your text;

a short quotation;

subscript text;

and superscript text.


You will only submit your document with the html you have created. However, it is always a good idea to use an HTML test bed to check your work.


Tags we have gone over in this lesson will be in the picture

Answers

<html>

<body>

<h1>Hello, Welcome to this simple website</h1>

<br>

<u>This is a very good <strong>quote<strong></u>

<br>

<blockquote>"Sometimes silence is the best answer"</blockquote>

<br>

<p>This is our 16<sup>th</sup> anniversary<p><br>

<p>H<sub>2</sub>So<sub>4</sub>is highly reactive</p>

</html>

<body>

What are water proof cameras?( write in detail)

Answers

Cameras where it’s focused enough to see under water and water resistant which water won’t get inside the camera and mess it up and end up burning you :)

Answer:

Underwater photography is the process of taking photographs while under water. It is usually done while scuba diving, but can be done while diving on surface supply, snorkeling, swimming, from a submersible or remotely operated underwater vehicle, or from automated cameras lowered from the surface.

Underwater photography can also be categorised as an art form and a method for recording data. Successful underwater imaging is usually done with specialized equipment and techniques. However, it offers exciting and rare photographic opportunities. Animals such as fish and marine mammals are common subjects, but photographers also pursue shipwrecks, submerged cave systems, underwater "landscapes", invertebrates, seaweeds, geological features, and portraits of fellow divers

Some cameras are made for use underwater, including modern waterproof digital cameras. The first amphibious camera was the Calypso, reintroduced as the Nikonos in 1963. The Nikonos range was designed specifically for use underwater. Nikon ended the Nikonos series in 2001[1] and its use has declined, as has that of other 35mm film systems. Sea and Sea USA made the Motor Marine III, an amphibious range-finder camera for 35mm film.[2][3]

Olympus TG-3 camera and its underwater housing front view

A waterproof camera and waterproof light source setup for professional underwater photography

GoPro Hero5 action camera in underwater housing

Seaview SVII Camera using three dome ports for all round view

Cameras made for dry work can also work underwater, protected by add-on housings, which are made for point and shoot cameras, compact cameras with full exposure controls, and single lens reflex cameras (SLRs). Most such housings are specific to the camera. Materials range from relatively inexpensive plastic to high-priced aluminum. Housings allow many options: users can choose housings specific to their everyday "land" cameras and use any lens. Underwater photographers generally use wide-angle lenses or macro lenses, both of which allow close focus and therefore a shorter distance to the subject, which reduces the loss of clarity to scattering. Digital media can hold many more shots than standard film (which rarely has more than 36 frames per roll). This gives digital cameras an advantage, since it is impractical to change film underwater. Other comparisons between digital and film photography also apply, and the use of film under water has declined, as it has on land.

Explanation:

When adopting and implementing a Software as a Service (SaaS) platform such as Salesforce for your business, which responsibility falls on you, as the client company?

Answers

Answer:

Software as a service (SaaS) platform would give the client company the responsibility of offering applications over the internet, develop, host, and update the product.

Explanation:

Salesforce is an example of Software as a service (SaaS), offering applications for businesses over the internet.

Software as a Service (SaaS) uses the cloud to host web-based apps and make them available to users over the internet, eliminating the need for users to install and maintain application software. Users only access this service with an internet connection and a web browser.

What is the Full form of DC?

Answers

Answer:

Deputy Commissioner.

Answer:

the full form of DC is deputy commissioner

Your motherboard has two memory slots and supports a maximum of 8 GB of RAM. After installing two 4 GB modules and booting your system, you find that Windows only recognizes 3.5 GB of RAM. What should you do?

A. Upgrade to a 64-bit version of Windows.
B. Change the memory timings in the BIOS to a slower (higher) setting
C. Return both modules for a replacement
D. Reboot the computer and run memory diagnostic tests on the memory
E. Make sure that both modules are seated properly in their slots.

Answers

Answer: A. Upgrade to a 64-bit version of Windows.

Explanation: In this situation, you are most likely using a 32-bit version of Windows, which can only address a maximum of 4 GS of RAM. Some of the 4 GB is used by drivers hence it only reports 35 GB of System RAM. Upgrading to a 64-bit version of Windows should fix the problem.

The BIOS should display the total amount of system memory during POST. If it does not count the proper amount of memory, verify that the memory is inserted correctly. In most cases, you will not need to change the memory timings. When you do it is typically because the system is unstable or crashes. Testing memory helps you identify when specific memory storage locations are going bad. Device Manager will not enable memory not recognized by the BIOS.

Explanation:

We should upgrade to a 64-bit version of Windows. Hence option A is correct.

What is Windows?

Windows is defined as a collection of different proprietary graphical operating system families that Microsoft has created and is promoting. Microsoft Windows is a personal computer operating system (OS) created by the Microsoft Corporation. It is also known as Windows and Windows OS (PCs).

Most likely, you are using a 32-bit version of Windows in this case, which can only address up to 4 GS of RAM. It only reflects 35 GB of system RAM since some of the 4 GB are being consumed by drivers. The issue should be resolved by upgrading to a 64-bit version of Windows. You can detect whether particular memory storage places are failing by testing the memory. Memory that is not recognized by the BIOS will not be enabled by Device Manager.

Thus, we should upgrade to a 64-bit version of Windows. Hence option A is correct.

To learn more about Windows, refer to the link below:

https://brainly.com/question/13502522

#SPJ5

a diagram of a flow chart to find the average of 10 numbers​

Answers

Answer:

Kindly check attached picture

Explanation:

Flowchart gives a graphical representation of a steps taken towers the execution of a program.

In the flowchart attached, A variable was initialized and set to 0 ; then a for loop was used to iterate integers 1 up to 10, for each number. It is added to the initialized variable sum until all the 10 integer numbers are added. The the average is obtained by dividing by 10.

can you plz answer me from the photo​

Answers

A. True
B. False
C. True


1.can you identify the materials needed in making simple doorbell ???

2.what is the use of each material or tool needed in making simple doorbell?????

pakianswer po ng maayos​

Answers

Answer:

1. rotary tool, spray paint, light, drill,

Explanation:

what is the difference between coding with html and coding with python

Answers

Answer:

Python is an object-oriented programming language that is designed to be accessible and simple for all users, HTML is a web language and is used globally to define the structure of web pages by using various tags. HTML is not a programming language it's a markup language which is used to formatting web pages. Python is a general purpose scripting language which can be used to develop a wide range of programs.

Select the correct answer.
Frankle is trying to create an app. He creates a new ViewController and removes the default one. What should he keep in mind when building
the app?
OA
connect all the ViewControllers to the old ones
OB.
assigning the first ViewController as initial
Oc. creating a SplitViewController
OD. adding a segue from the last ViewController

Answers

od. adding a segue fro. the last viewcontroller

If an if- else statement is true, it will include which kinds of results?

Answers

In an if...else statement, if the code in the parenthesis of the if statement is true, the code inside its brackets is executed. But if the statement inside the parenthesis is false, all the code within the else statement's brackets is executed instead.

Of course, the example above isn't very useful in this case because true always evaluates to true. Here's another that's a bit more practical:

#include <stdio.h>

int main(void) {

int n = 2;

if(n == 3) { // comparing n with 3 printf("Statement is True!\n");

}

else { // if the first condition is not true, come to this block of code

printf("Statement is False!\n"); } return 0;

}

Output:

Statement is False!

A chart is used to represent ______ data in pictorial form
Computer question
From the chapter ms excel pls answer!!

Answers

Answer:Pictorial form is also called a pictogram

. A store offers a deposit of 6% on the cash price of $462. The deposit amount is?​

Answers

I got $27.72 is 6% of $462.

Assume there are two variables, k and m, each already associated with a positive integer value and further assume that k's value is smaller than m's. Write the code necessary to compute the number of perfect squares between k and m. (A perfect square is an integer like 9, 16, 25, 36 that is equal to the square of another integer (in this case 3*3, 4*4, 5*5, 6*6 respectively).) Associate the number you compute with the variable q. For example, if k and m had the values 10 and 40 respectively, you would assign 3 to q because between 10 and 40 there are these perfect squares: 16, 25, and 36,.

PYTHON CODING

Answers

Answer:

import math  

def isPerfectSquare(n):

 s = int(math.sqrt(n))

 return n == s*s

def countPerfectSquares(k,m):

 q = 0

 for i in range(k,m):

   if isPerfectSquare(i):

     q=q+1

 return q

print(countPerfectSquares(10,40))

Explanation:

Note that this is including the k, but excluding m. If you want to include m, write m+1 in the range expression.

>What is the output of the following code:

list1 = [ 'cyber', 786 , 2.23, 'square', 70.2 ]
print (list1[1] )

Answers

Answer:

Given code output is "786".

Explanation:

Code:

list1 = [ 'cyber', 786 , 2.23, 'square', 70.2 ]#defining a list list1 that holds value in parameter

print (list1[1] )#use a print method that prints list index value

In the given code a list "list1" is declared that holds value in it and in the next step a print method is declared that prints the first index value of the list.

Describe how serial data access finds data

Answers

Answer:

Serial data access will go through all the data by order until the target data is reached

Explanation:

This is opposite of direct data access which immediately finds the desired

data

Answer:

Serial access works by accessing the data at the beginning and then working through it bit-by-bit until the end.

...

Examples of storage medium that use serial access are:

Video cassettes.

Music cassettes.

Backup tape cartridges(hold lots of tape for backing up large amounts of data)

In cell K2 enter a formula using the IF and OR functions, as well as structured references, to determine if Adam Moriarty can be a group leader. a. The IF function should first determine if the staff member’s Service Years is greater than 3 OR if the staff member’s college graduate status is "Yes". Remember to use a structured reference to the Service Years and the College Graduate columns.

Answers

Solution :

The value of the K2 cell is filled by IF and OR functions with structured references as :

[tex]K2=IF(OR([CBF\ \text{Staff[ Service years]} > 3, \text{CBF Staff[College graduate]}="Yes"),"Yes","No")[/tex]

Now if the syntax of the formula is not provided, then we can use :

[tex]$K2=IF(OR([[\text{Service Years}]]>3,[[\text{College Graduate}]]="Yes"),"Yes","No")$[/tex]

The staff member are required to satisfy one of the two or both the conditions so as to become a group leader. The conditions are :

---   staff member should served for more than 3 years

--- staff members should be college graduate

benefits of Internet in modern means of transport benefit of Internet as modern method of information transmission ​

Answers

Answer:

It is a network through which individuals transfer data and information. Using the internet, you can conduct financial services

Select the correct answer.

Susan is a programmer and uses the hexadecimal number system to represent instructions. Which letters of the alphabet do you think Susan uses to represent the numbers 10 to 15 in this number system?

A. A to F

B. A to H

C. A to M

D. A to J

Answers

Answer is  Hexadecimal  :     A.   A to F

this bar is located at the top of your computer school in.Its functions allow you to navigate the web​

Answers

Answer:

idu

Explanation:

The answer is Address bar

i read the book_____you gave me last month​

Answers

Answer:

You didn't provide any answer choices therefore I shall provide some that make sense with the sentence.

that

which

I hope these answers were of any help to you.

I read the book THAT/WHICH you gave me last month.

I need help in raft survival ocean nomad I was traveling and now I can't enter the island or go back home (raft). Please help me

Answers

Answer:

Raft Survival : Ocean Nomad is a survival game

Explanation:

The raft survival ocean nomad is a survival video game that is developed by a Swedish developer,  Redbeet Interactive. This game is published by Axolot Games.

In the game the player is moving in a raft in the middle of an ocean searching for his family. It is a survival and strategy game. The player needs to survive in the deserted ocean by whatever he finds and collect from the ocean and also protect himself from the attacks of the sharks.

The player moves by a small island which he can explore to eat something or collect other items to developed his raft.

In the context, if you can not enter the island or go back to the raft, then save the game at that point and press the escape button to start from the first.

In this way, you can refresh the game and start he game again to enter the island.

You are planning a program to find the maximum heart rate recommended for patrons of a gym where you have a part-time job. One formula for calculating the maximum heart rate is the difference between 220 and the patron’s age. Some of the steps in your plan are below.

Put them in order of which occurs first. Some steps are not listed.

Answers

Answer:

Age = int(input(Enter your age? "))

print(f"Your maximum heart rate is {220 - age}.")

Explanation:

The programs will be as follows

Age = int(input(Enter your age? "))

print(f"Your maximum heart rate is {220 - age}.")

 

Answer:

got 100 on the quiz

Explanation:

Other Questions
here did you walk? What did you find most enjoyable while walking: listening to music, listening to an audio book, or nothing? How did your body react to this introductory amount of exercise? Was it more exercise or less exercise than you are used to? If you did not walk, what other type of physical movement did you do? will give brainliest to the right awnser, What inference can you make by comparing the two sentences below? -first sentence of paragraph two: Check to see that your number is on the registry. -first sentence of paragraph three: You also can add your number to the registry using the same Web site or phone number (call from the number you want to register). A) Telemarketing calls are annoying. B) The registry can be key to ending telemarketing calls. C) The registry must be accessed from a home computer. D) There is a chance that telemarketers will go out of business. What is the difference of the rational expressions below? 4/x^3 - 2x-1/3x What is the purpose of using a scatterplot? Check allthat apply.O to organize bivariate datato plot points to connect a lineto plot points for two sets of dataO to compare dependent and independent variablesO to visualize relationships between dataO to find slope between two variables whats the answer :)?i will give brainslist A short sentence with Emphasizing. any 10disadvantages of living in community Write a letter to your friend telling he or she about your plan after school?Who can help me out? What is the scale factor of this dilation? What intangible benefits might an organization obtain from the development of an information system? what are the advantages of saving files in a cloud? Please help!! You deposit $3000 in a bank account that pays 4% annual interest. Find the balance after 7 years if the interest is compounded quarterly. (Y = 179x(Y = 105x + 2046Graph pls I need some help; if you don't know the answer, don't answer Who was newton please explain fast Which term describes the pre-Civil War, loose-knit organization that helped runaway slaves escape to Canada? Decrivez votre village en franais 1.) The grade 6 class harvested 3 44 kg of tomatoes, 53 kg of eggplants and 2 42 kg of green pepper from their "Gulayan sa Paaralan. How many kilograms of vegetables did they harvest in all? a. What is asked in the problem? b. What are the given facts? c. What operation will be used? d. What is the number sentence? e. What is the answer? I would like to see the answer for number one. You don't need to solve the rest. help me complete it fast pls