Answer:
you have to have evidence they do that and on the question theirs no evidence so the answer would be false (as long as theirs no evidence)
Explanation:
Answer:
True
Explanation:
Which of the following algorithms is the same as the flowchart shown below?
Answer:
i believe it’s c
Explanation:
Bryan's company is new and has limited funds to work with. He has been tasked with finding a telecommunications technology that will improve worker productivity on their latest project. So he doesn't go over budget, he must carefully consider all items that affect cost. His considerations include:
Answer:
Download Speed, Operating Costs, & Purchase Price.
Explanation:
He needs it quick and he's on a budget, so he's gonna be worried about these three things that fall under the categories.
You're welcome my fellow seeker.
How is life complicated without electronics
Answer:
life is complicated without electronics
Explanation:
because we wont know the weather or if anything know anything about and we would mostly not know anything
With what finger do you type the letter m
Answer:
Index Finger
Explanation:
Edhesive 8.5 code Practice help me pls
Answer:
twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]
print(twainQuotes)
twainQuotes.sort()
print(twainQuotes)
twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )
print(twainQuotes)
Explanation:
ok
The program is an illustration of lists and list manipulation
ListsLists are variables that are used to hold multiple values in one variable name
Python ProgramThe program in Python, where comments are used to explain each line is as follows:
#This initializes the list
twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]
#This prints the list elements
print(twainQuotes)
#This sorts the list elements
twainQuotes.sort()
#This prints the sorted list
print(twainQuotes)
#This inserts an element into the list
twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )
#This prints the new list
print(twainQuotes)
Read more about lists and list manipulations at:
https://brainly.com/question/24941798
animation affects can be applied on both................ and................ on a slide
Anybody know #11 ? I need two ppl to answer this!!! Free Brainliest!!
Answer:
A because system program will give the operating systems and other platform details
Explanation:
I think its A
Which validation check can be used on the following data. "XX000"
1. Range
2. Limit
3. Format
4. Length
Answer:
Format and Length
Explanation:
If there is a range or limit on the data, you would need to know more about the format.
someone please tell me if you watch drag race (rupauls drag race) I need someone to talk to about it
Explain how the value of 90 is stored in the Java variable, myFinalGrade.
Answer:
As integer
Explanation:
More information is needed to properly answer this question.
However, I will answer this question with the limited information given.
90 will be stored as an integer in the variable.
First, the variable needs to be declared;
int myFinalGrade;
Then the variable is initialized;
myFinalGrade = 90;
Hence, the value is stored as an integer.
Question 6 (2 points)
The recipe for good communication includes these "ingredients":
a.clause, brevity, comments, impact, value
B.clarity, brevity, comments, impact, value
C.clarity, brevity, context, impact, value
D.clause, brevity, context, impact, value
Answer:
C
Explanation:
i think lng hehehehehe
Calculate the value of z. Given v=4, w=5, x=8, y=2z= (v+ w) * x / y;print (“value of z is “, z)
Answer:
value of z is 36.0
Explanation:
Given
[tex]v = 4\\\\w = 5\\\\x = 8\\\\y = 2\\\\z = (v+2)*x/y[/tex]
Required
Print the value of z
To answer this, I will make use of Python and also provide a manual solution:
The program (in python) is as thus:
v = 4
w = 5
x = 8
y = 2
z = (v + w) * x/y
print (“value of z is “, z)
Manually, we have:
z = (v + w) * x/y
z = (4 + 5) * 8/2
Solve the bracket
z = 9 * 8/2
z = 9 *4
z= 36
Either ways, the value of z is 36
What's the smallest part of a computer
A microchip
A byte
A bit
A mouse click
Answer:
A byte
Explanation:
I just had that question on my quiz
Match the following:
Column A
1.
objects that you can actually touch such as disks, disk drives, keyboards, printers, etc.
2.
the connector that allows you to connect universal serial bus enabled devices to your computer
3.
digital still image camera that uses single-lens reflex mechanisms
4.
software that lets you change the size of an image, adjust the brightness, contrast, color, sharpness, etc. of the image
5.
a data storage device that includes flash memory
Column B
a.hardware
b.image processing/editing
c.flash drive
d.Digital Single Lens Reflex (DSLR)
e.USB port
Answer:
1. hardware
2. USB
3. DSLR
4. Image processing
5.Flash Drive
Explanation:
I checked with my dad who works in IT so they're correct :)
What is the output for the following code?
print (5*4+5)
Answer:
It will just print 5*4+5 .
But you still need to add " ".
All _______ that store more than one piece of data
Answer:All data structure that store more than one piece of data
.
Explanation:
What is the purpose of the Revisions pane in a presentation?
to make suggestions for improvement
to organize and rename groups of slides
to leave comments on slides for other users
to delete all the slides in a presentation at once
Answer:
to make suggestions for improvement
HELP ME ASAP AND YIU GET THE POINTS
Use the drop-down menus to complete statements about multiple calendar options in Outlook.
The default multiple calendar view is
Overlay view will color-code multiple dates in
Calendar
include multiple users' calendars as a team
Answer:
The default multiple calendar view is
✔ side-by-side
.
Overlay view will color-code multiple dates in
✔ one view
.
Calendar
✔ groups
include multiple users’ calendars as a team.
Explanation:
Answer:
The default multiple calendar view is
✔ side-by-side
.
Overlay view will color-code multiple dates in
✔ one view
.
Calendar
✔ groups
Explanation:
Which type of error is caused by the following code? >>> 3 / 0
Answer:
ZeroDivisionError
Explanation:
definition on Edge: "As you probably can guess, this occurs when you try to divide by zero."
Write a program using for loop to find the cube of numbers from 50-100
FASTT
Answer:
JAVA
for(int i = 50; i <= 100 i++;)
{
int cubedNum = Math.pow(i, 4);
System.out.println(cubedNum);
}
Explanation:
The For loop is set so that it will go the amount of times until the variable i reaches 100, then it will stop increasing i.
Then, we raise i to the 4th power in the loop, and then print it out.
#teamtrees #PAW (Plant And Water)
ANSWER ASAP!!!!!!
Harriet is an appointed official who works at the federal level. She is the head of an executive department. She advises the US President on important matters related to her department. Which group or organization does Harriet belong to?
A.
House of Representatives
B.
Senate
C.
Drug Enforcement Administration (DEA)
D.
Supreme Court
E.
Cabinet
In honor of Black History Month, write an essay about a black person who has inspired YOU in some way. This person does not have to be famous, it can be a coach, a pastor, or family friend. This essay must be 10 sentences or more.
Answer:
I will be talking about Jackie Robinson. Robinson was known for playing baseball with the Brooklyn Dodgers from 1947 to 1956, I will share a few of his other accomplishment.
In 1935, Robinson graduated from Washington Junior High School and enrolled at John Muir High School Recognizing his athletic talents, Robinson's older brothers Mack (himself, an accomplished athlete and silver medalist, at the 1936 Summer Olympics) and Frank inspired Jackie to pursue his interest in sports.
At Muir high school , Robinson played several sports , football, basketball, track, baseball and tennis. He played shortstop and catcher on the baseball team, quarterback on the football team, and guard on the basketball team. With the track and field squad, he won awards for the broad jump.
In 1936, Robinson won the junior boys singles championship at the annual Pacific Coast Negro Tennis Tournament.
He earned a place on the annual baseball tournament all-star team,
In late January 1937, the News newspaper reported that Robinson "for two years had been the outstanding athlete at John Muir, starring in football, basketball, track, baseball and tennis.
As Jackie was encouraged to move forward by his brothers Mack and Frank. Today, his accomplishments inspires me to keep moving forward.
Explanation:
Select the correct answer from each drop-down menu. Which are the features of conditional formatting? Conditional formatting enables you to and .
Text,Audio and graphic is entered into the computer using
a)A cpu
b)Output
C)Input
ICT Question asap pls help
Answer:
I think it's input, not sure tho
in an advertisement is made of a wireless keyboard and a mouse.Name two commonly used methods of connecting devices wirelessly
Answer:
Wireless LAN
Wireless MAN
Explanation:
I use these methods to connect my wireless devices all of the time and most of my friends do it as well so I am pretty sure it is a commonly used method.
Dan is working with a team that is integrating an application with a database system. Which of these statements are true with regard to database systems?
The testing phase of the SDLC creates databases.
Selection of a DBMS occurs during the designing phase of the SDLC.
Database development also has a life cycle, with phases similar to those of the SDLC.
All compilers intrinsically support database creation.
Databases use query language to perform operations.
Answer:
Database development also has a life cycle, with phases similar to those of the SDLC.
Databases use query language to perform operations.
Explanation:
PLATO :) no prob btw
The___
button is present in the Records group on the Home tab.
Answer:
Access Ribbon
Explanation:
Answer:
Access ribbon.
Pls mark it as brainlist.
A group of users in a small publishing office want to share large image files in a common folder with high availability. Which of the following devices would best meet this need?
Networked storage appliance
An SSD for each computer
Large USB flash drive to move the files between computers
Portable external HDD for each user
Answer:
Network storage appliances
Explanation:
Because I just took a test
Which of the following devices can be connected to a network? Check all of the boxes that apply.
printers
smartphones
typewriters
laptops
pencils
tablet computers
Answer:
1, 2, 4, 6
Explanation:
Digital and analog audio recordings have pros and cons. Do you think the pros of digital recordings outweigh the cons and therefore prefer digital audio recordings? Or, do you think the cons outweigh the pros and therefore you prefer analog audio recordings? Explain.
Digital vs Analog Audio is completely personal preference and there is no clear winner on which is better.
But there are some pros and cons about both, Analog sometimes distorts when playing and can be easily scratched and ruins the grooves. Analog is believed to be the true representation of the sound when it was recorded. Digital is not the actual recording of the sound, it's actually a combination of binary code. It is also sometimes mixed or remastered in Digital and sounds a bit different to make it sound better. It also depends on the system you are listening it from. You could have a horrible Digital system its playing through and an amazing Analog system playing, of course the Analog system will sound better in that case. Some believe that Digital is on par to overtake Analog in the "true picture of sound" category but some also say Analog will forever be the best at playing sound and Digital will always be the alternative.
But, in the end it's all personal preference and the pros and cons don't overweigh to make one better than the other.