How to get flash to work on chrome?

Answers

Answer 1

Answer:

Open Chrome on your computer. If you’re using Windows, you’ll usually find it in the Start menu.

Click the ⁝ menu.

Click Settings.

Scroll down and click Advanced.

Scroll down and click Content settings.

Explanation:


Related Questions

Which are the three most used languages for data science?

Answers

Answer: python, JavaScript, scala

Explanation:

Your project requires new software. The IT department is going to research options to identify the best software to work with your project and existing infrastructure. The customer will approve their choice. In your responsibility matrix, which category would you use for the IT department for identifying the software

Answers

In your responsibility matrix, a category which you would use for the IT department in identifying the software is responsible.

What is a software?

A software can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task and proffer solutions to a particular problem.

In your responsibility matrix, a category which you should use for the IT department in identifying the best software to work with your developed project and existing infrastructure is responsible.

Read more on software here: https://brainly.com/question/26324021

#SPJ1

You want to be super private with your email. You'd like to be able to download your email to a single device, then remove it from your email server. What email protocol can you use to do that?

Answers

Since the person want to be super private with your email, the email protocol can you use to do that is POP 3.

What is  POP3 about ?

POP3 is known to be a tool that gives one room to be able to download email to a single device, which a person want to use if they want to add privacy to their emails.

Therefore, Since the person want to be super private with your email, the email protocol can you use to do that is POP 3.

Learn more about email from

https://brainly.com/question/24688558

#SPJ1

Which of the cached information retrieved will be the same as what is stored in the original server where the data is maintained

Answers

The answer is Yes, A browser cache is known to be a type of client-side cache, and it implies that it is also a type of site caching.

What is cache on a browser?

The browser cache is known to be a kind of 'cache' tool that is often used by a person's internet browser so that one can fasten up the page loading act.

Hence, The answer is Yes, A browser cache is known to be a type of client-side cache, and it implies that it is also a type of site caching.

Learn more about browser cache from

https://brainly.com/question/14598358

#SPJ1

You have downloaded a file from the internet. You generate a hash and check it against the original file's hash to ensure the file has not been changed. Which information security goal is this an example of

Answers

Answer:

integrity

Explanation:

This question involves the creation and use of a spinner to generate random numbers in a game. a gamespinner object represents a spinner with a given number of sectors, all equal in size. the gamespinner class supports the following behaviors.

creating a new spinner with a specified number of sectors
spinning a spinner and reporting the result
reporting the length of the current run, the number of consecutive spins that are the same as the most recent spin

write the complete gamespinner class. your implementation must meet all specifications and conform to the example.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that  generate random numbers in a game

Writting the code in JAVA:

public class GameSpinner {

int spinner;

int num;

int current;

public GameSpinner(int spinner) {

super();

this.spinner = spinner;

this.current = 0;

this.num = 0;

}

public int spin() {

int curr = 1 + (int) (Math.random() * spinner);

if (this.current == 0 || this.num == 0) {

this.current = 1;

this.num = curr;

return curr;

}

if (this.num == curr) {

this.current = this.current + 1;

return curr;

} else {

this.num = curr;

this.current = 1;

return curr;

}

}

public int currentRun() {

return this.current;

}

}

GameSpinnerTest.java

public class GameSpinnerTest {

public static void main(String[] args) {

// TODO Auto-generated method stub

GameSpinner g = new GameSpinner(4);

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

}

}

Output

g.currentRun() : 0

g.spin() : 1

g.currentRun() : 1

g.spin() : 4

g.currentRun() : 1

g.spin() : 4

g.currentRun() : 2

g.spin() : 3

g.currentRun() : 1

g.spin() : 3

g.spin() : 2

g.spin() : 2

g.currentRun() : 2

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

#SPJ1

Write a short program that asks the user to enter a month & prints a message based on the month

Answers

Answer:

The Code:

def month(x):

    if (x==1):

        print ("January")

    if (x==2):

        print("February")

    if (x==3):

        print("March")

    if (x==4):

        print("April")

    if (x==5):

        print("May")

    if (x==6):

        print("June")

    if (x==7):

        print("July")

    if (x==8):

        print("August")

    if(x==9):

        print("September")

    if(x==10):

        print("October")

    if(x==11):

        print("November")

    if(x==12):

        print("December")

    if(x<1 or x>12):

        print("Wrong Input! Try again")

month = int(input("Enter the month number: "))

month(month)

Explanation:

The above program is written in the PYTHON programming language.

In this program, the user inputs the number of any month, showing the month name in the output. For example,

if user enters 1, month name = JANUARY

if user enters 5, month name = MAY

and if the user enters 13, then output = Wrong Input! try again

#SPJ2

why are pirated software considered a threat?​

Answers

Pirated software are considered a threat because if they are able to infect your PC with a kind of adware, bots and even a ransomware, they can damage your PC.

What are the disadvantages of using pirated software?

The Disadvantages of Pirated software is known to be the likelihood to be infected with a kind of serious computer viruses, that tends to damage the a person's computer system.

Hence, Pirated software are considered a threat because if they are able to infect your PC with a kind of adware, bots and even a ransomware, they can damage your PC.

Learn more about pirated software from

https://brainly.com/question/3615098

#SPJ1

If the conditional expression in a switch statement does not match any of the case values, the _________ statement executes g

Answers

Answer:

Default

Explanation:

in programming, default block executes when there are no matching

What is the new subnet mask in prefix format?

Answers

In the case above, the the new subnet mask in prefix format is seen in IPv6 and in IPv4.

What is subnet prefix mask?

A lot or a single computer that is known to be linked to a subnet is said to shares a kind of an identical part of the IP address.

Note that this shared information is said to be called the  routing prefix, and in IPV4 (Internet Protocol Version 4), the routing prefix is said to be called a subnet mask.

Hence, The the new subnet mask in prefix format is seen in IPv6 and in IPv4 because that is the format that it always comes in.

Learn more about subnet from

https://brainly.com/question/8907973

#SPJ1

NEED HELP ASAP
If you had two proxy servers located in the same room, what use could you make of them?

nothing
create a hub
sell one of the servers
set up a network neutral zone

Answers

If you had two proxy servers located in the same room, what use could you make of them? B. Create a hub

What is a Proxy Server?

A proxy server is a server program used in computer networking that stands between a client requesting a resource and the server supplying that resource.

Every computer or Ethernet-based device linked to a network hub receives data that is broadcast to all of those devices and that's what two proxy servers would be used to do.

Read more proxy servers here:

https://brainly.com/question/28075045
#SPJ1

Javascript is an object-based programming language that involves working with the properties and methods associated with objects.
a) True
b) False

Answers

Answer:

True

Explanation:

You can set variables and make method functions.

You use a custom application that was developed in-house. On a periodic basis, the application writes or modifies several registry entries. You want to monitor these registry keys so that you can create a report that shows their corresponding settings over the next 5 days. What should you do

Answers

In the case above, the right thing that a person should do is to Configure a configuration data collector in the Performance Monitor.

What does a Performance Monitor do?

The Microsoft Windows is known to have a Performance Monitor and this is known to be a tool that  is one where the administrators often use to evaluate how programs functions on their computers influence the computer's performance.

Note that this tool is one that can be used in real time and therefore, In the case above, the right thing that a person should do is to Configure a configuration data collector in the Performance Monitor.

Learn more about custom application from

https://brainly.com/question/1393329

#SPJ1

Mel is a research scientist at a health sciences center. His job requires him to analyze large amounts of data in short periods of time. Select the best computer for me?

Answers

In the case above, Mel needs a  desktop computer with a fast processor.

What is data for a computer?

Computer data is known to be a form of information processed or saved by a computer. This information is saved as text documents, images, audio clips, software programs and others.

Hence due to the volume of work and in In the case above, Mel needs a  desktop computer with a fast processor.

See options below

23

Mel is a research scientist at a health sciences center. His job requires him to analyze large amounts of data in short periods of time.

Select the best computer for Mel.

A handheld tablet computer

A desktop computer with two screens

A desktop computer with a fast processor

A portable laptop computer

Learn more about data  from

https://brainly.com/question/19243813

#SPJ1

On a windows system, which task manager tab would you use to adjust the priority given to a specific program? details performance processes app history services

Answers

On a Windows operating system, the task manager tab which you would use to adjust the priority given to a specific program is: A. details.

What is a software program?

A software program can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task and proffer solutions to a particular problem.

What is an operating system?

An operating system (OS) can be defined as a system software that's usually pre-installed on a computing device by the manufacturers, so as to manage random access memory (RAM), software programs, computer hardware and all user processes.

On a Windows operating system, the details of the task manager tab should be used to adjust the priority given to a specific program.

Read more on software here: brainly.com/question/26324021

#SPJ1

During the maintenance phase of the sdlc, the team must _____ if a system's objectives are not being met

Answers

During the maintenance phase of the sdlc, the team must take the correct action if a system's objectives are not being met

What are the 5 phases of the traditional SDLC Software Development process)?

Software process is the set of activities that constitute the development of a computer system. These activities are grouped into phases, such as: requirements definition, analysis, design, development, testing and deployment.

The main focus of this phase of the SDLC is to ensure that the needs continue to be met and that the system continues to function as per the specification mentioned in the first phase.

See more about SDLC at brainly.com/question/14096725

#SPJ1

_____ is designed to prevent illegal distribution of movies, music, and other digital content?

Answers

A Digital rights management is designed to prevent illegal distribution of movies, music, and other digital content

What is Digital rights management?

Digital rights management (DRM) is the use of technological systems to prevent some users from the use of copyrighted digital materials.

DRM tools are software's that are designed for various website that can help restrict access and to protect the rights of the copyright holder.

It can be used for music, videos and other important programme.

Therefore,  A Digital rights management is designed to prevent illegal distribution of movies, music, and other digital content

Learn more copyright below

https://brainly.com/question/357686

#SPJ1

What are the main advantages of the d-step tuning of 2023 murano’s xtronic cvt®?.

Answers

The main advantages of the d-step tuning of 2023 Murano's xtronic cvt is that:

It gives room for the transmission to quickly change ratios in regards to quick acceleration.When at higher rpm, it help one to stepped acceleration via the use of linear acceleration feel.

What kind of transmission does a Nissan Murano have?

It is known to have a continuously variable automatic transmission (CVT) and it is one whose only engine is said to give about a 3.5-liter V-6 that helps to bring about a lot of power.

Note that the main advantages of the d-step tuning of 2023 Murano's xtronic cvt is that:

It gives room for the transmission to quickly change ratios in regards to quick acceleration.When at higher rpm, it help one to stepped acceleration via the use of linear acceleration feel.

Learn more about cars from

https://brainly.com/question/25749514

#SPJ1

Classes that depend on field names from parent classes are said to be ____ because they are prone to errors.Group of answer choicesrobustinnovativefragileconstructive

Answers

Classes that depend on field names from parent classes are generally said to be fragile because they are very prone to coding errors.

What is a class?

A class can be defined as a user-defined blueprint (prototype) or template that is typically used by software programmers to create objects and define the data types, categories, and methods that should be associated with these objects.

In object-oriented programming (OOP) language, a class that is written or created to implement an interface would most likely implement all of that interface's method declarations without any coding error.

In Computer programming, we can infer and logically conclude that classes that are highly dependent on field names from parent classes are generally said to be fragile because they are very prone to coding errors.

Read more on class here: brainly.com/question/20264183

#SPJ1

What is technology?5points​

Answers

Answer:

Technology refers to the application of the knowledge got from science in a practical way.

Explanation:

For example: 1. Science has made the world a global village hence one travels from one to another by either air plane, ship, car, motor, etc. within a short period of time. Also communication has been made easier due to science. One may communicate with people from different countries in the world through the use of computers, mobile phones, at the comfort of their homes without wasting much time.

On the internet, the entity that looks up a domain name and retrieves information about it is the?

Answers

On the internet, the entity that looks up a domain name and retrieves information about it is the Domain Name System (DNS).

What is a Domain?

This refers to the subset of the internet with access to administrative privileges that contains a common suffix with an organization.

Hence, we can see the Domain Name System (DNS) is the primary entity that is used to retrieve the domain name and the relevant information about the domain and returns it to the user, and then translates IP addresses.

Read more about Domain Name System here:

https://brainly.com/question/19268299

#SPJ1

What component of a change management program includes final testing that the software functions properly

Answers

A component of a change management program which includes final testing that the software functions properly is: C) Release management.

What is SDLC?

SDLC is an acronym for software development life cycle and it can be defined as a strategic methodology that defines the key steps, phases, or stages for the design, development and implementation of high quality software programs (applications).

In Computer science, there are seven (7) phases involved in the development of a software program and these include the following;

PlanningAnalysisDesignDevelopment (coding)TestingDeploymentMaintenance

At the final testing stage, a component of a change management program which ensure that the software functions properly is known as release management.

Read more on software here: brainly.com/question/26324021

#SPJ1

Complete Question:

What component of a change management program includes final testing that the software functions properly?

A) Request management

B) Change management

C) Release management

D) Iteration management

What are examples of lightweight directory access protocol (ldap) directory server software?

Answers

Examples of lightweight directory access protocol (ldap) directory server software are:

Microsoft Active DirectoryOpenLDAP Red Hat Directory Servers

What is a lightweight directory access protocol (ldap)?

A lightweight directory access protocol is an open-source application that helps people to access directory services through an internet protocol platform.

Common examples are the Open LDAP and the Microsoft Active Directory mentioned above.

It facilitates the language that can be used for interaction over the network. The directory information obtained through this protocol is organized and easy to obtain.

Learn more about the LDAP here:

https://brainly.com/question/12972416

#SPJ1

True or false: Nessus is a useful tool when preventing attacks as it identifies vunlerabilities that a hacker may use to penetrate your network.

Answers

FALSE, Nessus does not actively prevent attacks, it is only a tool that checks your computers to find vulnerabilities that hackers could exploit.

What is Nessus?

Nessus is a proprietary vulnerability scanner developed by Tenable, Inc.

What is Nessus used for?

Nessus is a remote security scanning tool, which scans a computer and raises an alert if it discovers any vulnerabilities that malicious hackers could use to gain access to any computer you have connected to a network.

Thus, Nessus does not actively prevent attacks, it is only a tool that checks your computers to find vulnerabilities that hackers could exploit.

As a system administrator you need to check these vulnerability indications and work on solutions to prevent the attack.

The correct answer is FALSE.

Learn more about Nessus here: https://brainly.com/question/5619326

#SPJ1

Which statements are TRUE about web services protocols? (Select TWO responses) SOAP and REST are both web service communication protocols REST allows a greater variety of data formats, whereas SOAP only allows XML SOAP is a protocol that only works with XML and REST only works with JSON RESTful web services and SOAP web services are completely stateful

Answers

The true statements are TRUE about web services protocols are:

SOAP and REST are both web service communication protocols REST allows a greater variety of data formats, whereas SOAP only allows XML SOAP .

Are SOAP and REST both Web service communication protocols?

Yes, SOAP (Simple Object Access Protocol) and REST (Representational State Transfer) are both known to be a kind of web service communication protocols.

Note that REST gives room form a greater scope of data formats, but SOAP only allows XML and as such, The true statements are TRUE about web services protocols are:

SOAP and REST are both web service communication protocols REST allows a greater variety of data formats, whereas SOAP only allows XML SOAP .

Learn more about web services from

https://brainly.com/question/13261383

#SPJ1

Which web 2.0 feature utilizes application programming interfaces (apis) to automate web content and/or processes?

Answers

Software as a service (SaaS) is known to be web 2.0 feature that utilizes application programming interfaces (apis) to automate web content and/or processes.

What is SaaS?

SaaS, or software as a service, is known to be a kind of an on-demand access that is said to be often in a ready-to-use format and it is also a cloud-hosted application software.

Note that Software as a service (SaaS) is known to be web 2.0 feature that utilizes application programming interfaces (apis) to automate web content and/or processes.

Learn more about web 2.0 from

https://brainly.com/question/12105870

#SPJ1

If we increase the sample rate of a device from 48khz to 96khz, what is the impact to the network?

Answers

If we increase the sample rate of a device  then A 96kHz subscription will need about  twice as much bandwidth as that of  48kHz subscription.

What is subscription?

The definition of a subscription is known to be a term that connote a form of an agreement that a person make in advance to get something for a given time period.

Hence, If we increase the sample rate of a device  then A 96kHz subscription will need about  twice as much bandwidth as that of  48kHz subscription.

Learn more about subscription from

https://brainly.com/question/15301858

#SPJ1

To change the formatting of text from calibri to arial, which tool should you use?

Answers

Answer:

The Font Tool

Explanation:

Both Calibri and Arial are default fonts, thus changing from calibri to arial requires the font tool

What are the three advantages of using blockchain technology? multiple choice all of the answer choices are correct. digital trust internet of things integration immutability

Answers

The  three advantages of using blockchain technology are:

digital trust internet of thingsimmutability

What is blockchain technology?

A Blockchain is known to be a kind of a chain of blocks that is made up of information.

Note that the data that are said to be stored inside a block is one that is based on the type of blockchain. Blockchain  is seen as a kind of a shared, form of immutable ledger that quickens the process of putting down or recording transactions and helps in the tracking of assets in a business network.

Hence, The  three advantages of using blockchain technology are:

digital trust internet of thingsimmutability

Learn more about blockchain technology from

https://brainly.com/question/25700270

#SPJ1

How do budget constraints, even for the largest game design companies, affect the development schedule for a game development team? If you were building the budget for a proposed game, where would you allocate the most money? Defend your decision, explaining why this stage of the design to the production process is supported with the largest percentage of budget funds. pls help

Answers

Budget constraints affect the development schedule for a game  as  its includes

Technical bugs or some forms of limitations. A game that has pre-existing Intellectual Property (IP). When there is Limited resources and others

What is  game development?

This is known to be the act of making games. Know that the feature listed above can affect:

The time for the release of the gameLegal issuesFinancial loss and others.

Hence, Budget constraints affect the development schedule for a game  as  its includes

Technical bugs or some forms of limitations. A game that has pre-existing Intellectual Property (IP). When there is Limited resources and others

Learn more about game development from

https://brainly.com/question/24564714

#SPJ1

Other Questions
How long does drug-induced ""happiness"" usually last? A 69-kg base runner begins his slide into second base when he is moving at a speed of 3.2 m/s. The coefficient of friction between his clothes and Earth is 0.70. He slides so that his speed is zero just as he reaches the base.(a) How much mechanical energy is lost due to friction acting on the runner? J(b) How far does he slide? m The data in naturalistic observation studies are primarily ________ in nature. objective subjective quantitative qualitative Which function could be a stretch of the exponential decay function shown on the graph?f(x) = 2(6)xf(x) = One-half(6)xf(x) = 2(one-sixth) Superscript xf(x) = One-half (one-sixth) Superscript x During young adulthood, the heart muscle starts to become __________, but this is not noticeable except during times of __________. Mark recently started a small consulting firm. He is drafting a detailed written statement that describes the nature of the business, the target market, the advantages the business will have over competition, and the resources and qualifications of the owner(s). Mark is writing a(n) WILL MAKE BRAINLIEST!! If m Explain why increasing extracellular k reduces the net diffusion of k out of the neuron through the k leak channels The fact that couples and friends who have no genetic link may behave similarly toward food and assume similar degrees of leanness or fatness shows a(an) _______ link to weight loss and gain. A decrease in bank deposits that is matched by an increase in currency in circulation:_____. as mikayla prepares for her day, she reflects on her career choice as an esthetician. according to the text, her profession is particularly rewarding in that it allows her to help others feel good and make a positive impact on their Shareholders exercise ownership control through the power of their votes. Group of answer choices False True 14.ABC is expected to pay GHS 500 dividend per share next year, and then sell for GHS2, 000 thereafter. If your discount rate is 28%, how much will you pay for a share today? Suppose dividend will increase by 10% per annum and you have a 4-year holding period in mind. How much will you pay, if the price is also expected to increase at 10% pa? (7 Marks)XYZ Dividend Announcement [8 marks]Shareholders of XYZ Company will be smiling all the way to the bank following an announcement of a dividend of 8 pesewas per share to all shareholders in respect of the 2014 financial year.The announcement was made on March 1, 2015 and the dividend is expected to be approved by investors at the company's Annual General Meeting scheduled for March 27, 2015.In this regard, members registered in the books of XYZ at the close of business on March 23, 2015 will qualify for the payment of the final dividend. The ex-dividend date has however been set as Friday, March 20, 2015. The final dividend will be paid on March 30, 2015. XYZ is presently trading at GHS 3.13 per share on the Ghana Stock Exchange.a)Given that the GSE rules provide that all transactions on the floor of the exchange must go through the books of the firm by the close of business on the third working day following the transaction, what is the last date on which to buy the shares in other to receive the dividends announced?b)What is the last day on which to sell your shares if you do not wish to receive these dividends?c)If the equity of XYZ is worth GHS 313 million, how much will Esi receive if she owns 1% of the shares of XYZ?d)What is XYZs dividend yield? What is a topic not found in the florentine codex? Please help meeeeeeeeeeeeeeeeeeeeeeeeeeeee describe the contribution made by Jai Prithvi Bahadur Singh in field of education NMason is creating a design using a straightedge and compass. He wants to construct a segment FG, which is congruent to segment BE in thegiven figure.A. the distance from B to ETo what width should Mason set his compass when constructing segment FG?OB.O C.O D.the distance from D to FThe distance from F to cAthe distance from A to CFAD Radiometric dating allows scientists to figure out the absolute age of an event.A. What is a half-life?B. Which of these four radioactive elements would you choose to date a specimen from the most recent epoch? Which function has the domain as y=2 square root of x 20 POINTS+BRAINLIEST what land does the British Atlantic cover?