Answer:
B. News Sources (broadcast, web, print)
Explanation:
To learn about current events the most ideal sources of reference are News sources, either broadcast, web or print.
For example, if you're seeking breaking news or stories that are developing in the business world, the following sources are News sources you can turn to as sources of reference: CNN Business, Forbes, Bloomberg's Business Week, Fortune and other relevant Business News Media outfits.
Press CTRL+W to save the document.
True
False
Answer:
False.
Explanation:
Pressing CTRL+W will close the current tab or window. To save a document, you can use CTRL+S or go to File > Save.
Answer:
False
Explanation:
Pressing CTRL+W closes the current window or tab in most applications, but it does not save the document.
Which of the following functions of a computer is mostly responsible for turning data into information? A. processing
B. storage
C. output
D. input
70 POINTS PLEASE HELP
Report on one form of being differently abled (deaf, blind, or physically disabled) and discuss three types of adaptive and assistive technology that could help such a person use a computer. Using your own words and complete sentences, describe each type of adaptive and assistive technology in one paragraph each.
Identify and use the correct terminology that represents assistive and adaptive technology. Focus on items that will benefit a person who is differently abled.
You also may include the future of assistive technology and what new developments are being studied or that may become available in the near future.
At the bottom of your paper, provide the website addresses where you found your information.
Blind:
If you are blind, then you are different because you can't see what you're doing. Also if you are blind then you can use a brail keyboard to type on a pc or monitor. Or if your trying to go on your phone you can use a screen reader which is a text-to-imange thing. Or, if you're trying to read something you can use audiobooks that someone reads for you at any time.
Deaf:
If you are deaf then you can use a hearing aid that improves your hearing. You can also use infrared systems which make infrared light transmit sound. Another thing you can use is the Audio induction loop system which makes broadcasts room audio via an electromagnetic field created by a concealed wire running along the perimeter of the room.
Physically Disabled:
( you can still do anything a man can do on a pc what the freak am I supposed to say here )
( this one you have to do yourself sorry mate )
The address is from brainly from a random dude.
which is true about artificial intelligence? a) can think b) act as body c) act as brain d) can learn.
Answer:
c). act as brain.
Explanation:
brain thinks and learns, so it covers a and d
\(.\)
What's the full meaning of BASIC in high level programming
Answer:
BASIC (Beginners' All-purpose Symbolic Instruction Code) is a family of general-purpose, high-level programming languages designed for ease of use.
why might you want to clear cookies from your computer from time to time?
Answer:
Although small, cookies do occupy space on your computer. If there are enough of them stored over a long period of time, they could slow down the speed of your computer and other devices. Flagged, suspicious cookies. If your antivirus software flags suspicious cookies, you should delete them
Question 19 of 2
Which of the following reasons for writing a formal business document would
lead you to write a proposal?
O A. To summarize what happened during a meeting
B. To tell your manager a project is on budget and on schedule
C. To describe what tasks you completed during the week
D. To convince your manager to use a new meeting organization tool
Answer:
D. To convince your manager to use a new meeting organization tool
Explanation:
a proposal is a plan or suggestion, especially a formal or written one, put forward for consideration or discussion by others: and D. is the only answer that is asking or proposing something.
d) Declare an array list and assign objects from the array in (a) that have more than or equal to 4000 votes per candidate to it.
An example of how you can declare an ArrayList and assign objects from an array that have more than or equal to 4000 votes per candidate is given in the image attached?
What is the ArrayListIn this particular instance, one has introduce and establish a Candidate category that embodies every individual who is running for election, comprising their respective titles and total number of votes they receive.
One need to go through each element in the candidates array, assess whether their vote count meets or exceeds 4000, and include them in the highVoteCandidates ArrayList. In conclusion, we output the candidates with the most votes contained in the ArrayList.
Learn more about ArrayList from
https://brainly.com/question/24275089
#SPJ1
Write function maxInput() to return the greatest integer that input from keyboard (scanf inside your maxInput() function) and end when 0 was inputted.
Answer:
#include <stdio.h>
int maxInput(){
int max;
int n, i;
max=-100;
n=-10;
i=0;
while(1){
scanf("%d",&n);
if(max<=n && n!=0){
max =n;
}
if (n==0){
break;
}
i++;
}
if (i!=0){
return max;
}
else{
return 0;
}
}
Explanation:
9.3 Code Practice
answer :
import random
numbers = []
for r in range(4):
numbers.append([])
print(numbers)
for r in range(len(numbers)):
for c in range(5):
numbers[r].append(random.randint(-100, 100))
print(numbers)
for r in range(len(numbers)):
for c in range(len(numbers[r])):
print(numbers[r][c], end=" ")
print("")
This is a block of Python code designed to form and exhibit a 4x5 matrix composed of random, integer numbers between -100 and +100. Subsequently, the contents are printed for display purposes.
Here's an explanation of what each part in this piece can do;By importing the "random" module within Python, we can access the capacity of creating arbitrary values using import random.
Using ‘[]’ creates an empty group designated as ‘numbers’.
The following loop appends an additional void list item called “r” which counts up according to range(4). This results in four distinct blank rows hence building the basis of our forthcoming matrix structure.
Another loop follows that inserts five random integers amid the blanks in every separate row, generating a unique batch of numerals on each run-through.
Lastly, the console presents the strings of consigned integers such as they show across opposite columns, with adequate spacing so that one might easily distinguish them all.
Thus, it generates a preset arrangement or grid bearing unique values configured a certain number of times to construct a numbered overview which promptly displays once processing has been completed.
This code generates a 4x5 matrix of random integer numbers and prints them to the console.
Read more about programs here:
https://brainly.com/question/1538272
#SPJ1
in Coral Statistics are often calculated with varying amounts of input data. Write a program that takes any number of non-negative integers as input, and outputs the average and max. A negative integer ends the input and is not included in the statistics. Ex: When the input is: 15 20 0 5 -1 the output is: 10 20 Assume that at least one non-negative integer is input.
The program that describes using any number of non-negative integers as input, and outputs the average and max is; As written below
How to Solve Programming Problems?#include <bits/stdc++.h>
#include<vector>
using namespace std;
/*
Statistics are often calculated with varying amounts of input data.
Write a program that takes any number of non-negative integers as input, and outputs the max and average.
A negative integer ends the input and is not included in the statistics.
Assume the input contains at least one non-negative integer.
Output each floating-point value with two digits after the decimal point,
which can be achieved by executing cout << fixed << setprecision(2); once before all other cout statements.
*/
int main()
{
float c=0,temp=0,Max=0,Avg=0;
c=0;
cout<<"\n\eEnter Values separated by space: ";
while(temp>=0)
{
cin>>temp;
if(temp>=0)
{
Avg = Avg + temp;
if(Max<=temp) Max = temp;
c++;
}
}
Avg = Avg/c;
cout<<"\n\tMax. Value = "<<fixed<<setprecision(2)<<Max;
cout<<"\n\tAverage = "<<fixed<<setprecision(2)<<Avg;
return(0);
}
Read more about Programming at; https://brainly.com/question/23275071
#SPJ1
A program that takes any number of non-negative integers as input, and outputs the average and max is import java. util.Scanner;
What is input data?Any statistics this is furnished to a pc or a software program application is referred to as enter. Since the statistics furnished is likewise taken into consideration to be information, the method of supplying statistics to the pc is likewise referred to as information enter. The enter allows the pc to do what's designed to do and convey an output.
import java.util.Scanner; public elegance LabProgram } while (num >= 0); avg = total/(count-1);System.out.println(avg + " " + max): }Read more about the Coral Statistics:
https://brainly.com/question/24796463
#SPJ1
Su now wants to highlight several inventors in her presentation, so she decides to use the underline color option.
Which tab should su use?
Which command group should she navigate to?
What does she click in the command group to open the Font dialog box?
Under which heading would the underline color menu be found?
Answer:
1) Home
2) Font
3) the arrow at the bottom right
4) All Text
Explanation:
Answer:
1. home
2. font
3. the arrow at the bottom right
4. all text
Explanation:
Write a program that inputs the length of two of pieces of wood in yards and feet (as whole numbers) and prints the total.
IN PYTHON ONLY
Answer:
yards = int(input("Enter the Yards: "))
feet = int(input("Enter the Feet: "))
yards2 = int(input("Enter the Yards: "))
feet2 = int(input("Enter the Feet: "))
totalYards = yards + yards2
totalFeet = feet + feet2
if totalFeet >= 3:
totalYards += 1
totalFeet -= 3
print("Yards:", totalYards, "Feet:", totalFeet)
else:
print("Yards:", totalYards, "Feet:", totalFeet)
which statements did both aristotle and ptomlemy assume? select two options
Both Aristotle and Ptolemy considered that each planet is bound to a single sphere, but geometers and astronomers might use a number of such spheres to create the observed planet movements.
Who is Ptolemy?Claudius Ptolemy was a Roman mathematician, astronomer, astrologer, geographer, and music theorist who produced many scientific treatises, three of which were influential in Byzantine, Islamic, and Western European science.
Ptolemy centered his geocentric model on the Earth. Ptolemy assumed the universe was a system of nested spheres around the Earth based on the facts he had. He thought that the Moon was nearest to the Earth, followed by Mercury, Venus, and finally the Sun.
Learn more about Ptolemy:
https://brainly.com/question/15075606
#SPJ1
Use the drop-down menus to complete the statements about the recall option in Outlook 2016.
Recalling a message stops its delivery before the recipient
it.
It only works about half the time, and it only works when recipients are in the same
.
Once it is recalled, the
will get a message informing them of the recalled message.
Be sure to check your message before you send it, and assume it will be read within 30
of sending the message.
Answer:
Recalling a message stops its delivery before the recipient
opens it.
It only works about half the time, and it only works when recipients are in the same organization
.
Once it is recalled, the recipient will get a message informing them of the recalled message.
Be sure to check your message before you send it, and assume it will be read within 30 seconds of sending the message.
Explanation:
What other new jobs could be created to help address the reality of climate change?
The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.What exactly is climate change?The term climate change is known to be a Long-term changes in temperature and weather patterns are referred to as climate change. These changes could be caused by natural processes, such oscillations in the solar cycle.
Note that human activities are known to be primarily the combustion of fossil fuels like coal, oil, and others are those that have been the primary cause of climate change.
Therefore, The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.Learn more about climate change from
https://brainly.com/question/1789619
#SPJ1
Do you think Mortal Combat is cool?
Answer:
yes
Explanation:
Answer:
yes
Explanation:
A language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved. What is the severity of this bug?
If a language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved, the severity of this bug will be: Minor.
What is a minor bug?A minor bug is one that affects the system in some way although it does not totally stop the system from functioning.
In the description above, the learning app does not provide an option for saving progress manually but it can be seen that the progress is automatically saved, this poses no real challenge so, the bug's severity is minor.
Learn more about computer bugs here:
https://brainly.com/question/14371767
#SPJ1
Transmissions in wireless networks do not allow for collision detection but try to avoid collision. Briefly describe this process and explain why it is termed as unreliable.
Transmissions in wireless networks do not allow for collision detection but try to avoid collision and also It is especially crucial for wireless networks since wireless transmitters desensing (turning off) their receivers during packet transmission prevents the option of collision detection using CSMA/CD.
What are the different types of wireless transmission?Wireless transceivers are unable to send and receive on the same channel simultaneously, hence they are unable to identify collisions. This is because the send power (which is typically around 100mw) and the receive sensitivity have such a huge disparity (commonly around 0.01 to 0.0001mw).
Therefore, Infrared, broadcast radio, cellular radio, microwaves, as well as communications satellites are examples of wireless transmission media that are used in communications. Infrared (IR), which is a wireless transmission medium that uses infrared light waves to transmit signals, was covered previously in the chapter.
Learn more about collision detection from
https://brainly.com/question/14775265
#SPJ1
Observe ,which plunger exerts(produces) more force to move the object between plunger B filled with air and plunger B filled with water?
The plunger filled with water will exert more force to move an object compared to the plunger filled with air.
What is a plunger?Plunger, force cup, plumber's friend, or plumber's helper are all names for the tool used to unclog pipes and drains. It is composed of a stick (shaft) that is often constructed of wood or plastic and a rubber suction cup.
It should be noted that because water is denser than air, meaning it has a higher mass per unit volume. When the plunger is filled with water, it will have a greater overall mass and will thus be able to transfer more force to the object it is trying to move.
Learn more about water on:
https://brainly.com/question/1313076
#SPJ1
Take two equal syringes, join them with plastic tube and fill them with water as illustrated in the figure
Push the plunger of syringe A (input) and observe the movement of plunger B (output).
(a)
Which plunger moves immediately when pressing plunger A, between plunger B filled with air and plunger B filled with water?
Renata needs a new computer and decides to use multiple sources to gather information
before she makes a purchase decision. Which sources might provide her with valuable
information? How might some sources deliberately provide misleading information?
Explain your reasoning.
One of the sources that will help Renata to make good purchase decision is by doing an online survey of reviews form varous online stores. One possible source that may be misleading is blogs. This is because, sometimes bloggers and vloggers are paid to promote certain items.
What is a purchase decision?The mental process that leads a customer from detecting a need to generating possibilities and selecting a specific product and brand is referred to as a purchase decision. Some expenditures are simple, such as buying toothpaste, while others are big, such as purchasing a home.
The three essential steps of internet purchasing behavior are research, comparison, and purchase.
Learn more about purchase decision:
https://brainly.com/question/31862683
#SPJ1
Project 12-2: Bird Counter
Help me make a Python program for birdwatchers that stores a list of birds along with a count of the
number of times each bird has been spotted.
Console
Bird Counter program
Enter 'x' to exit
Enter name of bird: red-tailed hawk
Enter name of bird: killdeer
Enter name of bird: snowy plover
Enter name of bird: western gull
Enter name of bird: killdeer
Enter name of bird: western gull
Enter name of bird: x
Name Count
=============== ===============
Killdeer 2
Red-Tailed Hawk 1
Snowy Plover 1
Western Gull 2
Specifications
Use a dictionary to store the list of sighted birds and the count of the number of times
each bird was sighted.
Use the pickle module to read the dictionary from a file when the program starts and
to write the dictionary to a file when the program ends. That way, the data that's
entered by the user isn't lost.
The program based on the information given is illustrated below.
How to illustrate the program?It should be noted that a computer program is a set of instructions in a programming language for the computer to execute.
Based on the information, the program is illustrated thus:
Code:
import pickle
#function to read birds data
def readBirdsData():
try:
birdsFile = open("birdsData","rb")
birdWatcher = pickle.load(birdsFile)
birdsFile.close()
birdWatcher ={}
except EOFError:
birdWatcher ={}
return birdWatcher
#function to write the data into file using pickle
def writeBirdsData(birdWatcher):
if birdWatcher == {} :
return
sorted(birdWatcher)
birdsFile = open("birdsData","ab")
pickle.dump(birdWatcher,birdsFile)
birdsFile.close()
#function to display birds data in sorted order
def displayBirdsData(birdWatcher):
print("Name\t\tCount")
print("========\t===========")
for key in sorted(birdWatcher.keys()):
print("{}\t\t{}".format(key,birdWatcher[key]))
#main function
def main():
birdWatcher = readBirdsData()
print("Bird Counter Program")
print ("\nEnter 'x' to exit\n")
name = input("Enter name of bird: ")
while True:
#break the loop if x is entered
if name == 'x':
#if the name exists in dictionary then increase the value
if the name in birdWatcher.keys():
birdWatcher[name] = birdWatcher[name] + 1
else:
#dd it otherwise
birdWatcher[name] = 1
name = input("Enter name of bird: ")
displayBirdsData(birdWatcher)
writeBirdsData(birdWatcher)
#driver code
if __nam__ == '__main__':
main()
Learn more about programs on:
https://brainly.com/question/26642771
#SPJ1
name the steps to turn on a computer properly
Answer:
Check that the computer is connected to power, and is powered on.
Make sure that your keyboard and mouse are plugged in.
Check that the monitor (screen) is plugged into the computer using its display cable.
Ensure that the monitor is connected to power and is turned on.
Explanation:
Which should ALWAYS be considered when making rational decisions ? A) the real dollar amounts of the items B) whether to use fiscal or monetary policy how many opportunity costs there are D ) marginal benefits and marginal costs?
Answer: how many opportunity costs there are
Explanation: if i don’t do this , what will i be missing out on? am i missing this great opportunity for something unnecessary?
The one that is considered when making rational decisions is how many opportunity costs there are. The correct option is C.
What are rational decisions?Rational decisions are quantitative decisions that are taking by looking all the odd and right things. It follows a precise process that makes use of logic and objective knowledge.
It entails recognizing the issue that has to be resolved, collecting data, locating options and outcomes, analyzing them, taking into account all the connections, and making a decision.
Here, in the options, the best example of rational decision is looking for the opportunity costs. Using the best use of given opportunity is the good always decision.
Thus, the correct option is C. how many opportunity costs there are.
To learn more about rational decisions, refer to the below link:
https://brainly.com/question/15264126
#SPJ2
agree on a suitable project for the programming python language you have learnt or you may develop your own ideas.
You are required to:
• Identify a problem which can be solved using object-oriented programming.
• Create a flowchart to illustrate the problem and solution.
• Create a defined user requirements document.
• Produce a software development plan from a system design.
• Develop and deploy a software solution to solve the problem.
• Evaluate the software against business and user requirements
Explanation:
Problem: Library Management System
Object-Oriented Programming can be used to create a Library Management System. The system can help librarians to keep track of books, manage the library’s collection, and provide users with an easy way to search for and borrow books.
Flowchart:
Login
Manage books
Add new book
Edit book details
Remove book
Search book
View all books
Manage members
Add new member
Edit member details
Remove member
Search member
View all members
Borrow book
Search book
Check book availability
Issue book
Return book
Search book
Check book status
Accept returned book
Logout
User Requirements:
The system should be easy to use for librarians and members.
The system should allow librarians to add, edit, and remove books and members.
The system should allow librarians to search for books and members by various criteria.
The system should provide members with an easy way to search for and borrow books.
The system should keep track of book availability and due dates.
The system should generate reports on book usage and member activity.
Software Development Plan:
Gather requirements and define scope
Design the system architecture
Implement the system using Python's object-oriented programming features
Test the system
Deploy the system on the library's servers
Train librarians and users on how to use the system
Software Solution:
The Library Management System will consist of several classes:
Book: Stores book details such as title, author, ISBN, etc.
Member: Stores member details such as name, contact information, etc.
Library: Manages the library's collection of books and members.
Borrowing: Manages the borrowing and returning of books.
Evaluation:
The software solution will be evaluated against the user requirements to ensure that it meets the needs of the library and its users. The system will also be evaluated based on its performance, security, and ease of use. Any issues will be addressed and resolved before final deployment
With whom does the success of information processing in the firm lie with?
Answer:
depends
Explanation:
it lies with the entire firm and its ability to utilize or process the information in the most efficient way.
Edit the following statement so it uses the constant named YEAR:
newAge = currentAge + (2050 − currentYear);
Using the knowledge in computational language in C++ it is possible to write a code that will calculate the age of someone through the difference of years.
Writing code in C++ has:#include <iostream>
using namespace std;
int main()
{
//Declare variables
int myCurrentAge=29;
int myNewAge;
const int YEAR = 2050; //Declare constant YEAR=2050
int currentYear=2014;
myNewAge=myCurrentAge+(YEAR-currentYear); //calculate new age
cout<<"My Current Age is "<<myCurrentAge<<endl;
cout<<"I will be "<<myNewAge<<" in "<<YEAR<<"."<<endl; //display values on console
return 0;
}
See more about C++ at brainly.com/question/19705654
#SPJ1
The postmortem lesson learned step is the last in the incident response process. Why is the most important step in the process?
The most important step in the process of the learned step that came last in the incident response process is to know how this threat happened and how to prevent it in the future.
What is Post-Mortem?This refers to the medical examination of a dead body, to determine the cause of death and other possible factors that can also help to solve a murder.
Hence, we can see that from the complete text, there was a learning process that was used to teach the incident response process and this was done to help in threat prevention.
Read more about post-mortem here:
https://brainly.com/question/21123962
#SPJ1
Write and test a program that computes the area of a circle. This program should request a number representing a radius as input from the user. It should use the formula 3.14*radius**2 to compute the area and then output this result suitably labeled. Include screen shot of code.
A program that computes the area of a circle is given below:
#include <stdio.h>
int main(void)
{
float radius, area;
printf("Enter radius of circle: ");
scanf("%f", &radius);
area = 3.14 * radius * radius;
printf("The area of the circle is: %.2f\n", area);
return 0;
}
What is program?A program is a set of instructions that tells a computer what to do. It is a set of commands that are written in a specific language or syntax, so that the computer can understand and execute them. Programs can range from a few simple commands to a complex system with millions of lines of code. Programs are written for a variety of purposes, including data processing, controlling hardware and software, developing websites, and more. Programs can also be used to create applications, games, and even artificial intelligence.
To learn more about program
https://brainly.com/question/30130277
#SPJ1
If a cell displaying #DIV/0! Contains the formula =C2/D9, what must be the value of cell D9?
Heya! The value of Cell D9 must have a 0. Have a good day!