Answer:
first answer is correct 8
second answer is 12
1.
Desmond is buying a new computer for editing photos and videos. A friend says that he
will need a large amount of primary and secondary storage.
(a) Define what is meant by 'primary storage'.
Define what is meant by ‘primary storage’
Answer:
Primary storage is the component of the computer that holds data programs and instructions that are currently in use
The shortcut for the move gizmo is
W
Enter
Space bar
M
Answer:
Pressing "G-G" will activate the move gizmo.
HELP ME ⚠️‼️⚠️‼️ DUE IN EXACTLY 27 MINUTES
Answer:
the binary for the first one is 1101
and the binary for the second one is 10100
Explanation:
Read the following conditions:
Scout sold fewer than 20 boxes of cookies
Scout missed more than one meeting
Which of the following statements tests if one of the conditions has been met?
if(boxes < 20 and meetingsMissed > 1):
if(boxes < 20 and meetingsMissed >= 1):
if(boxes < 20 or meetingsMissed >= 1):
if(boxes < 20 or meetingsMissed > 1):
The 'and', 'or' operators are used to test conditions which yields a set of boolean (True, False) values. Hence, the required statement is if(boxes < 20 or meetingsMissed > 1):
The 'and' operator requires that the two conditions are met in other to to yield a true value. However, the 'or' operator requires that only one of the conditions is met in other to yield a true Value.
Since, only either conditions is required, the we use the 'or' operator ;
Fewer than 20 boxes : boxes < 20Missed more than 1 meeting : meetingsMissed > 1Therefore, the required statement is ;
if(boxes < 20 or meetingsMissed > 1):Learn more :https://brainly.com/question/18539409?referrer=searchResults
A type of memory address that identifies the actual physical location of a specific data element in
memory is known as:
Answer:
Memory Adress Register (MAR)
''/--//.I want a new account///.--/'''
Answer:
nice cause nice
Explanation:
it's nice due to you wanting a new account
Answer:
Instead of signing into this account, you can click on "sign up" and then create a new account..
Explanation:
If that doesn't work, then I'm sorry.
Have a great day, or night, wherever your at, and always know that I'm here if you need someone to talk to if something or someone is bothering you.
Merging refers to dividing a single cell into multiple cells. *TrueFalse
Answer: False
Explanation: Because merging refers to something coming together as one, not to something such as a cell dividing into multiples.
what do you need to effectively colaborate
Answer:
Efficiency. Meetings are an essential element to collaboration but over the years, they’ve gotten a bad rap. After...
Trust. People need to feel safe to give and receive genuinely constructive feedback, be inspired by a common goal,...
Empathy. Every team member has an important part to play. Nevertheless, collaboration...
Explanation:
when the same default tracking code is installed on pages with different domains, what will result?
Answer:
When the same default tracking code is installed on pages with different domains, what will result?
Analytics will associate users and sessions with their respective domains
Explanation:
One of the first things you should know about when using and configuring Analytics is how the domain of the web property you are tracking is defined as a “site” for the purposes of viewing your reports. The default setup of the tracking code is designed to make it easy for you to track traffic to a single domain or subdomain (e.g. a single website URL) that does not share user data with other domains or sub-domains.
What is a Teacher a. verbal linguistic b. musical ryhtmic c. logical math intrapersonal
Can u guys report me as much as u can I’m trying to delete this account
Answer:
How-
Explanation:
Do you even report someone on here???? Can't you just delete this?
On the new iOS version, can you save photos from ‘review confirmed photos’? If so, how? Thanks!
Answer:
No i dont think you can i was searching on ios websites for info cause i dont own one but it doesnt seem like you can ive been searching for quite a while now doesnt look like it tho
which would be the most efficient way to store files on your computer?
Answer:
Best way to store all your files is a external storage device, like a hard drive or a usb stick, copy all your files to the device and keep it in a safe place.
The line of the code to the right, will create an array that carries values from 0 to 10 with step size 2.
Answer:
true
Explanation:
add it in the python
College entrance requirements are the expectations for admission.
O A. only
O B. least important
O C. maximum
O D. minimum
College entrance requirements are the expectations for admission.
O A. only
O B. least important
O C. maximum
O D. minimum
D.MinimumCollege entrance requirements are the minimum expectations for admission.
Answer:
d.
Explanation:
just took the test
Which type of data storage allows computers to read and write to the memory while the computer is powered on?
Hard drive
RAM
ROM
Virtual memory
Answer:
RAM
Explanation:
RAM is Random Access Memory, which means you can access whenever as long as it is powered on.
What is the extension of a BASIC256 program file?
Answer:
The extension of a BASIC-256 program file is kbs
which shortcut can you use to rename a worksheet?
Nathan just read a short story for his literature class. It took him a long time, and he had to look up a number of words. What would help to improve his reading fluency?
He could read the short story a second time.
He could try to read a more-challenging text.
He could work to slow his reading rate.
He could try to read a less-difficult text.
Answer:The answer is A
Explanation:
Nathan just read a short story for his literature class. It took him a long time, and he had to look up a number of words. What would help to improve his reading fluency?
He could read the short story a second time. makes more sense than the other options hope this helps. :D
information literacy refers only to complex and detailed communication — not things such as text messages.
The statement about information literacy being only about complex and detailed communication — not things such as text messages;
The statement is False
We want to know whether the given statement in the question is true or false;
Information literacy is simply defined as the ability to find, interpret, and make good use of information.Now, this information that information literacy seeks to make people understand could be in different forms like on the internet, Television, Social media, newspapers, books e.t.c. In a nutshell, it is any means of finding information including calls and text messages.Thus, since getting information and even interpreting could be gotten via text messages, then the statement in the question is false.Read more at; https://brainly.com/question/14963241
the ____ is a temporary storage area that holds items copied from any office program.
Answer:
Clipboard
Explanation:
what is flame in ICT terms
Answer:
It is a posted or sent offensive message over the internet
Anything a person writes or creates is __________
Answer:
an artist
Explanation:
Anything from writing, singing, painting, etc. is considered art because it takes creativity.
:) Have a good day.
Can anyone fix this code for me?
// This function has karel move across a world of 14 columns, moving if the
// front is clear, or jumping a hurdle if it is blocked.
function start(){
for(var i = 0; i <= 13; i++){
if(frontIsBlocked()){
jumpHurdle();
}else (frontIsClear()){
move();
}
}
}
// This function has karel jump a hurdle and end up on the other side.
// Precondition: Karel is facing east in front of a hurdle (one wall high)
// Postcondition: Karel is facing east on the other side of the hurdle
function jumpHurdle(){
turnLeft();
move();
turnRight();
{
move();
turnRight();
}
move();
turnLeft();
}
Answer:
function start(){
move();
for(var i = 0; i < 2; i++){
move();
move();
jumpHurdle();
if(frontIsClear()){
move();
}
}
move();
move();
move();
function jumpHurdle(){
turnLeft();
move();
turnRight();
move();
turnRight();
move();
The corrections are =
1) Added curly braces.
2) Removed the unnecessary curly braces.
3) Added semicolons.
Given is an incorrect code we need to make corrections in it,
The corrected code is,
// This function has Karel move across a world of 14 columns, moving if the
// front is clear, or jumping a hurdle if it is blocked.
function start() {
for (var i = 0; i <= 13; i++) {
if (frontIsBlocked()) {
jumpHurdle();
} else {
move();
}
}
}
// This function has Karel jump a hurdle and end up on the other side.
// Precondition: Karel is facing east in front of a hurdle (one wall high)
// Postcondition: Karel is facing east on the other side of the hurdle
function jumpHurdle() {
turnLeft();
move();
turnRight();
move();
turnRight();
move();
turnLeft();
}
Here are the changes I made:
Added curly braces {} after the else statement to define the block of code to be executed when the condition is met.
Removed the unnecessary curly braces {} after the turnRight() statement in the jumpHurdle() function.
Added semicolons ; at the end of each statement to terminate them properly.
Learn more about Coding click;
https://brainly.com/question/31517409
#SPJ6
Hi there! I am writing a code to make a square using a drone, however I’m having trouble doing so. The website that I’m writing code for my is called: robolink.com/blocky I was wondering if someone could help me write the code.
(Use senior mode)
Answer:
i might
Explanation:
To enter data from the keyboard, what command do we use?
Why are financial records important? How does keeping organized financial records contribute to successful money manageme?
Answer:
Financial records are very important for any organization. There are many reasons to keep records such as knowing financial situation, meeting tax obligations
Explanation:
Firstly is knowing the financial situation of the company which help to further contribute with organization.
Secondly organization meet the ta obligations assign by the government.
What are the method of making glass
Answer:
The process involves wetting the edge of a blowpipe (blowtube) and dipping it into a furnace that has molten liquid glass.
Explanation:
The desired amount (glob) then sticks on to the pipe (spooling) and the 'glassmith', 'glassblower', or 'gaffer' blows air through the other end of the pipe to make the desired shape.
Answer:
Core-forming. the earliest method of making glass vessels is known as core-forming.
Casting. This process involved the shaping of molten glass in a closed mould or over an open former. ...
Blowing. ...
Mould-blowing. ...
Pattern-moulding. ...
Tralling. ...
Cutting. ...
Fire-polishing.
Explanation:
What are some advantages to having ads tailored to your data?
Answer:
That you will find something, that you need or just something you find useful. And something that might take your interest.
Choose the comparison operator that will create a true statement in Scratch
O
Scratch 2021
Attribution-ShareAlike
20 Generic
O
Scratch 2021
Attribution-ShareAlike
2.0 Generic
O
85
Scratch 2021
Attribution-ShareAlike
20 Generic
O
90.85
Scratch 2021
Attribution-ShareAlike
20 Generic
Answer:
The second option
90 > 85
The statement above means 90 is more than 85 which is true.