Which are viable channels of communication? the Internet, sign language, playing a video game alone, talking, taking a solitary walk
Answer:
The Internet, sign language, and talking
Explanation:
What is a reason given in an argument why the claim is true?
A. Evidence
B. Heuristic
C. Claim
D. Premise
Answer:
A
Explanation:
A
The reason given in an argument why the claim is true is called; D: Premise.
When having an argument, the parties involved are trying to establish who is right about the topic of the argument based on the claims given by the parties involved in the argument. Now, arguments get to a point where the parties involved would be required to bring forth a string reason why their position holds the best approach or is true and this position as to why their claim is true is called "premise" of the claim in the argument.Read more about arguments at; https://brainly.com/question/3132210
Can Someone Please Help Me?! I Have already had a rough morning!
What is step one in the digital file organization process?
What is rule number one?
What is rule number two?
What is the obvious advantage to rule number two?
What is the tree structure?
What are two main ways to organize your files?
How should you name your files?
What is cloud storage?
What are some different cloud storage software?
What is the importance of backing up your computer?
Answer:
The first step to organizing your digital files is knowing and documenting what you need to keep and why. This means that you need to create record retention guidelines if they do not already exist. Typically, information needs to be kept for legal and accounting purposes.
A MailTip is an instantaneous pop-up message that
warns users of bad email addresses.
forces the sender to check their grammar and spelling.
gives you real-time information about the message you are creating.
provides helpful hints on how to navigate the message controls.
Answer:
its (c)
Explanation:
If i hit the delete key three times what will be left
Answer:
planation:
I got this
What kinds of objects might benefit from the use of the Loop Cut and Slide tool, and why? In your own words, how does edge loop manipulation “work?”
ADVENTURE BOOKS 123
time 4 a story and questions
(this is just a made up story........)
One groggy day The President shows up on the news and he starts arguing with the news woman and he tells her he wants to be the one who informs everyone and guess what? thats what happened.so he walks up to the camera and spills the beans this is what he said Fellow humans i figured you would like to hear this news ........
26harrisona avatar
we are going to have to go into lockdown so if you would like to leave the state you may,.................
ADVENTURE BOOKS 123
time 4 a story and questions
(this is just a made up story........)
One groggy day The President shows up on the news and he starts arguing with the news woman and he tells her he wants to be the one who informs everyone and guess what? thats what happened.so he walks up to the camera and spills the beans this is what he said Fellow humans i figured you would like to hear this news ........we are going to have to go into lockdown so if you would like to leave the state you may,.................cov-id is going to become the ap-ocal-yp-se ......(you)so you have decided to go to an island that is called ----------- (made up name.....)cov-id is going to become the ap-ocal-yp-se ......(you)so you have decided to go to an island that is called ----------- (made up name.....)so you gather your supplies you can chose (20) things only 20 you have to name everything before you leave the state .
When might you use the Internet without accessing the World Wide Web?
Most sources consider the ARPA-NET project the birth of computer blank
.
Answer:
Networking
Explanation:
Answer:
networking i think
Explanation:
You have this code in your program.
from array import *
K = array('b',[10, 5, 2, 7])
Which line of code will add 12 to the array?
Answer:
K.append(12)
Explanation:
From the question, the array name is K.
In python, to add to an array, you make use of the following syntax.
[array-name].append(value)
In this case:
[array-name] = k
and the value to be added is:
value = 12
So, we have:
K.append(12)
Kevin is working in the Tasks folder of his Outlook account. Part of his computer screen is shown below.
Outlook tasks
(I WILL PUT BRAINLIEST)How can Kevin view his appointments and calendar?
by clicking on Tasks in the Navigation Pane
by clicking on the To-Do Bar on the right of the screen
by clicking on the View tab at the top of the screen
by clicking on Manage Task in the Ribbon
Answer:
D
Explanation:
What is the purpose of a forecast worksheet?
It uses historical data to predict one trend line.
It predicts trends using changing data onto one line.
It uses historical data to predict multiple trend lines.
It predicts trends using changing data onto multiple lines.
Answer: It’s a
Explanation:
I got it right on edj
What even is this. Can someone help please.
Answer: it’s a broken hard disk/drive.
Explanation: That screen usually shows when your hard drive is damaged or broken. You’ll most likely need a new one and download professional tools to recover any lost data
Question 29 :What is the term for the part of a browser responsible for reading and processing programming languages
Answer:
The appropriate approach is "Interpreter".
Explanation:
An interpreter would be a computer application that is being used straightforwardly start executing application programs published using another one of the elevated languages of the computer.
There have been 2 criteria for selecting programs that are published throughout an elevated language. Just like:
To implement the program. Transfer the project across an interpreter.The following code will not compile. Which of the options below would allow the code to compile and run as intended?
if (x >= -10 and <= 10):
print("In range")
Answer:
Follows are the code to this question:
x=int(input())#use input method with int that takes integer value from user-end
if (x >= -10 and x<=10):#defining if block that checks x in between -10 to 10
print("In range")#print message
Output:
6
In range
Explanation:
In this code, the choices were missing that's why the solution to this question can be defined as follows:
In this, x variable using the input method with the int, which takes integer value from the user-end. In the next step, the if block is used, that checks x value lies on between the -10 to 10, to check this condition it used the and logical operator, that run the code when both conditions are true, and at last, it prints the message "In range".
Which statement is true?
You cannot create an empty deque.
You need to import the deque methods in order to use a deque.
You can use popleft with a list.
You need to import list methods in order to use a list.
Answer:
The answer to your question is B. I hope this helps. Have a wonderful safe day. <3<3<3
Explanation:
The right end of the queue can have elements added using the append() function, while the left end of the queue can have elements added using the appendleft() method. Thus, option B is correct.
What import the deque methods in order to use a deque?The ability to add and remove items from the left end is one of deque's main advantages over a list. As was already indicated, a deque object is significantly more effective for these actions at the left end, especially as the queue size grows.
In a data structure, dequeue Both the input and output queues are constrained. Data can only be added from one end of an input restricted queue, but it can be removed from both ends.
Therefore, The most popular list-like data types in computing, queues and stacks, are implemented elegantly, efficiently, and Pythonically using deque, a low-level and highly optimized double-ended queue.
Learn more about deque here:
https://brainly.com/question/29733589
#SPJ2
Look at the following Python code:
word1 = "Umpire"
print(word1[1])
Which character will be indexed from word1 and printed to the screen? (5 points)
1. U
2. m
3. p
4. i
Answer:
2. m
Explanation:
Computers count starting from 0 so 1 would actually be the 2nd letter
Which of the following expressions will evaluate to true? (3 points)
7 == 7.0
7 != 7.0
7 < 7.0
Question 1 options:
1)
I only
2)
II only
3)
III only
4)
I and III only
5)
II and III only
Question 2 (3 points)
Saved
Which of the following expressions will evaluate to true? (3 points)
12 / 5 != 2.0
12 / 5.0 == 2.0
(int)(12.0 / 5.0) == 2.0
Question 2 options:
1)
I only
2)
II only
3)
III only
4)
I and II only
5)
I and III only
Question 3 (3 points)
Assume an integer variable named num is assigned a value of 20. What is the value of num - 7 < 15? (3 points)
Question 3 options:
1)
True
2)
False
3)
0
4)
1
5)
An error occurs
Question 4 (3 points)
What is the result of the following code segment? (3 points)
int x = 10;
if(x + 1 < 20)
x += 5;
System.out.println(x);
Question 4 options:
1)
10
2)
11
3)
15
4)
16
5)
20
Question 5 (3 points)
Assume the integer variable num has been assigned a valid value. What is the purpose of the following code segment? (3 points)
if(num % 10 != 0)
System.out.print(num);
Question 5 options:
1)
It prints num if its value is a multiple of 10.
2)
It prints num if its value is not a multiple of 10.
3)
It always prints the value of num.
4)
It never prints the value of num.
5)
An error occurs at compile time.
Answer:
A and B
Explanation:
which part of a computer is responsible for executing the software programs?
Select one
a. Peripheral
b. Hard Drive
c. CPU
d. RAM
Answer:
c. CPU
Explanation:
In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.
Answer:
Explanation:
Locked and hidden
What is the most common digital photography file type?
Question 8 options:
TIFF
RAW
JPEG
PHO
Answer:
JPEG
Explanation:
Answer:
JPEG
Explanation:
Explain why configuration is essential in planning a project.
Answer:
Configuration management system helps in managing versioning of project management plans, documents and project components. This system may include Change Control System. Because the major cause of taking a new version for a component, document or plan in a project is a change
How do I send the face to the back? Seriously, I can't find out how...
Answer:
i think you can layer it :)
Explanation:
nice drawing btw!
What I Can Do
Activity: SHOW ME YOUR SKILLS
Directions: Show your skills in caregiving by answering the question. Focus your answer in the underline world.
1. You are assigned to take good care of your younger brother/sister and he/she is HUNGRY. What will you do?
2. Your mother wants to go to the market and you are assigned to take good care of your grandmother. Your grandmother has difficulty in walking. How do you take good care of her if she WANTS TO GO TO THE BATHROOM and when SHE IS HUNGRY?
Answer:
1. I would cook or see there is any leftovers from dinner or do take out.
2. I would try and carry her but if I can't then I'll walk her to the bathroom. I make her what she wants.
Which of the following is an advantage of using
the sort procedure? Check all that apply.
preserves cell formatting and formulas
saves time
deletes extraneous data
avoids copy-paste
organizes data so it is easier to draw
comparisons
navigates to a specific page, table, or object
Answer: preserves cell formatting and formulas
saves time
avoids copy-paste
organizes data so it is easier to draw comparisons
Explanation: just did it
The advantage of using sort procedure is that it saves time and organizes data so it is easier to draw comparisons.
What is sort procedure?Sort procedure is the process by which data or elements are being arranged in a particular kind of order for an easy access.
The importances or advantages of Sort procedure in data preparation are:
to save the user's time andorganizes data so it is easier to draw comparisons.Therefore, the advantage of using sort procedure is that it saves time and organizes data so it is easier to draw comparisons.
Learn more about data here:
https://brainly.com/question/25720881
#SPJ2
One aspect of
is satisfied when a user understands how to use a program.
O accessibility
O reliability
O performance
O learnability
NEED ASAP!!!!!!!
Answer: learnability
Explanation:
Edg 2021
Answer:
Answer: learnability
Explanation:
Does anyone know what these two things are?
Answer:
CDs/DVDs and a headset.
Lets do a who know me better! 5 questions! if you get 4\5 you get brainliest or a 3\5 but anything below u dont get it!
How old am I?
Do I like Summer or Winter?
Whats my name? (You guys should get this.)
What grade am I in? (Its between 4th and 8th).
How many siblings do I have? ( its between 2 and 5)
Good Luck!
Answer:your 13
you enjoy winter but still like summer
Skylar
either 7 or 8th
3 siblings
Explanation:
Calcule la carga que puede levantar un cabrestante si la manivela mide 40 cm y el El radio del molinete es una tercera parte de la manivela, si hacemos un fuerza en el mango de 250 N
Answer:
C
Explanation:
because...
Which of the following tags is used to create a horizontal line across the width of the Web page? A: <hr /> B: <br /> C: <line></line> D: <bar></bar>
Answer:
<hr/>
Explanation:
hr stands for horizontal ruler.