Answer:
What statmentssssssssss
The general idea of assistive media is described by C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.
We have,
Assistive media refers to various technologies or tools that are specifically developed to assist people with disabilities.
These tools are designed to enhance their ability to access information, communicate effectively, and interact with their environment.
Assistive media can take many forms, such as screen readers for individuals with visual impairments, communication devices for those with speech disabilities, adaptive keyboards or switches for individuals with motor impairments, and more.
The main purpose of assistive media is to level the playing field and provide individuals with disabilities the means to participate fully in various aspects of life, including education, communication, work, and social interactions.
Thus,
The general idea of assistive media is described by C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.
Learn more about assistive media here:
https://brainly.com/question/29891210
#SPJ3
The complete question:
Which of the following best describes the concept of assistive media?
A) A form of social media that helps people connect with friends and family.
B) A type of entertainment media, such as movies or music.
C) Technology or tools designed to aid individuals with disabilities in accessing information and interacting with the world.
D) Media coverage of events and news happening globally.
You want to change your cell phone plan and call the company to discuss options
Digital computers use a........ system to encode date and programs.
Answer:
Digital computers use a binary system to encode date and programs.
For questions 3-6, consider the following two-dimensional array:
undervalue
will
knitting
pretzel
realize
honey
planetary
bandana
iron
employment
effort
fabric
What word is in [0][1] ?
Flag this Question
Question 41 pts
What word is in [1][1] ?
Flag this Question
Question 5
What word is in [3][2] ?
Flag this Question
Question 6
What word is in [2][1] ?
Answer:
3. Will
4. Realize
5. Fabric
6. Bandana
Realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1] . Arrays inside of arrays are what are known as two-dimensional arrays.
What is two-dimensional array?Arrays inside of arrays are what are known as two-dimensional arrays. 2D arrays, which are made up of rows and columns, are constructed as metrics. To create a database that resembles the data structure, 2D arrays are frequently used.
You may store a large amount of data using 2d arrays at once, which can then be supplied to as many different functions as necessary. Two indices are used to refer to the position of the data element in two-dimensional or multi-dimensional arrays. Row and column are the two dimensions indicated by the name. Realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1] .
Therefore, realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1].
To know more about two-dimensional array, here:
https://brainly.com/question/30463245
#SPJ3
Write
algorithm to read 100 numbers
then display the largest.
Answer:
see picture
Explanation:
There is no need to store all the values, you can just keep track of the highest. Up to you to create a numbers file with 100 values.
Let's talk about this cryptocurrency: Vechain (VET)
Answer:
This is gonna be interesting
Writing a function that implements a loop to collect a set amount of data. The function should use the serial object, the recording time, and the iteration (city number) as input arguments and return an N x 2 array with the time in the first column and the recorded light level in the second. (4 pts). Include in this function outputs to the Command Window noting the starting and stopping of the recording.
Write a program that computes the sum of squares for a sequence of positive whole numbers. The program asks the user to enter the starting number. Then it asks the user to enter an ending number. It computes the square for each number from the starting number to the ending number. It also calculates the sum of these squares. It displays the numbers, their squares and the sum of the squares.
Answer:
In Python:
start = int(input("Start: "))
end = int(input("End: "))
total = 0
print("Number\t Squares")
for num in range(start,end+1):
print(num,"\t",num**2)
total+=num**2
print("Total: ",total)
Explanation:
This gets the starting number
start = int(input("Start: "))
This gets the ending number
end = int(input("End: "))
This initializes total to 0
total = 0
This prints the header
print("Number\t Squares")
This iterates through start to end
for num in range(start,end+1):
This prints each number and its square
print(num,"\t",num**2)
This calculates the total squares
total+=num**2
This prints the calculated total
print("Total: ",total)
Why data mining is crucial for the success of a business, explain with examples
Answer:
For businesses, data mining is used to discover patterns and relationships in the data in order to help make better business decisions. Data mining can help spot sales trends, develop smarter marketing campaigns, and accurately predict customer loyalty.
Return the appropriate part of FizzBuzz This is a small part of a classic software engineering interview question. fizz_buzz_check takes a single integer argument, number. Complete the function such that it returns a value using the following rules: If the number is divisible by 3 (i.e division by 3 has a remainder of 0), return the string Fizz. If it is divisible by five, return the string Buzz. If it is divisible by 3 AND 5, return FizzBuzz. Otherwise, just return the original argument back without any changes.
Answer:
The function in Python:
def fizz_buzz_check(num):
if num%3 == 0:
result = "Fizz"
if num%5 == 0:
result = "Buzz"
if num%3 == 0 and num%5 == 0:
result = "FizzBuzz"
if num%3 != 0 and num%5 != 0:
result = num
return result
Explanation:
The function to complete is not given. So, I write a new function from scratch.
This defines the function
def fizz_buzz_check(num):
This checks if num is divisible by 3
if num%3 == 0:
If yes, the returned value is stored as "Fizz"
result = "Fizz"
This checks if num is divisible by 5
if num%5 == 0:
If yes, the returned value is stored as "Buzz"
result = "Buzz"
This checks if num is divisible by 3 and 5
if num%3 == 0 and num%5 == 0:
If yes, the returned value is stored as "FizzBuzz"
result = "FizzBuzz"
This checks if num is not divisible by 3 and by 5
if num%3 != 0 and num%5 != 0:
If yes, the returned value is stored as the initial argument
result = num
This returns the appropriate value
return result
PLZZZ HELP!!!!!!!
Select the correct answer.
Which of these examples best describes unit testing?
A.
The tester finds incorrect functionality on the home page.
B.
The login page does not accept existing user credentials.
C.
There is no database connectivity.
D.
The developer checks the loops in the procedure.
E.
Multiple users slow down the speed of the system.
Answer: A is the correct choice.
The option that is an example that describes unit testing is the developer checks the loops in the procedure.
What is unit testing?This type of test is known to be called unit component. It is regarded as a form of a single function or code of any kind of application.
Conclusively, A good example that tells more about unit testing is the when a developer monitors the loops in the procedure so as to see if there is any error or omissions.
Learn more about unit testing from
https://brainly.com/question/24964187
Jerry purchased 25 dozens of eggs. He used 6 eggs to bake 1 cake. How
many similar cakes can Jerry bake with the number of eggs he purchased?
Answer:
50
Explanation:
He bought 25 dozens of eggs:
25 (12) = 300
He used 6 eggs to make 1 cake, so:
300 eggs/6 eggs per cake = 50 cakes
What keys on the keyboard have the ability to move the cursor around on a window?
No links and files or I report!
Will give Brainliest!
Answer:
Press the Windows key on your keyboard. In the box that appears, type Ease of Access mouse settings and press Enter . In the Mouse Keys section, toggle the switch under Use numeric pad to move mouse around the screen to On. Press Alt + F4 to exit this menu.
NO LINKS
Do you need to pay monthly to stream on Twitch?
NEED HELP ASAP! Which field best organizes street addresses in a database?
A. Name
B. Address
C. Phone
HELPPPPP PLZZZZZZZZZZZZZZZ!!!!!!!!
Select the correct answer.
What type of diagram does the following image depict?
A.
class diagram
B.
deployment diagram
C.
activity diagram
D.
sequence diagram
E.
use case diagram
Answer:
A
Explanation:
My teacher just asked, "What did you learn about coding and how can it help u through life." CAN SOMEONE PLZ ANSWER BC I DONT KNOW.
Answer:
Coding is becoming a big thing in America because more and more jobs are on the computer, because they future is tech.
Explanation:
i dont know something like tht
Select the correct answer.
Who takes care of the final layout of the product that meets the standards set by UX designers?
O A web developer
ОВ.
design director
OC. UX designer
OD. UI designer
Reset
Next
Hi
Answer:
UI designer
Explanation:
PLEASEE HELPP.... QUESTION... how does coding impact your life
Answer: It allows us to do everyday tasks on the internet
Explanation: We wouldn’t be able to email, research, etc without coding!
Draw a data flow diagram that indicates the condition and factors that must be satisfied before a customer request for goods can be granted from a factory
Write a program to display MPH (Miles per Hour). Create a function to calculate the MPH. Ask the user for the number of miles driven and the number of minute it took to drive that many miles. Validate that both the number of miles and the number of minutes is a positive, non-zero number. Pass both the number of miles and the number of minutes to the function, and have the function return the MPH.
Answer:
In Python:
def MPH(miles,minutes):
mph = round(60 * miles/minutes,1)
return mph
miles = float(input("Miles: "))
minutes = float(input("Minutes: "))
if miles>0 and minutes>0:
print("MPH: ",MPH(miles,minutes))
else:
print("Positive inputs only")
Explanation:
This defines the function
def MPH(miles,minutes):
This calculates mph rounded to 1 decimal place
mph = round(60 * miles/minutes,1)
This returns the calculated mph
return mph
The main begins here
This gets input for miles
miles = float(input("Miles: "))
This gets input for minutes
minutes = float(input("Minutes: "))
If miles and minutes are positive
if miles>0 and minutes>0:
This calls the MPH function
print("MPH: ",MPH(miles,minutes))
If otherwise, this prompts the user for positive inputs
else:
print("Positive inputs only")
How can you get feedback on your presentation from someone who is far away?
a Email your PowerPoint notes to the person.
b Explain your topic over the phone.
c Record your presentation and send it to them.
d Send them your PowerPoint slides.
Answer:
C. Record your presentation...
I think this because if you want feedback you would definetly talk and record your presentation so the person can give you a clear response
The ribbon in Excel is a
tab based user interface.
True
False
Answer:
Explanation:
This should help i think it is true just read this first "Like any other application, Excel has a basic workspace called the user interface. ... The Ribbon is the name given to the row of tabs and buttons you see at the top of Excel. The Ribbon's tabs and buttons bring your favorite commands into the open by showing multiple commands grouped in specific categories."
Answer:
True
Explanation:
HELP! WILL GIVE BRANLIESt!
Answer:
36:12, 36/12, 3/1
Explanation:
I’ve never solved a problem like this but mathematically this answer makes sense
Your manager asks you to get details on a computer crash. What Windows Administration Tool could you use?
A. System Information
B. Performance Monitor
C. Windows Memory Diagnostic
D. Event Viewer
E. Log Viewer
The wrong choices can be defined as follows:
In option a, it is wrong because the data warehouse transforms data into information that may be used by an organization's decision-making process.In option b, it is wrong because by using Metrics Collector Groups and logging the data, it was able to display real-time market data as well as collect and store data.In option d, it is wrong because this is a tool used in Windows, which displays detailed information about major events that have taken place on your machine.In option e, it is wrong because messages and trace logs could be viewed and sorted using the Log Viewer.Learn more:
Memory Diagnostic: https://brainly.com/question/13606234
PLZZ HELP!!!
Select the correct answer.
Brian’s team has built a new application based on the client’s requirements. They will deploy this application in multiple locations on the client side. Brian is unsure about the hardware and software specifications at the client side. Which option will help him best solve this issue?
A.
creating multiple test scripts
B.
automating test scripts
C.
creating multiple test plans
D.
creating multiple test environments
E.
communicating with the development team
Answer: Option D creating muiltiple test enviroments
Explanation: I had the same question and I hope this helps ( :
The option that will help Brain best solve this issue is by creating multiple test environments.
What is the specification of software?A software requirements specification (SRS) is known to be a type of requirement that are often written in a document that tells more about what the software can do.
Hence in the above scenario, what will help help Brain best solve this issue is by creating multiple test environments where the client can see a demonstration and be convince in getting the product.
Learn more about application from
https://brainly.com/question/24847617
red + blue =
Red + green =
Magenta - blue =
Yellow - green =
Cyan - blue =
Answer:
red + blue is green
red + green is blue
Mattias's friend asked him to critique his presentation about gorillas. Mattias noticed that there weren't any images of gorillas. What feedback can Mattias give to improve his friend's presentation?
a I like your title, but did you not think to add pictures of gorillas?
b It's ok, but it would be better if I just added pictures to your presentation.
c Really great information, but I think adding a picture of a gorilla would be great.
d You're missing a gorilla picture. Add one.
Answer:
c
Explanation:
Answer:B
Really great information, but I think adding a picture of a gorilla would be great.
Explanation:
Mattias's friend asked him to critique his presentation about gorillas. Mattias noticed that there weren't any images of gorillas. What feedback can Mattias give to improve his friend's presentation?
Group of answer choices
A)You're missing a gorilla picture. Add one.
B)Really great information, but I think adding a picture of a gorilla would be great.
C)I like your title, but did you not think to add pictures of gorillas?
D)It's ok, but it would be better if I just added pictures to your presentation.
Franklin gave a presentation without any help from others. He didn't smile, and he looked at the floor during the presentation. What could Franklin have done to improve his presentation?
a Added more images to his slides to add engagement
b Asked for someone else to do the research for him
c Practiced in front of a trusted adult and asked for feedback
d Read the information right from the slides
Answer:
C. Practiced in front of a trusted adult..
Answer:
Practiced in front of a trusted adult and asked for feedback
Explanation:
The process of using the new
information system and doing away
with the old system is known as
system ___.
Answer:
The process of using the new
information system and doing away
with the old system is known as
system development
PLZ HELP!!!
Select the correct answer.
Emma, the quality control manager in a software development company, asks the testing team to check whether the user interface is friendly. To which type of testing is Emma referring?
A.
usability testing
B.
data comparison
C.
validation testing
D.
stress testing
E.
destruction testing