Answer:
A GPU would be needed for graphic capabilities
Lots of RAM would be needed for streaming
CPU would be essential to graphic and streaming capabilities
Cooling is essential to a good experience for graphic and streaming
Hope this helped, brainliest appreciated :)
I WILL GIVE BRAINIEST ANSWER AND THANKS IF YOU ANDWER THIS QUESTION!!!!
Which of The 9 Elements of Digital Citizenship do you feel is most important and why?
Answer in paragraph pls
tractor in reverse brainliest answer
Answer:
Valtra
Explanation:
It is the only tractor that goes in reverse.
Thank you so much!
Have a good day
Hope this helped,
Kavitha Banarjee
Free 35 points!!!
I'm attempting to create a game on Khan Academy using the computer coding courses, but I can't find how to program a moving background or enemies, can someone please give me pointers/suggestions?
P.S. I'm trying to make a Galaga-like game (2-Dimensional) , and it has to be in JavaScript Processing code.
Answer:
free points?? why does it have question then
Explanation:
Answer:
Well I dont use Khan Academy sorry
Explanation:
HTTP is made to facilitate which kind of communication?
computer to computer
IT Support to User
computer to user
user to computer
Answer:
Computer to computer.
Explanation:
HTTP facilitates the connection between websites, so the answer is computer to computer.
I'm not sure how to do these. By the way, it has to be python.
Task 1:
float75 = float(75)
string75 = "75"
# you cannot add together a number and a string because a string has no inherent numerical value like a number does.
Task 2:
num = float(input("Enter a number"))
print(num**2)
Task 3:
num = int(input("Enter an integer: "))
print("When you divide "+str(num)+" by 7, the quotient is "+str(num//7)+" and the remainder is "+str(num%7)+".")
Task 4:
gigs = int(input("How many gigabytes does your flashdrive hold? "))
print("A flashdrive with "+str(gigs)+ " gigabyte(s) holds "+str(gigs*8589934592)+" bit(s).")
For task 4, you might have to change the number 8589934592 to something else. I'm not entirely sure how many bits are in a gigabyte. I hope this helps though.
Do all careers or professions need computer science? Why or why not?
Answer:
Most careers or professions need computer science
Explanation:
As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.
Answer:
No not all careers and professions require computer science
Explanation:
There are so many careers, many in which you may not sit in front of a computer. If you become a farmer, janitor, teacher or more you may not need computer science skills.
what term refers to a company that invests in other companies on behalf of its investors
a. a mutual fund
b. a security
c.an investment bank
d.a stock exchange
Note that the term that refers to a company that invests in other companies on behalf of its investors is called "A mutual Fund" (option A).
What is a mutual fund?A mutual fund is a type of financial instrument that combines money from several participants in order to buy assets. A mutual fund's securities might comprise stocks, bonds, and other assets. The performance of the underlying securities in a mutual fund determines its value.
A professional fund manager manages a mutual fund and makes investment choices on behalf of the fund's investors. The fund manager invests the pooled funds in securities that are consistent with the fund's investment goal and strategy. Mutual funds can be actively managed, which means that the fund manager actively picks the securities that will be included in the fund, or passively managed, which means that the fund will track a specified market index.
Learn more about Mutual Fund:
https://brainly.com/question/13247161
#SPJ1
What is the output of the following program?
numA = 1
for count in range(3,5):
numA = numA * count
print(numA)
Output: ____
I don't know if the print statement is indented into the for loop.
If the print statement is indented like this:
numA = 1
for count in range(3,5):
numA = numA * count
print(numA)
The output will be:
3
12
if the print statement is indented like this:
numA = 1
for count in range(3,5):
numA = numA * count
print(numA)
The output will be:
12
I hope this helps!
Based on the scenario above , the output of the following program written is 12.
What is computer output?An output is known to be a kind of data that a computer often brings out.
The loop goes from 3 to 5. therefore, Based on the scenario above , the output of the following program written is 12.
Learn more about output from
https://brainly.com/question/11451813
#SPJ2
Write the code in python to input a number and print the square root. Use the absolute value function to make sure that if the user enters a negative number, the program does not crash.
Answer:
Code in Python :-
num = float(input("Enter any number : "))
ab = abs(num)
sqrt = float(ab ** 0.5)
print(sqrt)
In python:
print(abs(float(input("Enter a number: ")))**0.5)
* 9) Which is a function of an operating system?
Provide user interface
Protect against malware
Edit images
Browse the internet
Answer:
Provide user interface
Explanation:
what is an hard ware ?
Explanation:
tools, machinery, and other durable equipment.
How can you find the square root of 8 using the pow() function
import math
print(math.pow(8, 0.5))
You can find the square root of any number by squaring it by 0.5
Ok so this isn’t really a question that is for school but...
let’s say I have 2 iCloud accounts. One is on my phone and the other is on my old iPad. I want to put my phone iCloud to the iPad but I have some really old pictures on the iPad that I want to save. Can I keep them when I change I cloud? Or should I just keep it like that how it is?
Answer:
u shoud just keep it ;-;
Explanation:
Two girls were born to the same mother, on the same day, at the same time, in the same month and the same year and yet they're not twins. How is that possible?
Answer:
They are not twins but triplets or quadruplets.
Explanation:
4. What is an example of a Trans receiver? *
A. Pager
B. Wi-Fi
C. Telephone
What is the main difference between a fileserver and network attached storage (NAS)?
Group of answer choices
NAS provides more services.
A fileserver is more customizable.
A fileserver is less customizable.
A fileserver is better for smaller companies.
Answer:a filserver is better for smaller companies
Explanation:
Hope this helps :)
Answer:
A fileserver is more customizable
Explanation:
PLEASE HELP!!!
Why are Blackberry phones good?
Which of the following variables are valid? Give reasons for those which
are invalid
Answer:
hope am right...
Explanation:
variables must not not contain any special characters i.e N%
Variables should only begin with a letter of the alphabet or a $ sign
select the correct text in the passage. Which statements indicate inductive reasoning?
1. Tanya is an engineer.
2. She lives with her grandma.
3. All engineers work in the computer application field.
4. So, Tanya also works in a software company.
5. In the evening, she listens to music to relax.
Answer:
i think 4.so tanya also works in a software company.
What game is this?????????????????????
you are splitting up all your apples equally between 3 people. which statement below will calculate how many apples will be left over ?
a. var leftOver = numApples / 3;
b. var leftOver = 3/ numApples;
c. var leftOver = numApples % 3
d. var leftOver = 3% numApples
Answer:
The correct answer is:
c. var leftOver = numApples % 3
Explanation:
JavaScript uses different operators to perform various mathematical functions. In mathematics, when a number is not completely divisible by other the answer contains the remainder and quotient.
Modulus operator is used in JavaScript to find the remainder.
For example,
20/3 will return the quotient which is 6 while
20%3 will return the remainder which is 2
In the given statement, we have to find the number of remaining apples after being divided into three people
So,
Number of apples mod 3 will give us the number of remaining apples.
Hence,
The correct answer is:
c. var leftOver = numApples % 3
In which era was theater the most popular performing art in Europe?
18th century
Renaissance
early 20th century
19th century
define application software
Answer: An application software is a type of software that the user interacts with, while a system software is a type of software that the system interacts with.
Hope this helped you :)
There are many reasons to convert to the decimal numbering system. Select the best answer. When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. When checking words in computer memory, decimal makes sense because you use decimal numbering every day. When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal.
Answer:
first statement makes most sense.
Explanation:
When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. --> sounds OK.
When checking words in computer memory, decimal makes sense because you use decimal numbering every day. --> doesn't make sense
When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. --> Not true
When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal. --> Hexadecimal would be easier when inspecting computer words, because you can easily see the byte alignment of the values.
Answer:
the first statement
Explanation:
got it right on edge
Drag each label to the correct location on the image.
Match the different types of mounting techniques with their definitions.
uses triangular pockets
to hold the corners of a
photograph to the mount
board
uses wet glue to stick
the print to a mount
board
uses a heat-activated
adhesive to permanently
stick the photograph to
a rigid backing board
uses different patterns
of tape to create hinges,
which attach the print to
a mount board
dry mount
photo corners
Answer: uses a heat activated.... the answer is dry mount
Use triangular pockets to hold the corners....the answer is photo corners
Use different patterns of tape.....hinge mount
Uses wet glue to stick the print....wet mount
Explanation: I got this right on a post test
The matchup of the mounting techniques are:
uses a heat activated- dry mountUse triangular pockets to hold the corners- photo corners Use different patterns of tape-h/in/ge mountUses wet glue to stick the print- wet mountWhat is the mounting techniquesMounting could be a handle by which a computer's working framework makes records and registries on a capacity gadget (such as difficult drive, CD-ROM, or organize share) accessible for clients to get to through the computer's record system.
There are diverse sorts of strategies in mounting craftsmanship work, exhibition hall mounting and dry mounting. Gallery mounting is authentic and reversible and dry mounting is authentic (in most cases) and non-reversible.
Read more about mounting techniques here:
https://brainly.com/question/20258766
Which of the following is true of functions?
A: Replacing repeated code with a function will reduce the number of commands the computer needs to run
B: Functions are called once but can be declared many times
C: Programs written with functions run more quickly
D: Functions can help remove repeated code from a program
Answer:
the answer is D
Explanation:
Select the correct answer. Which application is a digital version of a manual typewriter? A. database B. presentation C. spreadsheet D. word processor
Answer:
Word Processor
hope i helped :D
Answer:
(D)- word processor
Explanation:
got it right
Is this statement true or false?
A presentation is always in front of a group of people.
true
false
Answer:
NOPE
Explanation:
sometimes presentations can be for one person only. For instance if you work in a company sometimes you present for your boss only etc.
Hope this helped :)
Answer:
im sure this is false!
Explanation:
which search strategy explores nodes from the initial state as well as the goal state?
a. uniform-cost search
b. breadth-first search
c. depth-first search
d. bidirectional search
Answer:
(D) bidirectional search.
Explanation:
Did the test.
A Von Neumann model for a computer system has a central processing unit (CPU) that makes
use of registers.Identify three registers that may be used
Answer:
1. Calculation unit
2. control unit
3. storage
Explanation: