For a computer, it is a minimum system requirement that the video card supports directx 9 graphics with ____________________ 1.0 or higher driver.

Answers

Answer 1

Answer:

With 0.5,0.7,0.9 drivers


Related Questions

what are web site and web page?​

Answers

Answer:

Website: a set of related web pages located under a single domain name, typically produced by a single person or organization

Webpage: a hypertext document on the World Wide Web

Web site

The term “web site” is commonly used to describe a collection of web pages and related content published simultaneously on at least one server and identified by a common domain name. A web site is a collection of many web pages that are linked together under the domain name of the same company.

Web page

Web pages are a type of hypertext document which can be found on the World Wide Web. In a web browser, a user can view a web page that has been delivered by a web server to their computer. It is the name “web page” itself that is a metaphor for the binding of paper pages together to make a book.

Hope this helps :)

Write the function definition for a function called list_total that accepts a list of integers
as a parameter. The function should sum all the numbers in the list and return the total.

Answers

Answer:

def list_total(numbers):

   sum_of_numbers = 0

   for number in numbers:

       sum_of_numbers += number

   return sum_of_numbers

Explanation:

So, to define a function, the syntax is simply:

def functionName(arguments here):

   # code

So to define a function called "list_total" which accepts a list of integers, you write:

"

def list_total(numbers):
   # code

"

any the "numbers" is a parameter, and it's just like any variable, so you can name it anything besides keywords. I just named it "numbers" since it makes sense in this context, you could also write "integers" instead and it would be just as valid, and may be a bit more specific in this case.

Anyways from here, the initial sum should be equal to 0, and from there we add each number in the list to that initial sum. This can be done by initializing a variable to the value "0" and then traversing the list using a for loop. This can be done as such:

"

def list_total(numbers):

   sum_of_numbers = 0

   for number in numbers:

       # code

"

So for each element or integer in the list "numbers" the for lop will run, and the variable "number" will contain the value of the current element it's on.

So we can add the "number" to the sum_of_numbers as such:

sum_of_numbers = sum_of_numbers + number

but there is a shorter way to do this, and it's represented as:

sum_of_numbers += sum_of_numbers

which will do the same exact thing. In fact this works for any mathematical operation for example:

a *= 3

is the same thing as

a = a * 3

and

a /= 3

is the same thing as

a = a / 3

It's the same thing, but it's a much shorter and more readable notation.

Anyways, this code will go in the for loop to almost finish the code

"

def list_total(numbers):

   sum_of_numbers = 0

   for number in numbers:

       sum_of_numbers += number

"

The last thing is to return this value, and this is simply done by using the syntax:

"return {value here}"

and since the sum_of_numbers has the value, we write

"return sum_of_numbers"

at the end of the function, which is very very important, because when you use the return keyword, you end the function, and return whatever value is next to the return to the function call

So to finish the code we just add this last piece to get:

"

def list_total(numbers):

   sum_of_numbers = 0

   for number in numbers:

       sum_of_numbers += number

   return sum_of_numbers

"

What is the output of the
given program if the user
enters 20?
A. A lot of fun
B. some fun
C. no fun
Consider the following
segment:
Scanner
Scanner(System.in);
input
System.out.print("Please
value");
int value =
fun");
}
else
{
input.nextInt();
if (value >= 30 )
{
program
enter
System.out.println("A
lot
new
a
of
5

Answers

if(value_ 30)

Explanation:

es igual 30 espero que te sirva

Even if we reached the state where an AI can behave as a human does, how do we measure if Al is acting like a human? and how can we be sure it can continue to behave that way? We can base the human-likeness of an AI entity with the: Turing Test, the Cognitive Modelling Approach, The Law of Thought Approach, and the Rational Agent Approach. Explain in detail these terms with suitable examples.​

Answers

We as humans can be able to measure if Al is acting like a human via the use of the Turing Test.

What test tells you if an AI can think like a human?

The Turing Test is known to be the tool or the method that is unused in regards to the inquiry in artificial intelligence (AI) for a person to be able to known if or not a computer have the ability of thinking like a human being.

Note that the test is said to be named after Alan Turing, who was known to be the founder of the Turing Test and he was also known to be an English computer scientist, a cryptanalyst, a mathematician and also a theoretical biologist.

Therefore, in regards to the issues with AI, a person or We as humans can be able to measure if Al is acting like a human via the use of the Turing Test.

Learn more about Al  from

https://brainly.com/question/20463001

#SPJ1

Write a program to demonstrate doubly linked list using pointers – insert (beginning, end,
middle), delete(beginning, end, middle),view)

Answers

A program to demonstrate doubly linked list using pointers – insert (beginning, end, middle), delete(beginning, end, middle),view) is:

/* Initialize nodes */

struct node *head;

struct node *one = NULL;

struct node *two = NULL;

struct node *three = NULL;

/* Allocate memory */

one = malloc(sizeof(struct node));

two = malloc(sizeof(struct node));

three = malloc(sizeof(struct node));

/* Assign data values */

one->data = 1;

two->data = 2;

three->data = 3;

/* Connect nodes */

one->next = two;

one->prev = NULL;

two->next = three;

two->prev = one;

three->next = NULL;

three->prev = two;

/* Save address of first node in head */

head = one;

What is a Doubly Linked List?

This refers to the linked data structure that contains of a set of sequentially linked records called nodes.

The requested program is given above.

Read more about doubly linked list here:

https://brainly.com/question/13326183

#SPJ1

Question 4 of 10
Which action takes place in the Define step of the game development cycle?
A. Looking for errors and determining how best to fix them
B. Choosing a color scheme and overall theme for the game
OC. Determining the goals of the game
D. Releasing the game and collecting feedback from users
SUBMIT

Answers

An action which takes place in the Define step of the game development cycle is: C. determining the goals of the game.

What is GDLC?

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

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

DefinePlanningDesignDevelopment (coding)TestingDeploymentMaintenance

In this context, we can infer and logically deduce that determining the goals of the game is an action which takes place in the Define step of the game development cycle.

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

#SPJ1

Which action takes place in the Deploy stop of the game development cycle?

Answer: is D. Releasing the game and collecting feedback from users

Explain the unique reasons why assembly language is preferred to high level language

Answers

The special reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.

Why is assembly language better than other kinds of high level?

It implies means that the programs that one uses to write via the use of high-level languages can be run easily on any processor that is known to be independent of its type.

Note that it is one that has a lot of  better accuracy and an assembly language is one that carries out a lot of better functions than any high-level language, in all.

Note also that the advantages of assembly language over high-level language is in terms of its Performance and accuracy as it is better than high-level language.

Hence, The special reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.

Learn more about assembler language from

brainly.com/question/13171889

#SPJ1

In python please:

Assume the variable definitions references a dictionary. Write an ig statement that determined whether the key ‘marsupial’ exist in the dictionary. If so, delete ‘marsupial’ and it’s associated value. If the key is not the dictionary, display a message indicating so.

Answers

Answer:

"

if 'marsupial' in dictionary:

   del dictionary['marsupial']

else:

   print("The key marsupial is not in the dictionary")

"

Explanation:

So you can use the keyword "in" to check if a certain key exists.

So the following code:

"

if key in object:

   # some code

"

will only run if the value of "key" is a key in the object dictionary.

So using this, we can check if the string "marsupial' exists in the dictionary.

"

if 'marsupial' in dictionary:

   # code

"

Since you never gave the variable name for the variable that references a dictionary, I'm just going to use the variable name "dictionary"

Anyways, to delete a key, there are two methods.

"

del dictionary[key]

dictionary.pop(key)

"

Both will raise the error "KeyError" if the key doesn't exist in the dictionary, although there is method with pop that causes an error to not be raised, but that isn[t necessary in this case, since you're using the if statement to check if it's in the dictionary first.

So I'll just use del dictionary[key] method here

"

if 'marsupial' in dictionary:

   del dictionary['marsupial']

else:

   print("The key marsupial is not in the dictionary")

"

The last part which I just added in the code is just an else statement which will only run if the key 'marsupial' is not in the dictionary.

How serious are the risks to your computer security?
Why is it important to protect a Wi-Fi network? What should you do to protect your Wi-Fi network?

Answers

The seriousness of  the risks to your computer security is not to be a severe one. This is because Computer security risks  are due to the handwork of  malware such as, bad software, that can infect a  computer, and make the hacker to destroy your files, steal your data, or even  have access to your system without one's knowledge or authorization.

What are the risk results for information and computer security?

The term “information security risk” is known to be those  damage that occurs due to  an attacks against IT systems. IT risk is made up of a wide range of potential events, such as data breaches, regulatory enforcement actions, financial costs, and a lot more.

Some Examples of malware are viruses, worms, ransomware, spyware, and a lot others.

Hence, The seriousness of  the risks to your computer security is not to be a severe one. This is because Computer security risks  are due to the handwork of  malware such as, bad software, that can infect a  computer, and make the hacker to destroy your files, steal your data, or even  have access to your system without one's knowledge or authorization.

Learn more about computer security from

https://brainly.com/question/12010892

#SPJ1

Other Questions
Describe how self-fulfilling prophecies, both self-imposed and from others, affect the ways you communicate? Sexual reproduction helps to increase ____ . The advantage of asexual reproduction is ____ .Blank #1 options:A. The number of offspring B. Genetic Variation C. Genetic Mutations Blank #2 options: A. There are no genetic mutations B. Reproduction doesnt require a mate C. Increased genetic variation The combination of price level and real output when aggregate demand equals aggregate supply is known as:________ Explain the elements needed in the nursing assessment of mrs. rogers musculoskeletal system. Of all closed rectangular boxes of volume 64 ft3, what is the smallest surface area? The region of the world that was likely occupied last by early humans was _____________. a. South America. c. Southern Asia. b. North America. d. Northern Asia. Please select the best answer from the choices provided A B C D using the equation 40kj+ 2so3= 2so2+02, of so3=0.491, so2=0.17, 02=0.701, find Keq The text suggests that both employers and job applicants struggle with the hiring process because:____ Which of the following would be an effective counterclaim to for this argument? Censorship on television is an important aspect in todays entertainment. There are somethings that are just inappropriate for younger viewers. It is best that we censor violent and sexual images so that younger viewers do not see them. A. On the other hand, some people believe that TV shows are art, and art should not be censored. But the idea that a TV show is art is just ridiculous. It is insane to try to compare a TV show to a painting.B. To start, violent images can be scary to children. They should be protected from images of blood and death. We do not want to have children trying to recreate these actions.C. Some would say that it should be the parents that decided what their child can and cannot see.D. On the other hand, some people think that all TV is bad. That it would be best if we did not have TVs and spent more time reading and talking to each other. I would not say we need to go that far. What type of reaction is a grignard reaction? What is the critical intermediate (which can be isolated and enables the final product)? Distance between -11 and 4 on a number line? c) Although Ethics means different thi ng to different people, its meaningal ways has some ethical implications. Ethics are standards of right andwrong, good and bad. They are concerned with what one has to do to fulfill ones moral duty. In your opinion, is it good t o practice euthanasia inGhana? _____ research uses statistics to objectively examine relationships, whereas _____ research uses words to understand participants' unique experiences. How do I write the following number in scientific notation? 788,000 The reaction between an alcohol and an anomeric carbon of a carbohydrate forms a _____ bond. A coffee shop blends 2 kinds of coffee, putting in 2 parts of a $0. 33 pound grade to 1 part of a $0. 24 grade. If the mixture is changed to 1 part of the $0. 33 grade to 2 parts of the less expensive grade, how much will the shop save in blending 100 pounds?. Any of the ________ of art can help focus our interest on specific areas of a work of art. A. elements B. tones C. styles D. themes E. periods HeeRead the scenario.Which actions might you take to help Miguel? Check allthat apply.Confront Chris and ask what is going on.Ask Miguel if he is OK, and if you can do anything tohelpReach out to a parent, a teacher, or other trustedadult.Stop being friends with Miguel.Call the National Human Trafficking Hotline. The framers wanted the constitution to last for centuries, and understood that would only happen if the document was:______. Describe the contributions that minorities and women made to the war effort in europe. 15px