A group of reviewers with your highest ratings
Answer: A.
Explanation:
A. a group of experts who rate wiews as good or bad.
Which function can NOT be performed using the Conditional Formatting option?
A) Insert icons that visually display the ranking or rating of values in a selected range.
B) Apply conditional formatting to dates that fall within specified date ranges.
C) Use conditional formatting to highlight any duplicate values or data in a worksheet.
D) Use conditional formatting to dynamically underline in red and green any language or spelling errors on a worksheet.
Answer:D is the answer to this one
The function that could not be performed while using the option of conditional formatting is that it is not used to underline for red & green any type of language or for spelling the errors on the worksheet.
The following are the functions that could be performed while using the option of conditional formatting:
Icons could be inserted for showing the ranking.It should be applied for dates that come under particular date ranges.It shows the duplicacy of the values in the worksheet.Therefore we can conclude that the function that could not be performed while using the option of conditional formatting is that it is not used to underline for red & green any type of language or for spelling the errors on the worksheet.
Learn more about the conditional formatting here: brainly.com/question/9679726
What is the maximum field size ailowed in a text field?
O 20 characters
O 50 characters
O 255 characters
535 characters
anybody else watch unus annus on youtub.e ??
What will you see on the next line?
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList
An error statement since you tried to sort a list with both int and float numbers.
[9, 2, 3.5, 7]
[2, 3.5, 7, 9]
Answer:
c [2, 3.5, 7, 9]
Explanation:
Given the following code:
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList, the thing that would be seen on the next line is c [2, 3.5, 7, 9]
What is an Array?This refers to the collection of data that are similar to each other and can be easily identified by an array index.
Hence, we can see that from the simple array given, there is an unordered list and with the command, "aList.sort()", this arranges the unordered list into one that is ordered and this would provide [2, 3.5, 7, 9] which is in ascending order.
Read more about arrays here:
https://brainly.com/question/24275089
#SPJ2
Which of the following represents a backup system that will aid in recovery for any type of disaster or disruption?
Transfer operations
Integrity operations
Redundancy operations
Independent operations
Answer: redundancy operations
Explanation:
If your computer will not turn on, what is something you would do to diagnose the problem?
A)Check if the monitor is plugged in
B)Push the power button
C)See if it is plugged in
D)Turn on the printer
What are some websites to watch free movies on? (anybody answer with like 3 or 4 websites)
fox that what i get on at school
Answer:Kodi with builds
Explanation:
its a perfectly safe download
Which one of the following statement is untrue
Answer:
B IS FALSE
Explanation:
they are input devices
Write a for loop to print all the even numbers from 200 to 300.
Expected Output
200
202
204
206
208
210
212
214
216
218
220
222
224
226
228
230
232
234
236
238
240
242
244
246
248
250
252
254
256
258
260
262
264
266
268
270
272
274
276
278
280
282
284
286
288
290
292
294
296
298
300
for x in range(200, 301, 2):
print(x)
I hope this helps!
How do you customize calendar view
Answer:
On your computer, open Google Calendar.
At the top right corner, click Settings. Settings.
At the left, click View options.
Choose your settings. Changes are automatically saved.
Explanation:
Brain-list please
Answer:
The layout command group is used to change the views
Explanation:
Which is an advantage that electronic scheduling tools have over paper calendars?
Electronic scheduling tools work better for people who are highly visual.
Electronic scheduling tools require additional supplies to be used.
Electronic scheduling tools have automatic reminders that can be set up.
Electronic scheduling tools contain days and weeks that can be color coded.
Answer: Electronic Scheduling tools have automatic reminders that can be set up.
Explanation:
By using this automatic reminder you can have it remind you before you have to do something or have a all day reminder.
I need help. My teachers use this website to teach us, instead of them teaching, and there is new videos and assignments every week. I haven't done it in quite some time, and am now several weeks behind. is there any tips to help me catch up and stay on track?? please give long and helpful answers
Answer:
Try your best. Try to do as much as you can each week. Try to manage your time by dedicating a certain amount of days and hours so you can catch up. Also, if you need help, just come to brainly and ask questions and people can help you.
Good Luck!
CA U ANSWER IN 5min. well lets find out ANSWER HERE. :)
Answer:
Both are True
I hope this helps!
Answer:
Explanation:
12 is 1
and 13 is false but i aint so sure
python 3.4 code practice question 2
“Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out “Error - cannot divide by zero.”
numerator = int(input("Enter a number: "))
denominator = int(input("Enter a number: "))
if denominator != 0:
print(numerator/denominator)
else:
print("Error - cannot divide by zero.")
The fraction can only be described as "undefined" if the denominator is ever 0.
Explain about the denominator is zero?
The mathematical error (not specified) of dividing a number by zero can be graciously overcame by using exception handling. The output of division by zero will be displayed as infinity if you write code without employing exception handling, which cannot be further processed.
A fraction cannot have zero as the denominator since zero cannot be divided by anything. The reason is that you get back 6 when you multiply the answer, 2, by the divisor, 3. Because the denominator cannot be zero, the fraction is invalid and has no value.
"Enter a number: " input = int numerator
Denominator: int ("Enter a number: "); input;
if the numerator!= 0
print(numerator/denominator)
else:
print("Error - cannot divide by zero")
("Error - cannot divide by zero.")
To learn more about denominator is zero refer to:
https://brainly.com/question/17546250
#SPJ2
You have video-recorded a friend’s birthday party. You compressed the video so it uploads quickly. What are some signs that you may have compressed the video too much? Choose all that apply.
graphical glitches
choppy frames
motion that is not disjointed from frame to frame
sound that does not match motion
picture quality that is not distorted
Answer:
(A) graphical glitches (B) choppy frames (D) sound that does not match motion
Explanation:
I did the assignment and (A) (B) (D) were correct.
hope it helps
4.9 Code Practice: Question 3
total = 0
for x in range(99, 0, -1):
total += x
print(total)
I hope this helps!
The program adds displays the sum of integers from 99 decreased by 1 until 0 and displays the running total for each step. The program written in python 3 goes thus :
running_total = 0
#initialize a running total variable which hold the sum of all the iterations
for num in range(99, 0, -1):
#using a for loop, which accepts a range starting from 99 and decreases by 1 until the 0
running_total += num
#for each iterated value, add the value to the running total variable
print(running_total)
#display the running total for each iteration.
A sample run of the program ls attached.
Learn more : https://brainly.com/question/19115265
Complete the sentence.
A
receives a request from a computer and sends the request on to another device within its network.
Server
Router
Switch
Answer:
router is the answer i think
A receives a request from a computer and sends the request to another device within its network known as a router. Then the correct option is B.
What is a router?A router is defined as the junction where the number of the networks meets for transferring between the devices.
The router is a device that connects the number of devices on a single network.
A receives a request from a computer and sends the request to another device within its network known as a router.
Thus, the correct option is B.
More about the router link is given below.
https://brainly.com/question/15851772
#SPJ2
1. What is a digital networking app?
Answer:
Digital Networking is a web based and mobile app that makes networking today easy and meaningful.
Explanation:
The sheep in the image below is an example of which of the following?
balanced space
positive space
negative space
neutral space
Answer:
balanced space.
Explanation:
This is a edu guess.
Choose the term that makes the sentence true.
A STOP error in Windows is also known as a
screen of death because of the background color of the message screen.
White
Blue
Black
Red
Answer:
Blue screen of death
is spin to win paying or is a scam app
Answer:
scam bro.
Explanation:
Answer:
yes it's a scam app when I tried it and after a few days it hasn't been delivered to my house though
Question 6 of 10
When should you forward instead of replying to an email?
A. When you want the original sender to know someone was left off
the list
B. When the recipient was not included on the original email
C. When you do not want to Reply All
D. When you want to ensure privacy
SUBMIT
Answer:
C
Explanation:
Its C because if someone else was added they could see the email as well.
Jon wants to assign a value to the favorite food variable: favoriteFood! = "Pizza" but gets an error message. What does he need to fix for the
code to work?
O Delete the symbol in the string.
O Put quotations around the string.
O Remove the exclamation mark from the variable name.
O Add a space between the words in the variable name.
Answer:
The answer is C.
Explanation:
There cannot be any type of punctuation in the variable.
Jon wants to assign a value to the favorite food variable: favorite food! = "Pizza" but gets an error message by Removing the exclamation mark from the variable name it will fix for the code to work.
What is code?In laptop programming, code refers back to the set of instructions, or a machine of rules, written in a selected programming language (i.e., the supply code).
If you've got ever observed an exclamation mark (!) earlier than the variable in a person's JavaScript code the negation operator (!) definitely simply reverses the means of its operand. ! is the logical now no longer operator in javascript.
Read more about the javascript:
https://brainly.com/question/27683041
#SPJ2
Any attribute modifier that can be used in a external or internal CSS style can be applied on a _____.
multiple-line basis
single coded line
multiple coded line
single-line basis
Answer:
D single line basis
Explanation:
Listening bro
Where can you find thousands of templates for Excel?
O Home tab
Page Layout tab
Backstage View
O
Insert
Answer: The answer is C. backstage view
Explanation: JUST ANWERED
Answer:
c backstage
Explanation:
Choose the following "for" loops that repeat 5 times. Mark all that apply.
A. for i in range(5,10)
B. for i in range(1,5)
C. for i in range(10,2)
D. for i in range(5)
Answer:
The answer would A
Explanation:
Two types of are desktop computers and notebook computer
Answer:
personal computer is the correct answer.
Two types of personal computer are desktop computers and notebook computer. Thus, option A is correct.
Today personal computer is changed to laptop mode. Personal computer is made of CPU, monitor, keyboard, printer and mouse. All input device and output device connected with wire or without wire.
Personal computers are also called as desktop or workstation. These days all become compatible device which is called as laptop. Basically all input devices and output device are fixed in laptop so end user can carry the laptop and used anywhere.
Laptop is charged and used, whereas desktop or workstation just fixed in the table and used it.
Learn more about computer on:
https://brainly.com/question/32297638
#SPJ2
What does an Information security analysts do?
Answer:
Information security analysts install software, such as firewalls, to protect computer networks. Information security analysts plan and carry out security measures to protect an organization's computer networks and systems. Their responsibilities are continually expanding as the number of cyberattacks increases.
Explanation:
hope this helps
PLEASE ANSWER FAST.one of the barriers for early "talkies" was the need to manually crank the projector and manually synchronize the audio and film, which resulted in uneven quality based on operator skill true or false
Answer:?
Explanation:?
what is the difference between second generation and third generation of computer
Answer:
The main difference between second generation (2G) and third generation (3G) technology is data. 2G services were developed with mostly voice services in mind, but are capable of providing relatively slow (14.4kbps) speed data services.