Isa wants to find out if his co-worker Alexis is available for an event on Wednesday, February 10th. Which calendar
view should he use?

O Schedule View

O Day View

O Week View

O Appointment View


Please help ASAP!!!!!!!!!!!

Answers

Answer 1
Appoint view
Hope this helps

Related Questions

There are eight primitive data types in Java. If the the size of 4 different datatype sizes are as follows then what is maximum value they can store? Show using the chart as in our example.

Answers

Answer and Explanation:

The eight primitive data types in Java include:

byte , short , int , long , float , double , boolean and char.

By size of datatype we mean the amount of memory the data type occupies. For a 32-bit processor/CPU,

The size of int data type(with whole numbers from -2,147,483,648 to 2,147,483,647) in Java is 4 bytes

The size of byte data type is 1 byte

The size of short data type is 2 bytes

The size of long data type is 8 bytes

how much video does a 10gb video hold i will give brainliest for first correct answer

Answers

Answer:

2,000 songs

Explanation:

Programming Exercise 11 in Chapter 8 explains how to add large integers using arrays. However, in that exercise, the program could add only integers of, at most, 20 digits. This chapter explains how to work with dynamic integers. Design a class named largeIntegers such that an object of this class can store an integer of any number of digits. Add operations to add, subtract, multiply, and compare integers stored in two objects. Also add constructors to properly initialize objects and functions to set, retrieve, and print the values of objects. Write a program to test your class.

Answers

Answer:

Explanation:

The following is written in Java. It creates a class called largeIntegers that creates objects of the built-in BigInteger class to handle operations on very large numbers. The class contains the add, subtract, multiply, compare, toString methods as well as the getter and setter method for the BigInteger. A test class has been provided and the output can be seen in the attached picture below where two numbers are created and added together. Due to technical difficulties, I have added the code as a txt file below.

Which of the components of the systems model provides information so
the system can adjust its function? *
A. input
B. feedback
C. process
D. output

Answers

Answer: Feedback

Explanation:

The input components of the systems model can consist of resources like people, energy, tools, capital, etc.

The feedback components of the systems model provides information so

the system can adjust its function. An example of the feedback mechanism for a system is the progress bar which shows when one is downloading a file on iTunes.

An example of computer hardware is ? A. keyboard B. app C. web browser D. operating system

Answers

Answer:

D. Operating system

Explanation:

A keyboard is a secondary item like a mouse and is not apart of computer hardware and app is also not a computer hardware because its coding not hardware. Web Browser is a Internet thing not hardware.

Answer:

option A

Explanation:

Computer hardware is the physical parts or components of a computer, such as the monitor, mouse, keyboard.

True or False: Using “OR” between search terms helps narrow down

Answers

the answer is true. nemenekekkelelsps
Yeah the answer is true

What does GUI stands for and what is it function?​

Answers

Answer:

A GUI (graphical user interface) is a system of interactive visual components for computer software. A GUI displays objects that convey information, and represent actions that can be taken by the user. The objects change color, size, or visibility when the user interacts with them.

Answer:

[tex]\huge\boxed{Answer\hookleftarrow}[/tex]

GUI stands for Graphical User Interface.

It's main functions are to :-

present data files & apps in a graphical format (icons) .

GUI is easy to use & enables you to easily exchange information between software using cut and paste or 'drag and drop'.

ʰᵒᵖᵉ ⁱᵗ ʰᵉˡᵖˢ

# ꧁❣ RainbowSalt2²2² ࿐

Select three advantages of using Cascading Style Sheets.

A) They make it possible to give specific tags specific rules.

B) They make it simple to design web pages if you do not know HTML.

C) They make it easy to edit multiple parts of the document at once.

D) They provide information about changes made to websites.

E) They cut down on the amount of code needed.

Answers

Answer:

They make it easy to edit multiple parts of the document at once., They cut down on the amount of code needed., They make it possible to give specific tags specific rules.

In what way, if any, are scripting languages different from markup languages?

A) Markup languages tell the computer what content to present, while scripting languages make things run faster.

B) Markup languages tell a single computer what to do, while scripting languages help computers communicate with each other.

C) Scripting languages tell the computer what content to present, while markup languages make things run faster.

D) Scripting languages tell a single computer what to do, while markup languages help computers communicate with each other.

Answers

Answer:

Markup languages tell the computer what content to present, while scripting languages make things run faster. A

Answer:

It's most likely A in edge.

Explanation:

My father works in IT, and I am taking a Fundamentals of Dig. Media class. If I remember correctly, the lesson for markup languages said that markup is used for online documents, like Wiki for example. Thus, I believe it is A.

write a program to find area of rectangle​

Answers

Answer:

program by INPUT statement

Explanation:

CLS

REM to find the area of rectangle

INPUT L

INPUT B

LET AOR = L * B

LET " AOR = "; AOR

END                

                                                                                                     Press F5

Area of Rectangle - Python

Assuming that the question needs Python program to find the area of a rectangle. Since we are not given in the Question only by which programming language we write the required program, therefore here we use python program.

Before we write the required program for this question, let's first take some hint for better understanding and know that what we need to do in this program.

Let us take a look at what we need to do in this program.

We know that, the area of rectangle is defined as the product of its length and breadth respectively.

→ Area of rectangle = length * breadth

First we would take user input to accept the values of length and breadth of the rectangle from the user.

We then calculate the area of the rectangle using the required formula of it.

The Program

# Program to find the area of rectangle

# Take user input to accept length

length = float(input("Enter the measure of length: "))

# Take input to accept breadth

breadth = float(input("Enter the measure of breadth: "))

# Calculate the area of rectangle using the formula

area = length * breadth

# Assign the result

print("The area of rectangle is", area, "square units.")

[Hashtag (#) is only a single line comment in Python, It's not printed in the program, I have used them here for understanding the program step-by-step. If you want then you can remove those comments from the program.]

The Output

Enter the measure of length: 5

Enter the measure of breadth: 10

The area of rectangle is 50.0 square units.

What is the primary function of RAM?


What is the basic unit of measurement for RAM specs?


A computer with sufficient RAM will be able to

with greater ease.


What can you do if a computer is running slowly and you suspect it is because you have insufficient

RAM?


How many bits are in one computer byte?





those questions have a drop-down box.

Answers

Answer :

1 . Stores Information temporarily

2 . byte

3 . switch between applications

4 . upgrade the RAM

5 . 8

JUST DID IT (Edge 2021)

What is the explanation of line 21-25

Answers

Answer:

The code is checking if a word in the word list matches a certain length and the first letter matches a certain letter... the for loop is what increments through the word list checking each word one by one for the specified conditions. If the word meets the conditions it is added to an array called filteredWordList.

Explanation:

Write a program that takes as input: - the current hour - the number of hours to add and outputs the new hour. For example, if the inputs are 2 (as the current hour) and 51 (as the number of hours to add), your program should output the answer from part (a) of this problem. Note that your program should always output an integer between 1 and 12. We will get you started with this program with the two lines that gather the input from the user. You'll need to write the rest.

Answers

Answer:

The program in Python is as follows:

cTime = int(input("Current Hour: "))

while(cTime <1 ):

   cTime = int(input("Current Hour: "))

aTime = int(input("Additional Hours: "))

while(aTime <0):

   aTime = int(input("Current Hour: "))

tTime = cTime + aTime

tTime%=12

print("New:",tTime,"hours")

Explanation:

This gets input for current time

cTime = int(input("Current Hour: "))

The following ensures that the user enters a time greater than 0

while(cTime <1 ):

   cTime = int(input("Current Hour: "))

This gets input for additional time

aTime = int(input("Additional Hours: "))

The following ensures that the user enters a positive time

while(aTime <0):

   aTime = int(input("Current Hour: "))

This calculate the new hours

tTime = cTime + aTime

This gets the hour equivalent between 1 and 12

tTime%=12

This prints the new hour

print("New:",tTime,"hours")

In the digital media process, what is one of the differences between the plan/design stage and the create/develop stage?

A) Scripts, storyboards, and flowcharts are created in the plan/design stage, and utilized in the create/develop stage.

B) Scripts, storyboards, and flowcharts are involved with the plan/design stage, but not with the create/develop stage.

C) Scripts, storyboards, and flowcharts are involved with the create/develop stage, but not with the plan/design stage.

D) Scripts, storyboards, and flowcharts are created in the create/develop stage, and utilized in the plan/design stage.

Answers

Answer:

Scripts, storyboards, and flowcharts are created in the plan/design stage, and utilized in the create/develop stage. A

Answer:

A.) Scripts, storyboards, and flowcharts are created in the plan/design stage, but utilized in the create/develop stage.

In cell L2, enter a formula using the IF and AND functions, as well as structured references to determine if Adam Moriarty can be a bunk leader. a. The logical test in the IF function should determine if the staff member’s Service Years is greater than 4 AND the staff member’s Leadership Training status is "Yes". Remember to use a structured reference to the Service Years and the Leadership Training columns. b. The function should return the text Yes if a staff member meets both of those criteria. c. The function should return the text No if a staff member meets none or only one of those criteria.

Answers

Answer:

Enter the following formula in L2

=IF(AND([Service Year]>4,[Leadership Training]="Yes"),"Yes","No")

Explanation:

Analyzing the formula:

[tex]= \to[/tex] Begin the formula with an equal to sign

IF [tex]\to[/tex] This indicates that the formula uses an "IF" function

AND [tex]\to[/tex] This indicates that there are at least 2 conditions in the function; all of which must be true for the function to return true.

The conditions in the formula are:

[Service Year]>4;  and [Leadership Training]="Yes"

Notice that the column names (service year and leadership training) are called and not the cell names (e.g. K2); this is what is referred to as structured referencing.

Having said that, both conditions must be true for the function to return true (because we use the AND clause to join both functions)

The possible results in the formula are:

"Yes","No"

If both conditions are true, then the value of L2 will be "Yes"

If otherwise, then the value of L2 will be "No"

Please please help me
3. Which of the following are the tips for safe internet browsing?

Customize your security settings.
Turn on Two-Factor Authentication whenever possible.
Bookmark important sites.
O All of the above

Answers

Answer:

increase your browser security settings

The tips for safe internet browsing is to customize your security settings. The correct option is A.

What is internet browsing?

Browsing means searching or exploring the internet. Nowadays, people search on the internet for getting information about something. It needs a computer or an electronic device in which there is access to the internet.

Internet is a wireless connection of various computers together. There are different types of internet connections, like Wi-Fi, hotspot, wire internet, etc. It is used in various things like studying, watching movies, etc. which is necessary for this current time.

Safe internet browsing means being safe from internet crimes, like cyber crimes and saving the computer from viruses, and saving your data on the computer. Do not open unknown sites and emails.

Thus, the correct option is A. Customize your security settings.

To learn more about internet browsing, refer to the link:

https://brainly.com/question/9909761

#SPJ5

Select three advantages to using digital video.

A) Digital video appears to have more depth.

B) Digital video can capture a greater range of brightness.

C) Digital video is much less expensive than film.

D) Digital video be easily edited and shared.

E) Digital video can be viewed in real time where it was taken.

Answers

C. E and D, I believe. I apologize if I’m incorrect!

Answer:

Digital video be easily edited and shared., Digital video is much less expensive than film., Digital video can be viewed in real time where it was taken.

Explanation:

What information is automatically generated from the company identifier and product name?

A.
project name
B.
class prefix
C.
bundle identifier
D.
organization name

Answers

I think it’s project name, but I’m not 100% positive

What is the organizational management practices on planning during a pandemic like corona virus.

Answers

Answer:

wear a mask use hand sanitizer dont get in contact with anyone between 6 feet

Explanation:

Scientists have put genes into potato plants to make vaccines against cholera and hepatitis B.This type of research is called

Answers

Answer:

Edible vaccines

Explanation:

In the recent years, biotechnologist have developed a new concept known as the edible vaccines. The Edible vaccines are a subunit vaccines. Here the selected genes are first introduced into the plants and then the transgenic plant is induced to make the encoded protein. Foods like potato, corn, banana, soybean, lettuce, legumes and rice are used for these applications.

These edible vaccines can reduce diseases like the cholera, Hepatitis-B, diarrhea and other disease.

Explica la importancia que tiene el plan de trabajo (cronograma) en los proyectos y porque se realiza antes de ejecutar la solución seleccionada. ayuda es para hoy :c

Answers

Answer:

El plan de trabajo permite delimitar la necesidad a la cual se debe responder con una solución (descripción del problema), los hitos que se deben alcanzar (objetivos general y específico), los recursos requeridos para lograr desarrollar y aplicar la solución (marco teórico), los posibles beneficios derivados del proceso exitoso (justificación del proyecto) y una administración racional y realistas de los recursos a disposición en cuanto a disponibilidad, tiempo y personal mediante una secuenciación de tareas (i.e. diagramas de Gantt), todo reduce el componente iterativo inherente a diseño y producción de un producto, permite prever posibles imprevistos y mantener una perspectiva realista y una eficiencia aceptable en cuanto a presupuesto, metodologías y tecnologías a usar.

El plan de trabajo debe incluir principios de ingeniería concurrente para minimizar para manera mejor los posibles imprevistos, usualmente difíciles de manera con principios de ingeniería secuencial.

Explanation:

El plan de trabajo permite delimitar la necesidad a la cual se debe responder con una solución (descripción del problema), los hitos que se deben alcanzar (objetivos general y específico), los recursos requeridos para lograr desarrollar y aplicar la solución (marco teórico), los posibles beneficios derivados del proceso exitoso (justificación) y una administración racional y realistas de los recursos a disposición en cuanto a disponibilidad, tiempo y personal mediante una secuenciación de tareas (i.e. diagramas de Gantt), todo reduce el componente iterativo inherente a diseño y producción de un producto, permite prever posibles imprevistos y mantener una perspectiva realista y una eficiencia aceptable en cuanto a presupuesto, metodologías y tecnologías a usar.

El plan de trabajo debe incluir principios de ingeniería concurrente para minimizar para manera mejor los posibles imprevistos, usualmente difíciles de manera con principios de ingeniería secuencial.

Explain the effects of disposing electronic equipments to the environment ​

Answers

Answer:

When electronics are improperly disposed and end up in landfills, toxic chemicals are released, impacting the earth's air, soil, water and ultimately, human health.

- Items in a ______ are enclosed in square brackets​

Answers

Answer:

list.

Explanation:

Items in a list are enclosed in square brackets​

spam and i report
Maurice wants to create a variable to store the name of the second-best taco place. Maurice writes the line of code as 2ndtaco = "Tio Dan's" but gets an error message. What is the problem with Maurice’s code?

A.
There can’t be an apostrophe ' in a variable name.

B.
The equals sign should be a dash.

C.
The type of variable wasn’t specified.

D.
A variable name can’t begin with a number.

Answers

Answer:

option d is the correct answer

Answer:

For your other question I think it's true

Explanation:

Write 4 types of viruses , explain them briefly.

Answers

I can help with two.

Web Scripting Virus, A sneaky virus that targets popular websites. What this virus does is overwrite code on a website and insert links that can install malicious software on your device. Web scripting viruses can steal your cookies and use the information to post on your behalf on the infected website.

FILE INFECTOR, targeting executable files (.exe), file infector viruses slow down programs and damage system files when a user runs them.

What will the Document search option search through?

Answers

Answer:

hi

Explanation:

nynttnynybynynynumkol0

place the features or components under the correct location. powerpoint start screen or power point user interface: online templates, dialog box launchers, thumbnail pane, slide pane, themes search field, recent files

Answers

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation: Edg 2021

Answer:

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation:

Edg 2021 just took test. Good Luck, Keep Going!!


Which tab is used to create a
new e-mail?

O File
O View
O Folder
O Home

Please help!!!!!!!!!!!!!

Answers

Answer:

Mail tab

Explanation:

Please mark as brainliest answer as it will also give you 3 points

File , brainliest answer. Hope this helps

C. Assessment Application
MATCHING TYPE
Directions: Match column A with column B. Write the letter of your
answer on the space provided.
А
B В
1. Disk Cleanup
A. Repairs and cleans the Windows Registry
2. ASC
3. Scandisk
B. Repairs registry errors, remove "junk" files,
and ensure your PC is fully protected
C. Creates and deletes disk partitions
D. Accesses various information's about your
computer
E. Tunes up and maintains your PC automatically
F. Optimizes use of space on a disk.
4. ASC Pro
5. Format
6. CPU-Z
7. Defrag
G. Tunes up and maintains your PC, with anti-
spyware, privacy protection, and system
cleaning functions
H. Prepares a hard drive prior to use.
I. Checks for physical errors on the disk surface
J. Removes unused files.
8. ARO 2013
9. Fdisk
10. RegDoctor
--00 End of the Module 00--​

Answers

Answer:

[tex]\begin{array}{lll}&A&B\\1&Disk \ cleanup& Removes \ unused \ files\\2&ASC&Tunes \ up \ and \ mantains \ your \ PC \ automatically\\3&Scan \ disk &Checks \ and \ removes \ errors \ on \ the \ disk \ surface\\4&ASC \ Pro& Tunes \ up \ and \ maintains \ your \ PC, \ with \ anti-spyware, \ privacy \ prot \\\\\end{array}[/tex][tex]\begin{array}{lll}\\5&Format&Prepares \ the \ hard\ drive\ prior \ to \ use\\6&CPU-Z&Accesses \ various \ informations \ about \ your \ computer\\7&De-frag&Optimizes \ use \ of \ space \ on \ disk\\8&ARO \ 2013& Repirs \ registry \ errors, \ removes \ "junk" \ files\\9&Fdisk&Creates \ and \ deletes \ disk \ partitions\\10&RegDoctor&Repair \ and \ cleans \ the \ windows \ registry \end{array}\right][/tex]

Explanation:

in your own ideas what are the disadvantages of participating in a videoconference write your answer inside the circle​

Answers

Some disadvantages of taking part in a video-conference are:

1) Lack of communication from social cues (social cues are what we use to see if someone is in a good or bad mood)

2) There is a high chance of unstable network connection.

3) Technical and personal issues because not everyone is comfortable speaking on a video-conference platform.

4) It causes more stress due to the lack of organization when preparing meetings (because it’s so easy to just get on a device without preparing anything beforehand).

Hope this helped!
Other Questions
What are impacts of urbanization on land use in Ghana? Which of the following is not a possible value for a probability? (A p e x)A. 0.001B. 1/16C. 0.82D. 5/4 Which of the following was NOT a reason given in favor of restricting immigration?1) Immigrants took American jobs.2) Immigrants brought undesirable customs to the U.S.3) Immigrants introduced unwelcome political ideas.4) Immigrants took too much land away from Western settlers. Gold is a precious metal that is chemically unreactive. It is used mainly in jewelry, dentistry, and electronic devices. A piece of gold ingot with a mass of 301 g has a volume of 15.6 cm3. Calculate the density of gold. please help asap find x UrgentPlease help!Factorise Name the good which is the largest export of Kenya. Suggest a reason why that item is the largest import of Kenya. Simplify by rationalizing the denominator.152 / 270 Describe the general properties of rotations. Include a discussion of the properties of rigid transformations ,and line segments connecting corresponding points to each other and to the center of rotation Part 2: Questions What is the total cost of the entire bill (all four meals), including tip? 153.88Write an expression using fractions to show how to determine the amount that each person will pay. Then calculate each person's contributions showing all steps in long division.If each person paid an equal amount, who would save the most money? Explain your reasoning using at least two complete sentences.I NEED HELP ON THE LAST 2 QUESTIONS you can use this but make sure you put some other names Which of the following correctly describes the arrangement of the phospholipids in the lipid bilayer of the cell membrane? *Phospholipids line up head to head, so the phosphate heads are separated from water.Phospholipids line up head to tail, because opposites attract.Phospholipids line up tail to tail, so the fatty acid tails are separated from water.Phospholipids line up with no pattern, because they're molecules which move randomly. Demonstrate the principles of health care finance for revenue management through the intended application of cost reporting and variances. Consider the following time series. t 1 2 3 4 5 yt 6 10 8 13 15 (a) Choose the correct time series plot. (i) (ii) (iii) (iv) What type of pattern exists in the data? (b) Use simple linear regression analysis to find the parameters for the line that minimizes MSE for this time series. If required, round your answers to two decimal places. y-intercept, b0 = 4.1 Slope, b1 = 2.1 MSE = ???? (c) What is the forecast for t = 6? If required, round your answer to one decimal place. 16.7 I know how to do it all but the MSE. When purified virulent pneumococci DNA was introduced to avirulent pneumococci, Avery and his colleagues observed _____. Multiple choice question. no death in test animals only growth of avirulent pneumococci, indicating DNA was NOT the agent of transformation death of test mice growth of virulent pneumococci, indicating DNA was the agent of transformation CalculatorWhat is MPut your answer in the box Describe the metabolic pathways in the monarch butterfly that take advantage of milkweed nectar to convert it into an energy currency. And George, while his intelligence was way above normal,had a little mental handicap radio in his ear. He wasrequired by law to wear it at all times. It was tuned to agovernment transmitter. Every twenty seconds or so, thetransmitter would send out some sharp noise to keeppeople like George from taking unfair advantage of theirbrains.Which statement best describes the overall impact of the setting?A. The emphasis on the role of government in people's lives impliesthat society has gone too far to ensure equality.B. George and Hazel's watching television at home implies thatpeople have become isolated from each other.C. The description of George suggests that he is too afraid to use hisintelligence to improve society.D. George's transmitter is used to symbolize the excuses people useto prevent them from reaching their full potential. Which action was intended to promote human rights?A. Bill Clinton chose not to involve the U.S. military in ethnic violence in SomaliaB. Ronald Reagan supported nondemocratic countries that were allies of the United States. C. Congress passed the USA PATRIOT Act.D. George H. W. Bush supported democratic reforms in former Soviet territories. I know this question's been asked before but I couldn't find an answer that was one of these choices. Find the measure of the arc Qu nombre recibe la incapacidad de una poblacin para reponerse despus de un desastre