Answer:
Include multiple people in the "To" section. picture attached below.
filters cannot perform what action on collected data?
Answer:
am at 50/50
Explanation:
filters cannot be perform to include shopping preferances.
Aurelia is designing a user interface for a new game app. Which of the following should she taken into consideration for the user interface?
A.
how many variables will need to be used
B.
what inputs the game will need to take in from the user
C.
what type of loops will be used
D.
whether an array will need to be used
Answer:
C
Explanation:
what types of loop will be used.
why is computer economics important?
Answer:
Explanation:
Advances in computing power and artificial intelligence will allow economists to test and develop many economic theories which have previously been very difficult to empirically test. In macroeconomics, we often rely on historical data to estimate market responses to recessions and other shocks in the economy since conducting experiments is at best unwieldy, unethical, and often impossible. Building AI which acts kind of human in market conditions and which is capable of adaptive strategies may allow researchers to simulate markets on a macro scale. Attempts have already been made in online video games which have virtual economies.
Write a function float Average(int, int) that finds the mean, and then write a main program that inputs two numbers from the user repeatedly until the user enter “0”. You need to call the function and display the mean of two numbers in the main. C++ language only.
The program illustrates the use of functions.
Functions are used to group related code segments that act as one, when called.
The program in C++ where comments are used to explain each line is as follows:
#include <iostream>
using namespace std;
//This defines the Average function
float Average(int num1, int num2){
//This returns the average of the numbers
return (num1+num2)/2.0;
}
//The main method begins here
int main(){
//This declares the numbers as integer
int num1, num2;
//This gets input for both numbers
cin>>num1; cin>>num2;
//This is repeated until the user enters 0
while(num1!=0 || num2 !=0){
//This calls the average function, and prints the average
cout<<Average(num1,num2)<<'\n';
//This gets input for both numbers, again
cin>>num1; cin>>num2;
}
return 0;
}
Read more about similar programs at:
https://brainly.com/question/17378192
The goal of the ____ memory allocation algorithm is to find the smallest memory block into which a job will fit.
how to stop programs from running at startup windows 10?
Just go into settings, type in startup apps, and it will take you to an area where you can select certain apps to start or not start when you reset / shut down / turn off your computer and turn it back on again.
Which of the following is true regarding computer science careers? There are a limited number of jobs in this field. There are not different job types in this field. The number will increase over the next several years. You must be a programmer to work in this field.
Answer: There are several types of jobs in this field
Explanation: i did the test
The practice of applying technology to address difficult organizational issues is known as computer science. Thus, option D is correct.
What is the carrier in the computer science?Computers and technology have been incorporated into almost every economic sector, industry, and even organization operating in the modern economy, which is why this field is so crucial.
Because it allows me to pursue my two interests in problem-solving and creating engaging experiences, computer science is my field of choice.
I can come up with problems that are unique to a user, create and brainstorm solutions, and then put those ideas into practice through coding.
Computer scientists build, develop, and improve supply chains, content algorithms, and even job application platforms. We are already living in the age of computer science.
As technology grows increasingly pervasive in our lives and the economy, computer science becomes more crucial.
Learn more about computer science here:
https://brainly.com/question/20837448
#SPJ2
Can you give me three examples of agricultural technology, environmental technology, communication technology, biotechnology, manufacturing technology, construction technology, materials technology, energy and power technology, and nanotechnology? Please help, this is due in 30 mins. I will give you 80 points.
Answer:
The following outline is provided as an overview of and topical guide to technology: collection of tools, including machinery, modifications, arrangements and procedures used by humans. Engineering is the discipline that seeks to study and design new technology. Technologies significantly affect human as well as other animal species' ability to control and adapt to their natural environments.
Does anybody have the answer for 2.19.6 checkerboard for codehs??
Answer:
speed(0)
penup()
setposition(-200,-200)
pendown()
def draw_square_row():
color_value = 0
for i in range (10):
if color_value %2 == 0:
begin_fill()
color("red")
for i in range (4):
forward(40)
left(90)
forward(40)
color_value = color_value + 1
end_fill()
elif color_value %2 == 1:
begin_fill()
color("black")
for i in range (4):
forward(40)
left(90)
forward(40)
color_value = color_value + 1
end_fill()
def draw_square_row_2():
color_value = 1
for i in range (10):
if color_value %2 == 0:
begin_fill()
color("red")
for i in range (4):
forward(40)
left(90)
forward(40)
color_value = color_value + 1
end_fill()
elif color_value %2 == 1:
begin_fill()
color("black")
for i in range (4):
forward(40)
left(90)
forward(40)
color_value = color_value + 1
end_fill()
def move_up_a_row():
left(90)
forward(40)
right(90)
backward(400)
for i in range (5):
draw_square_row()
move_up_a_row()
draw_square_row_2()
move_up_a_row()
Explanation:
tell me if you get it right
The ________ command is one of the most commonly used command-line commands. It can be used to check IP connectivity between two network devices.
Answer:
ipconfig
Explanation:
That is the actual
command
This computer is used by touching your finger.
A Desktop
C. Mainframe
B. Laptop
D. Tablet
Answer:
a tablet because it's controlled by the touch of a finger.
write an algorithm to print circumference of a circle
Answer:
1 Start
2 Read the value of radius r of Circle
3. Give Pi = 3.14
4 Calculate area of Circle = Pi x r x r
5. Calculate Circumference of circle
( You can use either C= 2 X Pi X r Or Area (A) = Pi X r X r Circumference (C) = 2 X Pi X r A/r = Pi X r A/r = C/2 So C = 2 x ( A/r ) 5. Print area and Circumference
6. End.
The software which manages environment for running programs handling error controlling devices configuring the computer system and managing the resources of a computer.
Write the technical term of the given question of the picture .
Correct Answer =⟩ Thanks
Best answer =⟩ Brainliest
Random answer =⟩ Reported and deleted
Answer:
D
Application
System software is the set of programs that enables your computers hardware devices and Application software to work together.
Practical computer systems divide software systems into two major classes: System software: Helps run the computer hardware and computer system itself. System software includes operating systems, device drivers, diagnostic tools and more. ... (Some application software is pre-installed on most computer systems.)
Explanation:
Farmer John has recently acquired NN new cows (3≤N≤5×105)(3≤N≤5×105), each of whose breed is either Guernsey or Holstein.The cows are currently standing in a line, and Farmer John wants take a photo of every sequence of three or more consecutive cows. However, he doesn't want to take a photo in which there is exactly one cow whose breed is Guernsey or exactly one cow whose breed is Holstein --- he reckons this singular cow would feel isolated and self-conscious. After taking a photo of every sequence of three or more cows, he throws out all of these so-called "lonely" photos, in which there is exactly one Guernsey or exactly one Holstein.
which camera is interchangeable
freeform
hybrid
DSLR
point and shoot
Answer:
DSLR
Explanation:
Double check my answer
moving images of real event
Answer:
What
Explanation:
Emily is deciding whether to buy the same designer jacket her friends have. The jacket is much more expensive than a similar one from a lesser-known brand. Which questions should she consider before she buys the jacket? Check all that apply. Is advertising influencing her? What are her motivations? Has she compared prices? Is she buying at the right time? Will her sister like the jacket too?
The questions that she should consider before she buys the jacket are:
Is advertising influencing her?What are her motivations?Has she compared prices?Is she buying at the right time?What is buying?The act of buying an item is known to be acquiring a specific possession, or ownership/ rights to the use that thing or services. This can only be done through payment that is mostly based on the use of money :
Note that before getting something, one must consider other things such as prices and the reasons for buying the item before one can go ahead to purchase that thing.
Learn more about buying from
https://brainly.com/question/25745683
Identify the type of software that should be in main memory in order to use the keyboard? *
A. word processing software
B. systems software
C. spreadsheet software
D. applications software
Answer:
Ok so im not completely sure about this but i think its
Systems Software
Explanation:
because word processor is for typing documents and stuff
spreadsheet is for like tracking you money your daily money or something
or some kind of graph for stuff like that (i think)
applications software well your keyboard isn't a application unless its the on screen keyboard
so the only one left is system software
hope it helped :)))) (●'◡'●)
In a computer-controlled greenhouse, a temperature sensor and a window motor are connected to the computer.
If the temperature rises above 23°, the windows are opened.
Draw a flowchart to describe this system.
What changes the size of a video when played?
A
Adobe Flash
B
the player
C
video size
D
the browser
Answer:
D. the browser
Explanation:
it adjusts to the size of your device, including the browser.
hope i helped
What does it mean by does the author create an emotional connection toward the readers?
(Emotional connection reading definition)
Answer:
the author makes an emotional connection between you and the character
Explanation:
short version:you feel the characters emotion
Pls help me pls I’m struggling
Answer:Turn Right () Degrees (block)
The turn right () degrees block is a Motion block and a stack block. The block turns its sprite's direction the specified amount of degrees clockwise.
URGENT!! thank you!!!!!
Answer:
Robots or automatons
Explanation:
Machines that can perform tasks historically performed by humans can improve productivity (they can work non-stop) and of course the environment is safer for workers (work is done by a machine instead) but there is job loss (people who used to do the machine's work are redundant).
Lucy is in charge of creating a user interface for a new app. During what phase of the project should she expect to complete her work?
A.
alongside the development of the app
B.
after the app has been developed
C.
during the testing phase
D.
during the design phase
Answer:
C option
Explanation:
Because in testing phase the game has been developed and test for errors in game.
"schools should use a wireless network instead of a wired network".
discuss this statement.
(6 marks)
hi there!
Answer:
I agree with this statement as wireless networks are better than wired ones especially for a huge structures like a school. in a big you will have to use kilometers of cables to set up a network, whereas you can set up the same network using a few access points and much less cables of course.
hope this helps.
____________________ are protocols used by routers to make path determination choices and to share those choices with other routers.
Answer: Routing protocols
Explanation:
Which of the following describes email nonrepudiation?
A.
the elimination of emails that may contain dangerous viruses
B.
the review of every email sent by the CIA
C.
the use of tracking methods that can identify senders and their locations
D.
the use of encryption methods that ensure senders and their locations cannot be identified
Answer:
I believe the answer is C, im sorry if im wrong
To insert a row, right-click the row below where you want to insert a row and then click on ____ the shortcut menu. A. Columns B. Insert C.Rows D.Cells
Answer:
I think it's insert. (It's the only one that actually makes sense).
Explanation:
Hope that helps. x
In an attempt to reach an all-time record for its premier, ads for the highly anticipated Avengers: Endgame are run on all the major networks and cable stations across the country from 8:00 p.m. to 10:00 p.m., or during ________ time.
Based on the contextual situation, the cable stations across the country from 8:00 p.m. to 10:00 p.m., or during Late-fringe time.
What is Late-Fringe Time?Late Fringe time is a term used in television that describes the television hours that follow the prime time.
Generally, the prime period is usually between 8:00 p.m. to 10:00 p.m., while the Late Fringe time is around 11 p.m. to 1 a.m.
Hence, in this case, it is concluded that the correct answer is "Late-Fringe period."
Learn more about Television hours here: https://brainly.com/question/1006994
How does Python recognize a tuple? You use tuple when you create it, as in "myTuple = tuple(3, 5)". You use brackets around the data values. You use parentheses around the data values. You declare myTuple to be a tuple, as in "myTuple = new tuple"
Answer:
Python recognizes a tuple when you have parenthesis and a comma. You use brackets when you're creating a list.
You cannot declare a tuple in that format. It has to be:
myTuple = (__, __) or something of the like. There are many ways you can do it, just not the way that you have it.
Explanation:
Python class.
Answer: parantheses AND COMMAS
Explanation: