Answer:
A text or binary file format for storing documents on a storage media, especially for use by computers.
Explanation:
Answer:
The shape, size, design, and arrangement of its physical elements
Explanation:
after processing ,data is converted into ____
Answer:
Information.
Explanation:
Which range function will generate a list of all even numbers between 12 and 84 inclusive? range (12, 86, 2) range (11, 84, 3) range (12, 86, 4) range (10, 84, 2)
Answer:
The answer is "range (12, 86, 2)".
Explanation:
The range() function generates a numerical sequence across items. In the above-selected choice, the range function is correct because it takes three parameter values "start, stop, and step". In this choice, it takes three number values "12, 86, and 2", in which 12 is the starting point, and 86 is the ending point, and 2 is used for print even numbers between them, that's why the other choice is wrong.
Which best describes what databases do?
They guarantee users find needed data.
They create categories for data.
They identify important data.
They enable users to search for data.
Answer:
a. they guarantee users find needed data.
which componet is the smallest unit in a spreadsheet
The cell is the smallest unit in a spreadsheet
PLEASE HELP!! WILL MARK BRAINLEST
What positive and negative impact does Instagram have on you?
Instagram has many and negative impacts depending on what users are interacting and what posts are made.
Negative:
Toxic peopleDiscouraging commentsRude judgementNeed for popularityPositive:
A way to shareCommunication between friendsEncouraging commentsSomewhere to find inspirationThere's many more things, but I just listed a few that I can remember.
What is the index of 7 in this list?
that list being [5, 6, 10, 7, 3, 2.5]
7
4
2
3
Any brainliest beggars will be flagged
Answer:
-1 (out of range).
Explanation:
Index '7' cannot exist in 0-indexed array of size '6'.
If return type is 'Integer' out-of-range exception should be thrown.
[ 0, 1, 2, 3, 4, 5] :: indices. (length = 6)
[ 5, 6, 10, 7, 3, 2.5 ] :: elements.
Answer: 7
Explanation: got it right on edgen
Which are reasons to use collaborative learning? Check all that apply.
to solve problems
to discuss topics
to save study time
to complete tasks
to study material
Plz help
Answer:
i say the answers are
A. to solve problems
B. to discuss topics)
D. to complete tasks
E. to study material
Explanation:
I say it's NOT (C. to save study time) because you are still taking times to study
Answer:
A, B, D, E
Explanation:
Need Brainiest
Need The Answers For Lesson 4: Wrapping Up Unit 1 Digital Photography Test.
Answer:
Explanation:
can you show me a ss?
what is meant by GPS?
Answer:
The Global Positioning System.
Answer:
Global Positioning System
Explanation:
why when you are on wifi it keeps kicking you off is your class during online learning
Answer:
because the is alot of people using wifi in the world so the wifi can be usad only for u so old the internet is going down
Explanation:
WILL GIVE BRAINLIEST!!!!!!!
MRV is able to is car that can do 0 degree turns and drive in any direction.
True
False
Answer:
True
Explanation:
Answer:
it is b true
Explanation:
plz i need BRAINLIEST can u give it to me plz
What is 16/17 simplified?
What are the advantages of block-based programming? What are the disadvantages?
Answer:
Block-based languages tend to have a lot of commands to choose from, making memorizing commands unneeded, and therefore easy for beginners to start coding. However, it may be slower to code in a block-based language than one where a user can quickly input commands using their keyboard. With block based programming you don't have to worry about syntax errors which is helpful.
Explanation:
Answer:
block based programming have more than one command to choose from, so there is no need to have a memorizing command, which makes it easier for beginner coders. however, using a block-based code can move slower.
Explanation:
Who is Mr.Anonymous?
Answer:
me
Explanation:
me
Answer:
a random person
Explanation:
Which term best describes the collection of technological systems made by engineers, technologists, and scientists that meets people's needs and improves their quality of life?
Answer:
The designed world.
Explanation:
The designed world is a term that best describes the collection of technological systems made by engineers, technologists, and scientists that meets people's needs and improves their quality of life.
Basically, a designed world gives an insight into a systematic collection of a design process which transforms technological systems, machines, tools, people, energy, time, and information to better change the world so as to improve and suit the needs or wants of the people.
For example, the city of Philadelphia, Lincoln, San Francisco in the United States of America is a good description of the designed world.
Which of the following is an example of a Syntax Error?
The program runs, but prints a warning to the console.
The program runs at first, but eventually crashes.
The program does not run at all.
O The program runs, but doesn't do what you expect.
Answer:
The correct answer is: "The program does not run at all."
Explanation:
The rules to write a program in any language are called syntax. The error in syntax of a language is called syntax error. Syntax errors are usually detected during the compilation of the program. The program cannot be run untill all syntax errors are removed.
So,
The correct answer is: "The program does not run at all."
Animation is primarily a visual art, so in many cases, you could turn off the
soundtrack and still know what is happening.
Answer:
yes as long as the motions and form of the person,place,or thing that is being moved in a clear and clean way and strictly sticks to the story or title of what you may be watching, its all about the story being told rather than the sound that it makes.
Explanation:
If something is sustainable, then what is it?
Enduring
Brittle
Expensive
Short-term
Yvonne found an article online that relates to her research topic, but the article does not cite the author. What
should Yvonne do?
O She should decide to use the article without citing it.
O She should decide to avoid using the article.
O She should write the information in her own words.
O She should determine the website's credibility.
will mark brainliest
Answer:
d
Explanation:
bye
Yvonne found an article online that relates to her research topic, but the article does not cite the author. so she should determine the website's credibility.
How do you outline internet site credibility?Simply put, it is the distinction between a handsome web website online and one designed with a purpose. For many customers, their advent for your enterprise happens on your internet site. Your major goal, after they arrive, is to instill a feeling of trust.
Links to/from different websites display the web website online is well-respected. The credentials of the author(s) are valued. Articles include citations and references. News memories are few, however, include details.
Read more about the research topic:
https://brainly.com/question/25257437
#SPJ2
Python problem:
Write a program in which the program guesses the number that the user is thinking about. Example of
output per screen:
Think of a number from 1 to 4.
Answer S (yes) or N (no) to my questions.
Is the number thought to be greater than 2? S
Is the number thought to be greater than 3? N
The number thought about is 3
See you next time!
print("Think of a number from 1 to 4")
print("Answer S (yes) or N (no) to my questions.")
choice = input("Is the number thought to be greater than 2? ")
if choice == "S":
choice = input("Is the number thought to be greater than 3? ")
if choice == "S":
print("The number thought about is 4")
elif choice == "N":
print("The number thought about is 3")
elif choice == "N":
choice = input("Is the number thought to be greater than 1? ")
if choice == "S":
print("The number thought about is 2")
elif choice == "N":
print("The number thought about is 1")
print("See you next time!")
This works for me. Best of luck!
Pokémon Brick Bronze...
Well we dont need to get political but bronze
This function chooses the screen to display based on the score.What is the correct way to call this function?
Answer:
checkWin();
Explanation:
its in the code
Answer:
checkWin ( ) ;
Explanation:
It is show inside the code
This is 10 points. Which line of code will display the variable num rounded to the nearest tenth?
A. print(num, round)
B. print(round(num, 1))
C. print(num rounded)
D.print(round(num,.1))
Answer:print(num, round)
Explanation:print(num, round)
Answer:
B trust me i got it correct
Explanation:
Which of these are correctly formatted Python dictionaries? Check all that apply. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}; dict = (‘Name’: ‘Mary’, ‘Age’: 13, ‘School’: ‘XYZ School’) dict = [“Programming Basics”, “Introduction to Python”] dict = {‘season’: ‘fall’, ‘weather’: ‘cool’}; dict = ’[‘laptop’, ‘computer’, ‘hard drive’]
Answer:
A. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}
Explanation:
Since python does not use type when declaring a variable, you must make sure you make your variables correctly or else it won't compile correctly. Lists use braces[]; Strings use quotes, "" or ''; Integers are just declared with a number(s); Dictionaries use brackets{} and inside are attributes of something. For instance, you can use dictionaries to describe ages, {'"Bryan": 6, "Alex": 13, etc.} Sort of like a json file. Dictionaries also tend to use uppercase letters when describing something. The only answer that has all the attributes correct is A. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}
hope i helped :D
The correctly formatted Python dictionaries is dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}. Thus, option A is correct.
What is Python?Python is a widely used high-level programming language. Its design concept prioritizes code readability by employing heavy indentation.
Python is garbage-collected and dynamically typed. It is compatible with a variety of programming paradigms, including structured, object-oriented, and functional programming.
Because Python does not utilize type when defining variables, you must ensure that you create your variables appropriately or they will not compile successfully.
Lists make use of braces[]; Strings use quotation marks, "" or "; Integers are simply identified by a number(s); Brackets are used in dictionaries to represent qualities of something.
For example, you may use dictionaries to define ages, such as "Bryan": 6, "Alex": 13, and so on. Similar to a json file. When describing anything, dictionaries also utilize capital letters. A. dict is the only solution that has all the properties correct.
Hence, option first is correct.
Learn more about Python here:
https://brainly.com/question/18502436
#SPJ2
10 EASY POINTS❗️
1. If I give brainlist, will one of my brainlist be gone?
2. How do I make a question with 5 points instead of 10?
Answer:
You can't make something 5 points bc 10 is the minimum I believe. As for the BRAINIEST I'm not sure
Answer:
your brainiest wont be gone and there should be a button under where you type the question to change the point value
PLZ ANSWER ALL MY QUESTION. Which line of code will display the variable num rounded to the nearest tenth?
A.print(num, round)
B.print(round(num, 1))
C.print(num rounded)
D.print(round(num,.1))
Answer:
A
Explanation:
How did the invention of an airplane totally change people’s views of the world?
about "How can computer help us in our life?
Answer:
Explanation:
Computer also facilitate comfort to our life and provides convenience. For transportation, it facilitate the way people travel. Airways, Roadways and waterways uses computers to control their operation. It saves time and relieve severity of traveling difficulties.
Type a message (like “sir i soon saw bob was no osiris”) into the text field in the asciitohex.com webpage. Which of the encodings (binary, ASCII decimal, hexadecimal, or BASE64) is the most compact? Why?
Answer:
BASE64
Explanation:
The encoding c2lyIGkgc29vbiBzYXcgYm9iIHdhcyBubyBvc2lyaXM= is the shortest.
Answer:
BASE64
Explanation:
BASE64 is the most compact encoding because it is the shortest encoding of "sir i soon saw bob was no osiris".
what does this map key show
Answer: where is the map key? I don't see it
Explanation: