this refers to the program installed in the computer

Answers

Answer 1
THE ANSWER IS SOFTWARE

THIS IS REFERS PROGRAM INSTALLED IN THE COMPUTER


Related Questions

True or False!
Answer​

Answers

Answer:

1) true

2) true

3) false, domain name, not domain name suffix.

4) true

5) true

6) true

7) true

8) false, ... forgot the other name ...

9) true

10) false, it can also contain pics and vids.

11) true

12) true

13) false, ... can't remember the name ...

14) true

15) true

What does the value 0.5 specify in the following code?rgba(123,12,11,0.5)

Answers

The last number in the code?

If Maya wants to access a view that would control multiple slides within a presentation, which view should she utilize?

*it's A. Master view edg

Answers

Answer:

a. Master view

Explanation: is correct. post protected.

A processor's speed is measured in megahertz (MHz), or millions of instructions per second; and gigahertz (GHz), or billions of instructions per second. Which processor is faster?

options:

3.8 GHz


3.8 MHz

Answers

Answer:

3.8 GHz

Explanation:

GHz (gigahertz, or billions of pulses per second).

The faster processor speed can be 3.8 GHz. The first option is correct.

What is speed?

The speed of any moving object is the ratio of the distance covered and the time taken to cover that distance.

A processor's speed is measured in megahertz (MHz), or millions of instructions per second; and gigahertz (GHz), or billions of instructions per second.

The billions of instructions per second is greater than millions of instructions per second.

Thus,  3.8 GHz is faster.

Learn more about speed.

brainly.com/question/7359669

#SPJ2

PLSS HELP ASAP ILL GIVE BRAINLIEST THANKS

Answers

Answer:

I think division I am not sure

Explanation:

but hope that helps

Box. Atleast thats what my class calls it.

Software that communicates with the hardware and allows other programs to run. It is comprised of system software, or the fundamental files your computer needs to boot up and function. Every desktop computer, tablet and smartphone includes an operating system. Common desktop systems include Windows, OS X and Linux.

options:

Application Process


Boot Process


Computer Process


Operating Process

Answers

Answer:An operating system, or "OS," is software that communicates with the hardware and allows other programs to run. It is comprised of system software, or the fundamental files your computer needs to boot up and function.

Explanation:

a packet analyzer is a program that can enable a hacker to do all of the following except ________.

Answers

A packet analyzer is a computer network that has the ability to intercept and log traffic that flows through the network of a computer. A packet analyzer is a program that can enable a hacker to do all of the following except;

D) Launch a denial of service (DoS) attack on your computer

Since it is able to read and capture the raw data moving through a network, hackers can use a packet analyzer to decode the details in a user's debit card.

Identity theft can be executed and passwords can be captured using this program.

However, the computer's network cannot be shut down with this program. Therefore, option D is right.

Options:

A) Use your debit card information to purchase items illegally

B) Assume your identity

C) Steal your logons and passwords for various accounts

D) Launch a denial of service (DoS) attack on your computer

Learn more here:

https://brainly.com/question/14390016

A criminal is using software to obtain information about the computer of a user. What is the name of this type of software

Answers

Answer:

spyware

Explanation:

Vivek wants to save the data about his grocery store in a single table. Which among the following type of databases is used in this scenario

Answers

Explanation:

A centralized database (sometimes abbreviated CDB) is a database that is located, stored, and maintained in a single location.

25 POINTS!!! 3 OPTIONS!!
Democratic governments may put financial and regulatory pressure on unsupportive media outlets but offer supportive media outlets _____. Select 3 options.

A. unfavorable coverage

B. negative publicity

C. preferential access to information

D. lucrative contracts

E. favorable regulatory decisions

Answers

Answer:

C. Preferential Access to Information

D. Lucrative Contracts

E. favorable regulatory decisions

Explanation:

Edge 2021

The democracy govenment may put financial and regulatory pressure by

preferential Access to Informationlucrative Contractsfavorable regulatory decisions.What is a democratic government ?

The democratic government is the form of the government in which the power is given to the people to decide or to deliberate and form the legislation.

It allows for the selecting of the governing officials and puts the financial and the regulatory pressure on the unsupported media outlets.

Find out more information about democratic governments.

brainly.com/question/26622333

Good things to keep track of about people in your Career Network include: a. contact information, including how to spell their name. b. how you came to know them (introduced by a friend, at a career fair, search on LinkedIn, etc.). c. notes about your last interaction and plans for your next interaction. d. only a and b above e. all of the above

Answers

Answer:

mi pareceres que es la B

Explanation:

Question # 6
Fill in the Blank
Complete the following sentence.
The World Wide Web launched to the public in __________.

#Nova

Answers

Answer:

April 30, 1993

Explanation:

suggest any complete anime......?​

Answers

Plastic love and maybe your lie in April?

what do other people think of e.t
in the movie E.T

Answers

Answer:

I think E.T is funny

Explanation:

please help me i will mark as brainliest​

Answers

Answer:

1 True

2 True

3 False

4 True

5 True

— hope I helped you

What is the difference between asset allocation and diversification

Answers

Answer:

Asset allocation refers to the percentage of stocks, bonds, and cash in your portfolio. In contrast, diversification describes the spreading of your assets across the various asset classes within each of those three allocation buckets to further reduce risk.

Explanation:

What is the output of the following program? (Show your work)

int x = 3, y = 2;
System.out.println("x = " + y);

x = 5 + y * 7 % 3;


y = x - y * x - 3 / 2;


System.out.println("x = " + x);
System.out.println("y = " + y);

Answers

Answer:

x = 2

x = 7

y = -8

Explanation:

int x = 3; (here the variable of type int called x is declared and given the value 3)

int y = 2; (here another variable of type int called y is declared and given the value 2;

System.out.println("x = " +y ); (this instruction will print the value of y in the console terminal but deceivingly saying that the value belongs to x variable. So whoever reads will read "x = 2" instead of "x = 3" which would be the correct value associated with x.

x = 5 + y * 7 % 3; (here the value of x is changed from 3 to 5 + y * 7 % 3. What this means is that the first value of y (2) is multiplied by 7 and then get the mod of division 14 / 3 which is 2. Then added to 5. So the final result is 7 which is now the new value of x)

y = x - y * x - 3 / 2 (same as the above but for the value of y: here - 2 is multiplied by 7 and - 3 is divided by 2. Now we have 7 - 14 - 1.5 which is -8.5 but since you specified the variable type was an int and not double or float, then the program ignores significant numbers, so it ignores the .5 or whatever comes after the point instead of rounding it. PS: [So for instance if the result was 8.9, the value printed would be 8])

System.out.println("x = " + x); (prints the new value of x but this time it does not deceive the reader)

System.out.println("y = " + y); (prints the new value of y, and the letter y is shown in the screen for the first time with the correct value associated)

Activity Sheet 2
A.Illustrate how to create the object below using draw and modify commands.​

Answers

Answer:

Vjfxfffccvvvvvv

Explanation:

Hgvjhgxxgyjjbvccjkn Hugh bună vvvvhg un www buukbbchfcvbvc. Hggvhhvbhchgx

PLSS HELP ASAP ILL GIVE BRAINLIEST THANKS

Answers

second one i’m pretty sure

Plant Roots are strong enough to break rock.


False


True

Answers

Answer:

True

Explanation:

Plants and animals can be agents of mechanical weathering. The seed of a tree may sprout in soil that has collected in a cracked rock. As the roots grow, they widen the cracks, eventually breaking the rock into pieces.

write a qbasic program to find the
circumference of a circle with radius 3

Nepali only

Answers

Cls

Let R = 3

Let A = 22 / 7 * R * R

Let C = 2 * 22 / 7 * R

Print "AREA= "; A; "SQ CM"

Print "CIRCUMFERENCE= "; C; "CM"

End

Dom is a software developer who likes to tweak his computer's OS to make it work the way he wants it to. The OS he is most likely to use is _____.

A. Mac
B. Linux
C. MS-DOS
D. Windows

Answers

Answer:

Linux

Explanation:

Linux-based operating systems are open-source, and open-source software can be modified. Mac, MS-DOS, and Windows are all closed-source means we can't see the source code hence we can't modify it.

I hope this helps <3

A two-dimensional array of ints with 4 rows, has been created and assigned to a2d. Write an expression whose value is the total number of ints that could be stored in the entire array.

Answers

Arrays are used to represent data in rows and columns

The expression that represents the number of int the array can store is 4c

From the question, we have:

The number of rows is given as: 4The number of columns is unknown; assume the number of columns to be c.

Also from the question, we understand that the array is of integer type.

So, the number (n) of int the array can store is the product of the rows and the columns

i.e.

[tex]\mathbf{n = Rows \times Column}[/tex]

So, we have:

[tex]\mathbf{n = 4\times c}[/tex]

Multiply

[tex]\mathbf{n = 4c}[/tex]

Hence, the expression that represents the number of int the array can store is 4c

Read more about arrays at:

https://brainly.com/question/14664712

An organizations help desk is flooded with phone calls from users stating they can no longer access certain websites.
The help desk escalates the issue to the security team, as these websites were accessible the previous day.
The security analysts run the following command: ipconfig /flushdns, but the issue persists. Finally, an analyst changes the DNS server for an impacted machine, and the issue goes away.
Which of the following attacks MOST likely occurred on the original DNS server?[...]
a. DNS cache poisoning
b. Domain hijacking
c. Distributed denial-of-service
d. DNS tunneling

Answers

The distributed denial-of-service (DDoS) attack is known to be a malicious  attack. Distributed denial-of-service attacks can mostly likely occurred on the original DNS server.

Distributed denial-of-service often tires to hinder the normal traffic of the said targeted server, service or network by filling up the target or its environment/ infrastructure with a flood of Internet trash.

The symptom of a DDoS attack is that the site or service will suddenly run slow or become unavailable. Traffic analytics tools can help one to know  the signs of a DDoS attack. DDOS attack can be prevented by  switching DNS servers.

Learn more from

https://brainly.com/question/13977863

Hoá học 9 giải hộ mềnh vơiz:))

Answers

Answer:

sorry di ko alam

Think about the different costs for magazine ads. Why do you think it would cost more to have an ad placed on the front or back of the magazine instead of having it inside?

Answers

People or businesses usually buy ads to promote what they’re trying to sell. Since the front and back of the magazine is what people see the most (rather than some random page on the inside), it is expected that an ad on one of the covers would cost more since those surfaces get many more viewers on average.

Hope this helps!

Select the correct answer.

The local authorities indicate that a film crew shooting on an abandoned bridge need to have special permission. Which member of the crew is responsible for acquiring this permission?

A.

location manager

B.

producer

C.

director

D.

set designer

Answers

Location manager is a member of the film crew which is responsible for

getting permits from the police and relevant authorities.

The location manager is responsible for finding appropriate locations,

securing permits and giving notice to the neighbors to ensure the smooth

running of the film production.

In this scenario, the film crew known as the location manager will need to

take permission to shoot the movie on an abandoned bridge from the local

authorities.

Read more on https://brainly.com/question/19541645

Why is this happening when I already uploaded files to my drive?

Answers

Answer:

u have to upload it to your drive first

Explanation:

Question 14 of 20
"Businesses around the world all need access to the same data, so there
needs to be one type of information system that is designed to offer it." Why
is this statement false?
O A. This statement is false because there already is only one type of
information system.
B. This statement is false because the data that the Internet
produces is never the same.
1
O C. This statement is false because different businesses have
different information needs.
O D. This statement is in fact correct; this is where the field of
information technology is heading.
SUBMIT

Answers

Answer:

This statement is false because there already is only one type of

information system.

Which statement is true with respect to Java?

A.
Java programs are not compiled, only interpreted.

B.
Intermediate bytecode is created by the JIT.

C.
Bytecode is platform independent.

D.
The JVM creates object code after compiling.

Answers

Java is a high level programming language.

The true statement is (c) Bytecode is platform independent.

First, java programs are compiled and interpreted

This means that (a) is not true

Secondly Just-In-Time (JIT) does not create intermediate bytecodes, and Java virtual machine (JVM) does not create object codes.

However, java programs are compiled to an instruction set for the JVM; this instruction set is referred to as the byte code.

And the byte code is platform-independent.

Hence, the true option is (c)

Read more about java programming language at:

https://brainly.com/question/2266606

Answer:

C) Bytecode is platform independent

Explanation:

Just got it right on ASU

Other Questions
1. Mitch Hart's gross pay for this week is $425.78. He is single and claims 2 6 pointsallowances. Using the percentage method of withholding, what amountwill Mitch's employer withhold from his pay for federal income tax?Percentage Method of Withholding - Single PersonEach weekly allowance is $63.46.Weekly Taxable The amount of income tax toWagewithhold isOver But notover$51.00 $195.00 S0.00 plus (10% of the excessover $51.00)195.00 645.00 $14.40 plus (15% of the excessover $195.00)645.00 1482.00 $81.90 plus (25% of the excessover $645.00) What are the major challenges of making a lasting impact of Dashain My co-worker was fired for accessing the manager's computer without his equation of the line that passes through the points (7, 6) and (-2, -3)? Identify one example of how your beliefs, behaviors, or practices have changed as you have applied them to new situations.How did a move, a new challenge, or a new influence change you as a person? Answer the following questions with complete sentences in Spanish. Note the hints in parentheses.1. Te gusta bailar?2. Dnde est El libro (under the desk)3. A la profesora, Le gustan Las enchiladas?4. Dnde ests? (next to cafeteria)5. Te gustan Las peliculas romnticas? 6. how would you translate the sentence "Spanish class is very far away"7. Cules son Tus pasatiempos favoritos (to read,to play soccer,and to dance)8. Tell someone what you like to do (to sing or to play piano)9.A ustedes les gusta la clase de atre? (s)10. Tell someone that the pencil is on top of the book Please help. 100 pointsCarbon-12, Carbon-13, Carbon-141. The numbers 12, 13, and 14 refer to what2. What subatomic particle makes each of these isotopes different?3. What subatomic particle makes each of these isotopes the same? Which line from The Most Famous Woman in American expresses an opinion? Find the slope ... ... A point $P$ is randomly selected from the square region with vertices at $(\pm 2, \pm 2)$. What is the probability that $P$ is within one unit of the origin please help me! giving BRAINLIEST Homework: Week 3 - Ratios...Question 13, 1.4.39O Points: 0 of 1The ratio of female students to male students at a particular college is 3 to 2 If there are 3375 female students at the college, what is the total number of students at the college?The total number of students at the college is (Simplify your answer) look at this painting by pietro perugino. what type of perspective does it illustrate?A) real-life perspectiveB) aerial perspectiveC) multiple-point perspectiveD) linear perspective How can local environmental changes have global effects?. Organisms can move from one environment to another.b. Air and water move from region to region.c. Increased carbon dioxide in one location can cause increased temperatures in other locations.d. All of the above are true.A maths lit November question paper paper 1 grade 11 2021? Solve for t in the following equation.10 + 42 = 22( + 4)A. =1 B. =35C. =35 What have you learned about geometric relationships? PLEASE HELP 15 POINTS When reading an informational text, how do you identify the author's thesis statement?A). The thesis statement is the first sentence of the introduction, in which the author introduces the topic for the first time.B). The thesis statement is the sentence in the introduction that states the author's specific ideas about the topic.C). The thesis statement is the sentence found at the beginning of a body paragraph, which is followed by supporting details.D). The thesis statement is the sentence found at the end of the conclusion, which wraps up the author's ideas on the subject. This is a map of Brazil. Based on the map, which of these has the MOST influence on the country's climate? A) the country's proximity to the equator B) trade winds coming off the Atlantic Ocean C) weather systems created by the Andes Mountains D) the Amazon River flowing to the Atlantic Ocean. When determining domain it is important to work from