what are the steps to save work with title on word

Answers

Answer 1

The step to save work with a title on the word is Click FILE > Save, pick or browse to a folder, type a name for your document in the File name box, and click Save.

How do you put a title on a Word document?

To put a title in a word document, follow these steps:

Choose File. Open Word and click the File menu item in the Main Tabs.Enter the Title here. Enter your evocative title in the text box labeled Title on the Info screen. Feedback.

Therefore, the step to save work with a title on the word is Click FILE > Save, pick or browse to a folder, type a name for your document in the File name box, and click Save.

To learn more about the title page in Word, refer to the link:

https://brainly.com/question/28499338

#SPJ9


Related Questions

if there are two or more attributes being underlined in relational logical schema, these attributes together is called

Answers

A composite key is a combination of two or more attributes that uniquely identifies a record in a table. Each attribute that makes up the composite key can be used individually to identify a record, but when they are used together they form a unique identifier.

What is Identifier?
An identifier is a name given to a variable, function, class, module, or other object in a program. It is used to refer to that object from elsewhere in the same program. Identifiers are often used to name variables that store values in memory, such as numbers, text, or more complex data structures. Identifiers must follow a specific syntax and naming conventions, depending on the programming language in use. This helps ensure that the code is easy to read and understand.

To know more about Identifier
https://brainly.com/question/14437126
#SPJ4

how do you display hyperlinks without an underline?

Answers

You can display hyperlinks without an underline by using the CSS "text-decoration: none" property. You can add this to the link's CSS selector

a {

  text-decoration: none;

}

What is Hyperlinks?
Hyperlinks are pieces of code that allow users to click on text or images, and be taken to a different webpage or document. They are often used to navigate between different webpages within a website, as well as to link to other websites. Hyperlinks can also be used to link to files such as PDFs, Word documents, or even images. Hyperlinks are created using HTML code, which is a type of programming language used to create websites.

To know more about Hyperlinks
https://brainly.com/question/23413848
#SPJ4

which is the name of the dialog box used to insert a cell or group of cells in a worksheet? question 8 options: insert range insert insert cells insert data

Answers

Answer: The Answer is Insert

Explanation:

I took the test

To add cells to a table, use the Insert Cells dialog box. Custom tables are not compatible with this dialogue. There are the following alternatives. The insert dialogue box is made easier to see by pressing CTRL + SHIFT + =.

A dialog box: what is it?

To gather user feedback, a programme can create a temporary window known as a dialogue box.To learn more about the user's choices for menu items, applications frequently use dialog windows.

What are dialog boxes and menus?

Using menus, we can effectively group/hide related options to keep the screen from getting cluttered. Dialog Boxes give us the ability to briefly divert the user's attention from the main window in order to request information or pose queries that are necessary at particular times in the application.

Learn more about dialog box here:

https://brainly.com/question/28445405

#SPJ1

50 POINTS


1. int f = 8;

out.println("$"+f+10);

what is the output and how did you get that?


2. int e = 12;

e = 15;

out.println(e);

what is the output and how did you get that?


3. int i =7, j = 10;

j *=i+2;

out.println( i+" "+j);

what is the output and how did you get that?



THOUGHTFUL ANSWER OR NOT REPORT

Answers

The output of the code is "$810".

The expression "$" + f + 10 is evaluated as follows:

' f ' is an integer with the value of 8, so f + 10 evaluates to 18.

The string "$" is concatenated with the result of f + 10, resulting in the string "$18".

The final result is printed to the console using the println method, so the output is "$810".

The output of the code is "15".

The code sets the value of ' e ' to ' 12 ' in the first line, then re-assigns it to ' 15 ' in the second line. The final value of ' e ' is ' 15 '.

In the third line, the value of ' e ' is printed to the console using the ' println ' method, so the output is "15".

The expression j *= i + 2 means to multiply j by the value of i + 2 and assign the result back to j. So in this case, j becomes j * (i + 2) = 10 * (7 + 2) = 10 * 9 = 90.

In the third line, the values of i and j are concatenated with a space in between and printed to the console using the println method, so the output is "7 29".

The Monte Carlo method was first developed during
WWII
to test _______________

Answers

Decision making by incorporating randomness and chance into a theoretical model.

Hw3. 12. Relative error evaluation as a student who has recently taken cs 357, paul is eager to put his knowledge learned in the class to use in real-world applications. He notices the weather forcast in champaign-urbana area is not very accurate and is determined to make it better. After a summer of hard work, he has finished implementing his new software for predicting wind speed. Eager to test how well his software performs, he uses it to predict the wind speed for the next days and then collects the actual wind data during these days. He stores both his predicted data and the actual data in numpy arrays. To understand how well paul's software performs, write a program to compute the maximum relative error of his prediction across these days. Hint: consider using numpy. Ndarray. Max to compute the maximum value element in an array. The setup code gives the following variables: name type description n int the number of days predicted numpy. Ndarray array of length representing the predicted wind speed for these days actual numpy. Ndarray array of length representing the actual wind speed for these days your code snippet should define the following variables: name type description max rel error float the maximum relative error of paul's prediction across these days

Answers

To compute the maximum relative error, we first compute the absolute difference between the predicted and actual wind speeds and divide it by the actual wind speed to get the relative error for each day.

Here's a code snippet in Python that computes the maximum relative error of Paul's wind speed predictions using NumPy:

import numpy as np

# Given variables

n = 7  # number of days predicted

predicted = np.array([10, 12, 8, 14, 16, 9, 11])  # predicted wind speed for these days

actual = np.array([11, 10, 12, 13, 15, 8, 10])  # actual wind speed for these days

# Compute maximum relative error

rel_error = np.abs(predicted - actual) / actual

max_rel_error = np.max(rel_error)

print("Maximum relative error:", max_rel_error)

In this example, we assume that Paul has predicted the wind speed for 7 days, and the predicted wind speeds are stored in the predicted NumPy array. The actual wind speeds for these days are stored in the actual NumPy array.

Learn more about NumPy :

https://brainly.com/question/12907977

#SPJ4

consider a dash system for which there are n video versions (at n different rates and qualities) and n audio versions (at n different rates and qualities). suppose we want to allow the player to choose at any time any of the n video versions and any of the n audio versions. if we create files so that the audio is mixed in with the video, so server sends only one media stream at given time, how many files will the server need to store (each a different url)?

Answers

The server needs to store n x n files, each with a unique URL, to allow the player to choose any of the n video versions and any of the n audio versions at any given time.

If we want to allow the player to choose any of the n video versions and any of the n audio versions at any given time, and the audio is mixed with the video, then the server needs to store n x n files.

For each of the n video versions, there are n audio versions that can be mixed with it, resulting in n x n possible combinations. Each of these combinations will need to be stored as a separate file on the server, with a unique URL.

Therefore, the total number of files the server needs to store is n x n, each with a different URL.

Let's say we have n video versions and n audio versions, where each video and audio version is represented by a unique quality and bit rate. To create a file that includes a specific video and audio combination, we need to mix the video and audio streams together. This means that the server needs to store n x n files, where each file is a unique combination of one video version and one audio version.

For example, let's say we have 3 video versions (V1, V2, V3) and 3 audio versions (A1, A2, A3). The server needs to store a file for each of the 9 possible combinations:

V1+A1V1+A2V1+A3V2+A1V2+A2V2+A3V3+A1V3+A2V3+A3

Each of these combinations is a unique media stream and will require a separate URL. Therefore, the server needs to store 9 different files, each with a unique URL, to allow the player to choose any of the n video versions and any of the n audio versions at any given time.

Learn more about URL here:

https://brainly.com/question/18355442

#SPJ4

13. which of the following is a private ip address range? (select one or more valid choices) a) 171.31.1.200 b) 192.168.250.250 c) 10.255.255.10 d) all of the above

Answers

Private ip address ranges are 10.0.0.0 to 10.255.255.255 172.16.0.0 to 172.31.255.255 192.168.0.0 to 192.168.255.255

Option B and C are correct.

IP address :

The primary protocol for internet communication is IP, which stands for Internet Protocol. It is the standard protocol that lets computers, mobile phones, and other devices connected to the internet communicate with one another. IP provides a system of addressing so that each device can be located on the network and defines how data is formatted and transmitted. Additionally, IP provides a method for transferring data between devices. The IP protocol connects users, devices, and services to the network. It is the foundation of the entire internet.

Learn more about IP address :

brainly.com/question/27961221

#SPJ4

1. Complete the following c programs:
Write a program in c to read n number of values in an array and display it in reverse order.
2.Write a program in c to copy the elements of one array into another.
3. Write a program in c to count a total number of duplicate elements in an array

Answers

a program in c to count a total number of duplicate elements in an array.

What is the elements ?

Elements are the building blocks of all matter. They are substances that cannot be broken down into any other substances by chemical means. Elements are identified by their atomic number, which is the number of protons in the nucleus of an atom. There are 118 elements known to man, with the most common being oxygen, hydrogen, carbon, nitrogen, and calcium. All elements have unique physical and chemical properties that allow them to combine and interact with other elements in different ways.

To learn more about elements

https://brainly.com/question/26624021

#SPJ1

file problems.java contains a simple java program that contains a number of syntax errors. save the program to your directory, study it and correct as many of the errors as you can find. then compile the program; if there are still errors, correct them. some things to remember:

Answers

When a Java program contains syntax errors, the code cannot be compiled, and it will not run properly. it is essential to correct syntax errors in the code to ensure that the program runs as expected.

What are syntax errors?

When code contains syntax errors, it cannot be compiled and will not run properly. The compiler will typically identify the location and type of the error, which can help the programmer to narrow down the source of the problem.

Syntax errors are one of the most common types of programming errors and can be relatively easy to fix, as long as the programmer knows the correct syntax and understands the error messages generated by the compiler. It's important to correct syntax errors as soon as possible to ensure that the code runs properly and produces the intended results.

To correct syntax errors in a Java program, here are some general steps to follow:

1. Identify the error messages: When you compile a Java program that contains syntax errors, the compiler will display error messages that indicate where the errors are located in the code. Read these messages carefully and identify the location and type of each error.

2. Correct the errors: Once you have identified the errors, go to the locations in the code where the errors are reported and correct them. Common syntax errors include missing semicolons, parentheses, or curly braces, as well as misspelled keywords or variable names.

3. Re-compile the program: After making changes to the code, re-compile the program to check for any additional errors. Repeat the process of identifying and correcting errors until the program compiles successfully.

Therefore, Test the program Once the program compiles without errors, test it to make sure it runs as expected and produces the correct output.

To learn more about  the syntax errors click here

https://brainly.com/question/28957248

#SPJ4

assume the variables x and y have each been assigned an integer. write a fragment of code that assigns the greater of these two variables to another variable named max.

Answers

The code that assigns the greater of these two variables to another variable named max is: if (x > y) { int max = x;} else { int max = y;}

What's a variable?

In a computer program, a variable is a named memory location used to temporarily store data while the program is running. One way to think of a variable is as a container that holds a value that can change as the program runs.

Before they can be used in a program, variables must be declared or defined, and each variable must have a unique name. The data type of the variable is what determines the kind of data it can hold. Integers, floating-point numbers, characters, and strings are all common data types. Variables are necessary for programming because they are used to store data in memory.

Learn more about variables:

brainly.com/question/29614058

#SPJ4

What are the best steps to learn a 2d animation software?

Answers

Answer:

this is the correct answer

The best steps to learn a 2D animation software are as follows:
1. Familiarize yourself with the user interface of the software.
2. Read tutorials and watch videos from experts on how to use the software.
3. Practice with simple projects like animations, short films, or motion graphics.
4. Get feedback on your projects from other professionals in the field.
5. Attend online workshops or classes to learn more advanced techniques.
6. Experiment and try different approaches to create unique pieces.

A frequency distribution is a tabulation of n data values into k classes called bins. true. or false

Answers

It's true what is said here. In a frequency distribution, the bin widths are typically equal.

What do bins and classes mean?

When displaying numerical data, a histogram divides the data into "bins" of equal width. Each bin is represented graphically by a bar whose height reflects the number of data points it contains. Intervals, classes, and buckets are other names for bins.

What do data bins mean?

When grouping values in a chart, bins are single continuous value ranges. Binning data makes data visualisations easier to understand so that users can quickly identify outliers and gain a sense of the distribution of their data.

Learn more about bins here:

https://brainly.com/question/29381794

#SPJ1

As you learned in Chapter 3, many search tools offer Simple and Advanced Search options. Which of these search options are best to use when you... need more control over how to structure your search. want to do an initial exploration of what's available. want to limit your search to a certain date range. are looking for information on a broad topic.

Answers

Following are the type of searches

1. advanced search, 2. simple search, 3. Advanced search, 4. simple search

What is an advanced and simple search?

A thorough search of the entire dictionary text is done using the advanced search. Anywhere your term appears in the dictionary, it will discover it. This might appear as the title of an entry, a phrase within the definition of another word, a quotation, etc. Most searches will produce either too many or not enough results. Taking a look at hundreds of records takes a while. You can save a ton of time by making a small effort when creating search strings—what you write into the search box.

The default search box used by the majority of library databases is a straightforward one. All fields of the library database collection are searched for items. All terms or keywords typed in the search field are looked up.

To know more about advanced search, check out:

https://brainly.com/question/20014042

#SPJ1

a(n) defines the environment in which data can be managed and is used to work with the data in the database.

Answers

It provides a way to manipulate the data, such as adding, editing, and deleting records. It also provides a way to search and sort the data, as well as run queries and reports.

What is Data?
Data is information that is collected, organized and analyzed to draw conclusions and inform decisions. Data can be qualitative or quantitative, and it can be collected from a variety of sources, including surveys, questionnaires, polls, experiments, and observational studies. Data can be used to identify trends, relationships and patterns between variables, and it can help to inform decisions in many areas, such as business, economics, and public policy. Data is often visualized to make it easier to interpret, and to help make underlying patterns more clear.

To know more about Data
https://brainly.com/question/30492002
#SPJ4

What would happen if there is no option to save Temporary internet files (Cookies) while using the internet

Answers

When there is no option to keep temporary internet files (cookies) while browsing the internet, the user's browsing experience might suffer in numerous ways.

Login credentials: Because cookies are frequently used to save login credentials for websites, users may need to manually input their login information each time they visit a page if cookies are not kept. Cookies can also be used to remember users' specific settings, such as language preferences or display options. Users may need to modify these settings every time they visit a website if cookies are not used. Shopping cart items: Cookies can assist e-commerce internet websites remember things that users have placed to their shopping cart. Users may need to manually add products to their shopping cart if cookies are not present.

learn more about internet   here:

https://brainly.com/question/13308791

#SPJ4

why do entries in a local address resolution protocol (arp) table expire after a short amount of time?

Answers

Answer:

to allow for dynamic updates of the network

Explanation:

ARP is used to map an IP address to a physical (MAC) address on a local network, and the ARP table is used to store these mappings for quick access.

However, the physical addresses of devices on a network can change over time, for example due to replacement or failure of a device, or when a device moves from one network segment to another. To handle these changes, ARP entries are set to expire after a certain amount of time, typically a few minutes. This forces the device to send a new ARP request to update the mapping if it needs to communicate with the device again, which helps ensure that the ARP table always reflects the current state of the network.

By having ARP entries expire, the ARP table remains accurate and up-to-date, even in environments where devices are frequently added or removed from the network. This helps ensure that IP-to-MAC mappings are always accurate and helps prevent communication errors.

in your initial post, be sure to address each of the following: attach the pdf copy of your completed uml use case diagram for the driverpass system. be sure that you used proper uml notation. describe your uml use case diagram in a few sentences. what use cases did you capture? who are the different actors? did you capture all required functionality for the driverpass system? what challenges, if any, did you experience in using lucidchart? how did you overcome these challenges? thinking about the driverpass system as a whole, what are two technical requirements of your system design?

Answers

UML Use Case diagram models the system's functionality and interactions with actors to capture all use cases, ensuring it meets end- needs, with scalability & security as critical technical requirements.

A UML Use Case diagram is a visual representation of the system's functionality and the interactions between the system and its actors (users or external systems). It captures all possible use cases of a system and is used to model the requirements of the system.

The Use Case diagram typically includes the use cases (represented by ovals) that represent the functionality of the system, actors (represented by stick figures) that interact with the system, and the relationships between the actors and the use cases.

To create a UML Use Case diagram, one needs to identify all possible use cases and actors of the system, and then model them using the UML notation, which includes different types of relationships such as includes, extends, and generalization.

When creating a UML Use Case diagram for a system, it is essential to capture all the required functionality of the system and ensure that all actors that interact with the system are identified. This ensures that the system is designed to meet the needs of the end-users.

Creating UML Use Case diagrams can be challenging, especially for complex systems. One possible challenge is choosing the right level of detail to include in the diagram. However, this can be overcome by breaking the system down into smaller, manageable subsystems and creating separate Use Case diagrams for each subsystem.

Learn more about UML here:

https://brainly.com/question/28269854

#SPJ4

randy is an ethical hacker student. he has learned how nmap flag manipulation can help find open ports. although the name of the operating system did not jump right out at him, he might be able to figure it out by reviewing packet information. in a packet, randy can see a ttl of 255 and a window size of 4128. what type of scanning process is randy using?

Answers

Randy is scanning TCP SYN. Ethical hackers frequently employ TCP SYN scanning to find hosts, open ports, and other security flaws.

A person who studies ethical hacking and employs its methods is known as an ethical hacker student. In order to protect computer systems, networks, and applications from hostile attacks, ethical hacking entails finding their weaknesses. While employing the same methods as malevolent hackers, ethical hackers do so with the organisation they are testing's consent and knowledge. A student who wants to become an ethical hacker needs to be knowledgeable about computer science, cybersecurity, and information technology. To find and exploit vulnerabilities and offer suggestions for correction, they must be able to use a variety of tools and techniques. To ensure that their work is done legally and ethically, ethical hacker students must also abide by strong ethical norms and legislation.

Learn more about Ethical hackers here:

https://brainly.com/question/14914116

#SPJ4

what type of access control is intended to discover unwanted or unauthorized activity by providing information after the event has occurred?

Answers

The type of access control intended to discover unwanted or unauthorized activity by providing information after the event has occurred is called "detective access control."

Detective access control is a type of security mechanism that is designed to detect and respond to security incidents after they have occurred. It does not prevent incidents from happening, but it does help to identify and mitigate the effects of a security breach. Examples of detective access control mechanisms include security cameras, intrusion detection systems, and log analysis tools that can help to identify suspicious activity and security incidents. By using detective access control mechanisms, organizations can better understand their security posture and improve their overall security defenses. The type of access control intended to discover unwanted or unauthorized activity by providing information after the event has occurred is called "detective access control."

Learn more about security breach :

https://brainly.com/question/30300203

#SPJ4

apply conditional formatting to the selected cells using the red gradient fill data bar.

Answers

Answer:Select the range of cells, the table, or the whole sheet that you want to apply conditional formatting to. On the Home tab, under Format, click Conditional Formatting. Point to Data Bars, and then click a gradient fill or a solid fill.

Explanation:

andrew believes that a digital certificate belonging to his organization was compromised and would like to add it to a certificate revocation list. who must add the certificate to the certificate revocation list?

Answers

A digital certificate can only be added to a list of certificates that have been revoked by the Certificate Authority, or CA, which is the company that issued the certificate.

What components are contained in a digital certificate?

The following details regarding the entity being certified are at least included in digital certificates: The public key of the owner. The Distinguished Name of the owner.

Which action should you take if you believe a certificate's security has been compromised?

Again, when it comes to the security of your certificate, it is advisable to err on the side of caution. Send a revocation request to your CA as soon as you become aware that your key has been compromised.

To know more about Certificate Authority visit:-

https://brainly.com/question/27960090

#SPJ1

given integer variables seedval, minnum, and maxnum, output two random integers in the range minnum to maxnum inclusive. end each output with a newline. ex: if minnum is 5 and maxnum is 87, then a possible output is:

Answers

To generate two random integers within the range of minnum and maxnum, we can use the following code in Python:

import random

# Set the seed value

seedval = 12345

random.seed(seedval)

# Define the minimum and maximum numbers

minnum = 5

maxnum = 87

# Generate two random integers within the range

rand1 = random.randint(minnum, maxnum)

rand2 = random.randint(minnum, maxnum)

# Output the random integers

print(rand1)

print(rand2)

This code imports the 'random' module, sets the seed value, defines the minimum and maximum numbers, and generates two random integers within the given range using the 'randint()' function. The output is then printed to the console with a newline after each value.By setting the seed value, we can ensure that the same sequence of random numbers is generated each time the program is run, which can be useful for testing and debugging purposes.

To know more about coding visit:

https://brainly.com/question/17293834

#SPJ1

which of the following is incorrect? a select clause specifies the columns to be displayed a from clause specifies the table containing the column(s) listed in the select clause a where clause is used to extract only those records that fulfill a specified condition none of the above

Answers

The SELECT clause is used to specify the columns to be displayed in the query result. The FROM clause is used to specify the table or tables containing the columns listed in the SELECT clause. The WHERE clause is used to extract only those records that fulfill a specified condition. All three of these clauses are valid, so the correct answer is "none of the above".

The SELECT clause is used to specify which columns are to be part of the result set of a query. It can specify one or more columns, and can use various operators, such as mathematical operators and comparison operators. The FROM clause is used to specify the table or tables from which the columns listed in the SELECT clause will be extracted. It can also specify joins between tables, and can use various operators, such as join operators and set operators. The WHERE clause is used to extract only those records from the result set that fulfill the condition specified in the WHERE clause. This condition can include comparison operators, logical operators, and various other operators, depending on the query. All three of these clauses are necessary components of a query, and they play an important role in the construction of a query.

the complete question is :

which of the following is incorrect? a select clause specifies the columns to be displayed a from clause specifies the table containing the column(s) listed in the select clause a where clause is used to extract only those records that fulfill a specified condition none of the above

Options :

a select clause specifies the columns to be displayed

a from clause specifies the table containing the column(s) listed in the select clause

a where clause is used to extract only those records that fulfill a specified condition

learn more about query here

https://brainly.com/question/14311643

#SPJ4

which device should you purchase if you want a small, portable system that is great for consuming content such as books, music, and videos and that do you not intend to use for creating content or multitasking?

Answers

You should purchase a tablet device, such as an laptop  iPad or Android tablet, that is small and portable, and ideal for reading, watching movies, and listening to music. It is not suitable for multitasking or content creation.

If you want a small, portable system, and you intend to use it mainly to consume content such as books, music, and videos, then a tablet device is the best option. Tablets such as the iPad or an Android tablet are ideal for this purpose, as they are compact and easy to carry around. They are also great for consuming content, as they feature large and vibrant screens to view videos and e-books, as well as excellent speakers for listening to music. However, they are not suitable for creating content or multitasking, as they are not as powerful as a laptop or desktop computer. If you want a device for content creation or multitasking, then you should consider purchasing a laptop or desktop computer instead.

Learn more about laptop here:

brainly.com/question/15244123

#SPJ4

What is the output for print(stuff[0])?


HELP

Answers

Answer:

Where's the array for stuff?

Explanation:

Depending on how stuff[0] was declared or instantiated because I'm assuming it's not a constant, I need more info on stuff.

deletes the variable in which subject5 score is stored. the student is writing the test for subject5 again. what score should the student get in subject5 to get an average score of 95? print the score. is it possible to get that score? print the result.

Answers

The Python program to get the scores secured by a student in five subjects namely subject1, subject2, subject3, subject4, subject5 is in the explanation part.

What is programming?

Making a set of instructions that instruct a computer how to carry out a task is the process of programming. Computer programming languages like JavaScript, Python, and C++ can all be used for programming.

Here is a Python program that accomplishes the requirements listed in the question. The program assumes that the user will enter valid integer scores between 0 and 100 for each subject.

subject1 = int(input("Enter score for subject1: "))

subject2 = int(input("Enter score for subject2: "))

subject3 = int(input("Enter score for subject3: "))

subject4 = int(input("Enter score for subject4: "))

subject5 = int(input("Enter score for subject5: "))

total_score = subject1 + subject2 + subject3 + subject4 + subject5

avg_score = total_score / 5

if avg_score > = subject4:

   print("The average score is greater than or equal to subject4 score")

else:

   print("The average score is less than subject4 score")

if subject1 == subject5:

   print("Subject1 score is equal to subject5 score")

else:

   print("Subject1 score is not equal to subject5 score")

if subject2 < = subject3:

   print("Subject2 score is less than or equal to subject3 score")

else:

   print("Subject2 score is greater than subject3 score")

del subject5

new_avg_score = (total_score - avg_score) / 4  

new_subject5_score = 95 * 5 - total_score + new_avg_score

print("To get an average score of 95, the student needs to score", new_subject5_score, "in subject5")

if new_subject5_score < = 100:

   print("It is possible to get that score")

else:

   print("It is not possible to get that score")

Thus, the program takes user input for the five subject scores and calculates the average score.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ1

3. Write a Python program stored in file that:

A.Gets the scores secured by a student in five subjects namely subject1, subject2, subject3, subject4, subject5. Calculate the average score of all the subjects and store it in a variable called avg_score. Note: The scores entered must be greater than zero and the maximum score that the student can score in each subject is 100.

B. Checks if the variable avg_score is greater than or equal to subject4 score and prints the result.

C. Checks if subject1 score is equal to subject5 score and print the result.

D. Checks if subject2 score is less than or equal to subject3 score and print the result

.E. Deletes the variable in which subject5 score is stored. The student is writing the test for subject5 again. What score should the student get in subject5 to get an average score of 95? Print the score. Is it possible to get that score? Print the result.

which of the following is not correct about an advanced persistent threat (apt)? a. apts are most commonly associated with nation-state actors. b. apts use innovative attack tools. c. once a system is infected by an atp, it silently extracts data over an extended period of time. d. apts require the use of sql injection attacks.

Answers

An apts require the use of sql injection attacks is not correct about an advanced persistent threat (apt).

Option D is correct.

SQL: What is it?

The special-purpose programming language SQL (Structured Query Language) is used to manage data in relational databases. It is made so that people can query, change, and manage data in relational databases. Millions of users worldwide use it, making it the most popular database language.

SQL can be used to query and manipulate the data that is stored in databases as well as to create, update, and delete databases. Since it is a declarative language, users are able to specify the data they want rather than how to obtain it. Additionally, SQL is a powerful language for combining data from multiple tables, making it possible for users to construct intricate data queries and reports.

Learn more about SQL:

brainly.com/question/25694408

#SPJ4

2. 3. 4 CodeHS HTML Word Definitions


CODE:





Vocabulary List




malleable: easily influenced



"Memory is so malleable or volatile that each time we see

something, the memory is actually influenced and re-created. "

(Washington Times (Oct 18, 2014))






concoction: any foodstuff made by combining different

ingredients




There are some food combos that blend beautifully with each

other to create truly tasty concoctions. (US News (Sep 4, 2014))






stamina: enduring strength and energy



A 6-year-old might not walk the mile into Petra, but teenagers

have enough physical and intellectual stamina to appreciate

going to these places (New York Times (Dec 5, 2014))






terse: brief and to the point



It’s a request to which Dipper responds, with terse eloquence,

"Weird. " (New York Times (Nov 21, 2014))








GETTING STARTED


Let’s practice using the HTML formatting tags.


STARTER CODE


The given web page has several vocabulary words defined, followed by a sentence that uses the word.


YOUR JOB


Use HTML formatting tags to:


Bold each vocabulary word in the definition

Italicize each vocabulary word in the sentence.

HINT:

If you need a review of the different types of tags you can use to format a web page, and what each tag does, check the previous example and video.


You can see full documentation about how to use each tag in the DOCS tab

Answers

On the webpage for Computer Science Education Week, a tutorial for learning JavaScript called CodeHS highlighted. An estimated 116,648 individuals began learning to code during the course of the week.

For teachers, is CodeHS free?

The courses offered by CodeHS are unrestricted, adaptable, and based on state and federal standards. Meant to be picked up and used immediately away by teachers like you.

<!DOCTYPE html>

<html>

 <head>

   <title>Vocabulary List</title>

 </head>

 <body>

   <h1>Vocabulary List</h1>

   <p>

     <strong>malleable:</strong> easily influenced

   </p>

   <p>

  The memory is actually influenced and recreated every time we encounter anything because memory is so changeable or fickle.

     (Washington Times (Oct 18, 2014))

   </p>

   <p>

Concoctions are any dishes created by blending several ingredients.

     ingredients

   </p>

   <p>

     "There are some food combos that blend beautifully with each other to

     create truly tasty <em>concoctions</em>." (US News (Sep 4, 2014))

   </p>

   <p>

     <strong>stamina:</strong> enduring strength and energy

   </p>

   <p>

 "A 6-year-old might not be able to walk the mile to Petra, but teenagers have the mental and physical capacity to appreciate visiting Petra,"

     these places." (New York Times (Dec 5, 2014))

   </p>

   <p>

     <strong>terse:</strong> brief and to the point

   </p>

   <p>

"Dipper responds to the request in a brief but effective manner.

     'Weird.'" (New York Times (Nov 21, 2014))

   </p>

 </body>

</html>

To know more about CodeHS visit:-

https://brainly.com/question/26099830

#SPJ1

executive functioning involves three components: . group of answer choices working memory, cognitive flexibility, and inhibitory control short-term memory, habituation, and theory of mind perspective taking, concrete thinking, and cognitive flexibility information processing, emotional reactivity, and social awareness

Answers

Working memory, cognitive flexibility, and inhibitory control  are executive functioning involves three components.

Option A is correct.

What are the components of executive function?

Working memory, flexible thinking, and self-control are examples of executive function mental skills. These abilities are put to use all the time in our education, work, and daily lives. Focusing, adhering to instructions, and managing emotions can all be hampered by executive function issues.

What are the names of executive functions?

The higher-level cognitive skills you use to control and coordinate your other cognitive abilities and behaviors are referred to as "executive functions." The higher-level cognitive abilities you use to control and coordinate your other cognitive abilities and behaviors are referred to as executive functions.

Question incomplete:

executive functioning involves three components: . group of answer choices

A.  working memory, cognitive flexibility, and inhibitory control

B.  short-term memory, habituation, and theory of mind

C. perspective taking, concrete thinking, and cognitive flexibility

D. information processing, emotional reactivity, and social awareness

Learn more about executive :

brainly.com/question/29886955

#SPJ4

Other Questions
a health organization that studies the health characteristics of the population in a specific area and then implements a health education plan geared towards that target population is engaged in what? group of answer choices b. epidemiology d. health policy and management c. community health a. biostatistics Which of these propaganda posters uses emotions to appeal to Americans? How? mrs. starnes enjoys doing sudoku puzzles. the time she takes to complete an easy puzzle can be modeled by a normal distribution with mean 5.3 minutes and standard deviation 0.9 minute. what proportion of the time does mrs. starnes finish an easy sudoku puzzle in less than 3 minutes? Decide if the function is an exponential growth function or exponential decay function, and describe its end behavior using limits. every minute play was_ What cultural concept correctly classifies the idea of equality in the United States? In the United States, what recourse does an accused person have in case he or she cannot afford a private defense lawyer?a) The government will provide an attorney to the accused free of charge.b) The accused will have to spend his or her time in jail until he or she can obtain enough money to afford an attorney.c) He or she will have to defend himself or herself when the trial starts.d) A public defender will be appointed to the accused by the government for a nominal fee. The gradient of a curve at the point (x,y) is given by dy/dx=2(x+3)^1/2-x. The curve has a stationary point at (a,14), where a is a positive constant. Find the value of a. According to Benjamin Whorfs linguistic relativity hypothesis, which of the following is true?answer choiceschildren learn quantifying words such as "more" and "further" sooner than they do absolutes such as "every" and "all"different languages predispose those individuals who speak them to think about the world in different wayschildren learn their first language from their relatives and their peer groupindividuals learn positive instances of concepts faster than they learn negative instancesindividuals have a natural predisposition to learn language A toy company is building dollhouse furniture. A rectangular door of a dollhouse has a height of 5 centimeters and a width of 3 centimeters. What is the perimeter of the door on a scale drawing that uses the scale 2:8?A. 4B. 10C. 16D. 64 When congress wants to regulate an issue, it most often passes very detailed regulations so that there are no questions about its intent. True or False? What companies are headquartered in Arizona? which of the following is not true? question 10 options: moss are non-vascular. moss are marine plants. moss are unisexual. moss are a type of embryophyte. HELP Which of the following is used with mobile file storage systems? Basic Disk Dynamic Disk FAT32 NTFS A plumber cut a pipe into 5 equal pieces and had 27 cm of the pipe left. For a secondpipe 15m long, he cut 11 pieces of the same length as that of each piece cut from thefirst pipe and had 15 cm of the second pipe left. What was the length, in cm, of eachshorter piece of the second pipe? What was the length of the first pipe originally?Please input your answer: Which empire is more advance Aztec, mayan or inca Why was it important to the framers that government officials follow the same laws as all other Americans? Which of these results from the repeal of an item's subsidies?answer choicesa. a decrease in the price of that itemb. a leftward shift of that item's supply curvec. a rightward shift of that item's supply curved. an increase in reliance upon government regulation What was the central idea of threshold of violence Which learning activities are part of the cognitive domain of learning? a) Analyzing statistics b) Memorizing vocabulary words c) Discussing a new policy d) Practicing throwing and catching e) Reflecting on feelings about bullying