Explain the difference between file and folder (in your own words)
Answer:
the difference is one is online and one is not
Explanation:
A file is usually what you find online. And a folder is what you put papers into.
2.3 Code Practice: Question 1
Answer:
a=int(input("Enter a numerator: "))
b=int(input("Enter a divisor: "))
quotient=a/b
remainder=a%b
print("Quotient is: " + str(int(quotient)))
print("Remainder is: " + str(int(remainder)))
Explanation:
Hope this helps lovely :)
Answer:
Answer is in explanation
Explanation:
num = int(input("Enter Numerator "))
den = int(input("Enter Denominator "))
one=int(num/den)
two=int(num%den)
print(one + two)
Can copyright prevent the duplication of a work of art?
Answer:
if you use it in a certain way yes but pls don't do that
Answer:
Like anything else that can be copyrighted, the artwork is protected by copyright when the art is affixed in a tangible form (such as a painting, sculpture, or drawing). You have to register your copyright with the US Copyright Office if you want to be able to take infringers to court and be awarded damages
Searching a database for a particular record requires an extension.
O True
O False
Answer:
False
Explanation:
I think it is right, I am not good with a lot of stuff
Answer:
Its True I got it right on ED
Explanation:
Can you tell from the masses of the reactants which one of the reactants will be the limiting reactant? Defend your answer (use an equation within your defense).
Answer:
No, usually you would do the math first before deciding which is the limiting reactant
Explanation:
2H₂(g) + O₂(g) -----> 2H₂O(g)
3mol= Hydro
2mols= O₂
The limiting reactant would be the smaller number after we divide the number of moles by the coefficient
H:1.5 3mol/2(c) =1.5
O2: 2 2mol/1(c)=2
Hydrogen is lower = limiting reactant
if a network security professional wants to connect some computers in the same building without it using a router what type of network is being used
Answer:
the MAC addresses of wireless NICs
Explanation:
Answer:
I would probably suggest Peer-to-Peer
Rachel wants to copy eight rows of data from one spreadsheet to another. She opens the spreadsheet, highlights the appropriate data,
and selects the Copy command from the menu. What should she do next?
O Select the Cut command from the menu.
O Open the new spreadsheet.
O Double-click on the cells that are highlighted.
Select the Paste command from the menu,
Save and Exit
Answer:
Rachel should open the new spreadsheet first. Then she can paste the cells she has copied.
Answer:
Explanation:
Rachel should open the new spreadsheet first. Then she can paste the cells she has copied.
Donna often travels around the world. When she travels, she needs to access her emails from different locations. However, to keep her luggage light, she does not carry her laptop. Which email program can Donna use?
Answer:
Yahoo! mail
Explanation:
In the context, Dona travels most often around the world. While traveling, she has to access her emails from different location and at different times. But in order to keep her luggage light, she never carries the laptop with her. Therefore, Donna uses Yahoo! mail to access her emails.
Donna uses Yahoo mail because she can install the Yahoo! mail app in her phone or tablets which is small in size and of light weight. She is able to organize her Outlooks, Google mails and Yahoo accounts. In Yahoo! mail, Donna is also able to sign in with her any of the non yahoo accounts and it also provides free cloud storage space.
Answer:
The answer is: B. Yahoo mail
Explanation:
full form of DMBM
plz.. give me answer.....
Explanation:
database management system
nice to help .... but I think it is a computer ans
Determine which careers you can enter after completing a training program and which careers require a college degree.
Answer: statistician automotive engineer customer service specialist data modeler broadcast technician video systems technician
Explanation:
what are spreadsheets in a excel workbook called? A. pages B. notepads C.graphs D.worksheets
Which of the following describes all illustrations created by freehand?
extension lines
sketches
leader lines
dimensions
A tornado destroyed many
CORRECT ANSWER GETS BRAINLIEST PLEASE HELP !
structures in a small Texas
town. Which type of engineer should be called in to collect
evidence in order to prevent this level of damage in the future?
A.chemical engineer
B.biomedical engineer
C.materials engineer
D.forensic engineer
Answer:
D is your answer because I'm an expert
Answer:
D. forensic engineer
Explanation:
Because I know the answer I got it right
CORRECT ANSWER GETS BRAINLIEST PLEASE HELP !
Complete the following sentence.
A(n) _________
is a person who acts as an agent between two different groups, often resolving conflicts.
Answer:
Mediator
Explanation:
A mediator is a person that tries to reserve peace within groups, and they often try to prevent conflict.
Can u write a python program with this output
Answer:
Not exact, but it will help.
Explanation:
do something like this.
print("""
this program will help you plan your garden.
First, we need some information about the dimensions you want.
""")
while True:
try:
response = int(input("Please enter the side length for your garden (in feet) : "))
except ValueError:
print("(!)Please Enter A Number(!)")
print("")
continue
if str(response) == "":
continue
else
length = int(response)
break
repeat stuff like that up above for the rest, and then you can decide what to do with the variables and how they need to be multiplied for the output. Good luck!
Edhesive 8.7
Use the following initializer list:
w = ["Algorithm", "Logic", "Filter" "Software"
"Network", "Parameters" "Analyze", "Algorithm", "Functionality", "Viruses"]
Write a loop to print the words that start with "A"
w = ["Algorithm", "Logic", "Filter" "Software"
"Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for x in w:
if x[0] == "A":
print(x)
We check to see if a word begins with "A" and if it does, we print it to the console.
Mary can view the thumbnails of her presentation slides when she is creating the slides. which element of the programs interface is she seeing? A. document, B. slide plane, C.menu bar, or D. scroll bar
Answer:
Option B (Slide plane) would be the correct answer.
Explanation:
This same Slide pane displays or occurs on either the left-hand side throughout your folder as well as a desktop field by default or chance. It shows document thumbnails including functions that are included in the software. In almost a similar sequence that they can always show up throughout the presentation.The other options given are not linked to the instance presented. So the option above would be appropriate.
Which is more compact?
- Binary
- ASCII decimal
- Hexadecimal
- BASE64
WHY?
Answer:
ASCII85 is the most efficient coding system – data size increases by just 20%. It has a couple of minor disadvantages. It uses a larger character set, and so it is only compatible with ASCII (unlike Base64, which supports various close relatives of ASCII). It is also slightly more demanding computationally, since it uses division rather than bit shifting. However, these factors are becoming increasingly irrelevant in the context of modern computer systems. The main reason that Base64 continues to be used more than ASCII85 is probably the simple fact that it has been around for longer.
Explanation:
Question #6
ent
Fill in the Blank
You have defined your player data type.
class player:
life = 3
magic = False
name = "
You created an instance of your player data type and assigned values.
myPlayer = player()
myPlayer.life = myPlayer.life - 1
myPlayer.life = 4
myPlayer.magic = True
myPlayer.name = 'Kris'
What will be the value displayed after this line of code?
print(myPlayer.life)
You will see
Answer:
The answer is 4
Proof
What are the characteristics of a computer that make it different from other devices that hold electricity?
Answer:
Input, used to interact with, or send data to the computer (mouse, keyboards, etc.)
Output, which provides output to the user from the computer (monitors, printers, etc.)
Storage, which stores data processed by the computer (hard drives, flash drives, etc.)
Explanation:
Input, used to interact with, or send data to the computer (mouse, keyboards, etc.)
Output, which provides output to the user from the computer (monitors, printers, etc.)
Storage, which stores data processed by the computer (hard drives, flash drives, etc.)
HELP PLSS‼️ Which are the following are considered peripherals? Mark all that are correct
Answer:
Speaker, Keyboard, Monitor, Mouse
Explanation:
A peripheral device is used to put input into (or receive output from) a computer. Parts of a computer wouldn't be considered peripheral.
does anyone like five finger death punch
Answer:
I LOVE Five Finger Death Punch
my favorites from them are apologize, blue on black, and wrong side of heaven!
Explanation:
Question 2: Did every packet arrive in the correct order? Describe what went wrong and whether your partner was able to read the message. If neither you nor your partner had an issue try sending another message.
Answer:
No, the packets did not arrive in the right order but the TCP protocol reordered the packets. The transmission took a while, but the message was finally delivered.
Explanation:
Packets are chunks of data from a data source or message transmitted from one computer device to another. Protocols like TCP or transmission control protocol and UDP (user datagram protocol) are used for data transfer, with TCP as the more reliable protocol (it checks for errors, retransmit lost packets, and reorders received packets in the destination device) and slow protocol.
Which of the two do you think is the most secure mode of communicating: sending a letter using the postal service or sending an email using the internet? Justify your answer with reasons.
Answer:
rather internet... postal services can steal ur identities, steal ur location, and see who u r sending to
Explanation:
Hope this helps! Consider Marking brainliest!
PLZ HELP!! How does HTML help solve the problem of telling a computer what a web page looks like, not just the content that is on it?
Use complete sentences (at least 4).
HTML provides information to your browser about the organization of your document, including the locations of headers, paragraphs, and language that need emphasis.
What is HTML?The preferred markup language for documents intended to be viewed in a web browser is HTML, or HyperText Markup Language.
Technologies like Cascading Style Sheets and scripting languages like JavaScript can help.
Your browser receives information from HTML about how your page is laid out, including the locations of headers, paragraphs, and material that needs to be highlighted.
Based on this knowledge, browsers have built-in default rules for how to display each of these elements. You are not obligated to select the default choices, though.
Thus, this way, HTML help solve the problem of telling a computer what a web page looks like.
For more details regarding HTML, visit:
https://brainly.com/question/15093505
#SPJ1
Jane wrote a program that moves a mouse through a maze. But when the mouse took a right turn, it disappeared from
the maze. What kind of error should Jane fix to make the program run properly?
Oa Boolean error
O a logic error
O a syntax error
O an infinite loop error
Answer:
C. A Syntax error
What happens if you create multiple accounts just to get points faster?
When you create multiple accounts just to get points faster, it does not help as the points will be to the individual account and as such it will not be faster but slower.
Can having multiple accounts quickly hurt your points?If a person has a lot of accounts, you have to know that it may have negative effect on your score.
Conclusively, Credit scores or point are not influenced by the number of bank accounts or other account that you have in your name and as such having a lot of account will not increase your points.
Learn more about multiple accounts from
https://brainly.com/question/25787382
During a presentation, students are encouraged to show
enthusiasm because it is useful when a speaker is unsure of a topic.
nervousness because it leads to confidence and an engaging presentation.
nervousness because it helps the speaker relate to the audience.
enthusiasm because it leads to confidence and an engaging presentation.
Answer:
enthusiasm because it leads to confidence and an engaging presentation.
Explanation:
hope this helps :)
In any presentation, students are encouraged to show enthusiasm because it leads to confidence and an engaging presentation.
What is enthusiasm?Enthusiasm is known to be a kind of human feelings that people often experience.
In the case of Enthusiasm, a person often experience their energy vibrating at the greatest level.
Conclusively, In any presentation, students are encouraged to show enthusiasm because it leads to confidence and an engaging presentation and they can be excited and also happy as they make their presentation.
Learn more about presentation from
https://brainly.com/question/24653274
#SPJ2
HELP PLEASE 50 POINTS
Answer:
do u know the muffin man
Explanation:
Answer:dk this old anyways
Explanation:tyftp
ALSO PLZZZ HELP :P Suppose you are purchasing a game at a local retail store that comes on DVD. In order to install it on your laptop, what must the laptop have?
A. a keyboard with a separate keypad for the arrow keys
B. an optical drive
C. an internet connection
D. an external monitor