Which of the following is not considered format?A.boldface typeB.graphics and shadingC.headers and boxesD.ordering of information

Answers

Answer 1

In document design and formatting, a format refers to the way in which the visual and structural elements are arranged on a page. Different formats are used to make the document clear and easy to read.

What is document design ?A formatting tool for emphasising or highlighting text is boldface type. It can be used to highlight headings, highlight important details, or make text simpler to read. Because it changes how the text appears on the page, boldface type is regarded as a formatting element.B. Visual features like graphics and shading are employed in document design to add interest and improve the document's aesthetic appeal. They can be used to construct hierarchy, to highlight important topics, or to break up long passages of text. In addition to being considered formats, graphics and shading also influence how the document appears on the surface.C. Boxes and headers are structural components that help divide and arrange a document's content.

To know more about Document design , check out :

https://brainly.com/question/19755491

#SPJ4


Related Questions

which of the following is not a malware? which of the following is not a malware? () virus () ransomware () phishing () worm

Answers

Virus , ransomware , phishing , worm all of the options are the types of malware.

Malware:

Software that installs itself on a computer without the user's permission and carries out malicious activities, such as stealing passwords or money, is known as malware.

Scan the computer for malicious files or programs to find malware. Malware is any software that is designed to disrupt a computer, server, client, or computer network, leak private information, gain unauthorized access to information or systems, deprive access to information, or unknowingly interfere with the user's computer security and privacy. There are many ways to find malware.

Learn more about malware:

brainly.com/question/28901522

#SPJ4

What is the difference between parallel and multithreaded programming?

Answers

The difference between parallel and multithreaded programming is the idea of parallel programming is wide. It may be used to describe a wide variety of operations that are either running on one system or several machines. The term "multithreading" explicitly refers to the simultaneous execution of several sequential sets of instructions.

A program or operating system that supports numerous users simultaneously without requiring several copies of the software to execute on the computer is known as multithreading. Multiple requests from the same user can be handled via multithreading as well.

Learn more about multithreaded programming: https://brainly.com/question/23839669

#SPJ4

Functions can be selected by using the ________.
A) Format Function dialog box
B) Create Function dialog box
C) Insert Function dialog box
D) Add Function dialog box

Answers

The Insert Function dialog box can be used to choose a function. Functions are pre-written formulas that carry out calculations using particular values, or arguments.

What kind of formula would that be?

A formula is an expression that computes values in one or more cells in a range. One formula that sums up the values in cells A2 through A4 is =A2+A2+A2+A3+A4.

How do I get Excel's function dialog box to open?

Go to the Formulas ribbon and either click the Insert Function icon to display the Insert Function dialog box (the same dialog box you would see with the first method) or click the arrow next to the appropriate category in the Function Library Group to bring up the Function Library Group and then select the desired function from the list.

To know more about Insert Function dialog box  visit :-

https://brainly.com/question/1957607

#SPJ4

In a conversation between two computers, the __________ is the one that initiates the HTTP request, and the __________ is the one that provides HTTP responses.

Answers

In a conversation between two computers, the Client is the one that initiates the HTTP request, and the server is the one that provides HTTP responses.

What is HTTP?

The World Wide Web was built on the Hypertext Transfer Protocol (HTTP), which is used to load webpages with hypertext links.

Running on top of other layers of the network protocol stack, HTTP is an application layer protocol created to transport data between networked devices. A client machine makes a request to a server, which then sends a response message, in a normal HTTP flow.

An HTTP method, also known as an HTTP verb, specifies the action that the HTTP request anticipates the requested server will take. The two most popular HTTP methods, for instance, are GET and POST.

Therefore, In a conversation between two computers, the Client is the one that initiates the HTTP request, and the server is the one that provides HTTP responses.

To learn more about HTTP, refer to the link:

https://brainly.com/question/13152961

#SPJ1

Implement an operator* function so that one can repeat strings a given number of times. For example,
string greeting = "hi";
string result = greeting * 3;
should set result to "hihihi".
Complete the following file:
#include
using namespace std;
=====complete from here
Use the following file:
Tester.cpp
#include
#include
using namespace std;
string operator*(string s, int n);
int main()
{
string greeting = "hi";
cout << greeting * 3 << endl;
cout << "Expected: hihihi" << endl;
greeting = "bye";
cout << greeting * 2 << endl;
cout << "Expected: byebye" << endl;
return 0;
}

Answers

To implement an operator* function so that one can repeat strings a given number of times, add the following code to the given file:

#include <string>

#include <iostream>

using namespace std;

string operator*(string s, int n) {

   string result;

   for (int i = 0; i < n; i++) {

       result += s;

   }

   return result;

}

Now when you run the program, it should output "hihihi" and "byebye" as expected.

Learn more about programming:

https://brainly.com/question/26134656

#SPJ4

hubspot test quickly viewing a segment of your database right from the contacts, companies, deals, or tickets dashboard is an example of which type of segment?a. active listb. saved filterc. static listd. save list

Answers

Option B. A saved filter is a predefined query that allows users to quickly view a segment of their database.

A saved filter is a predefined query which can be accessed from the contacts, companies, deals, or tickets dashboard. It enables users to quickly view a segment of their database, such as contacts from a particular city or deals that are in a certain stage. It is a convenient way of finding specific data and allows users to save time when searching their database.

Saved filters are an efficient way to quickly access and view specific data from any of the contacts, companies, deals, or tickets dashboards.

Learn more about database: https://brainly.com/question/518894

#SPJ4

the primary mechanism by which simio displays model results, which allows for grouping, sorting, and filtering, is what

Answers

Survey research, which employs standardized questionnaires or interviews, is an organized method of learning more about individuals and their preferences, attitudes, and behaviors.

It should be noted that depending on the presented spreadsheet, the filter parameter would not just show rows 3 and 6. Using a sorting tool, the list can be organized from most favored to least favored. Despite the fact that census surveys date back to Ancient Egypt, sociologist Paul Lazarsfeld developed the survey as a formal research technique in the 1930s and 1940s to examine the influence of radio on American political opinion formation. Since that time, this strategy has been very popular for quantitative social science research. The survey approach can be used to conduct descriptive, exploratory, or explanatory research. Studies where a single subject serves as the unit of analysis benefit from using this methodology.

Learn more about Research here:

https://brainly.com/question/29767075

#SPJ4

django.core.exceptions.improperlyconfigured: requested setting installed apps, but settings are not configured. you must either define the environment variable django settings module or call settings.configure() before accessing settings.

Answers

If you are here due to error while trying to run daphne on server then here is the answer for you .

Change you asgi.py file like this.

import os

from django.conf.urls import url

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mc_backend.settings')

from channels.routing import ProtocolTypeRouter, URLRouter

from django.core.asgi import get_asgi_application

django_asgi_app = get_asgi_application()

from channels.auth import AuthMiddlewareStack  

import api_backend.routing

application = ProtocolTypeRouter({

   "http": django_asgi_app,

   'websocket': AuthMiddlewareStack(

       URLRouter(

           api_backend.routing.websocket_urlpatterns

       )

   )

})

Uniform Resource Locator, or URL, is a term. A URL is nothing more than the Web address of a specific, particular resource. Theoretically, every legitimate URL leads to a different resource. These resources could be an image, a CSS file, an HTML page, etc. In actuality, there are a few exceptions, the most frequent of which is a URL leading to a resource that has either relocated or vanished. It is the owner of the web server's responsibility to properly maintain the resource that the URL represents as well as the URL itself because the Web server is in charge of both.

Here you can learn more about URL in the link brainly.com/question/10065424

#SPJ4

Difference Between The First Generation Of Computer and Forth
Generation of Computer

Answers

the first generation computers used vacuum tubes and had gigantic brain chips, the forth generation comps are smaller , less clumsier and have small microprocessors, but bigger memory.

1. Write a one-page review of an article about the subject of operating systems that
appeared in a recent computing magazine or academic journal. Give a summary of
the article, including the primary topic, your own summary of the information
presented, and the author's conclusion. Give your personal evaluation of the article,
including topics that made the article interesting to you (or not) and its relevance to
your own experiences. Be sure to cite your source.
(Reference: Mello, John. Microsoft Hardens Latest Windows Version against Attackers. Tech
News World, Jan 17, 2017.)

Answers

David Jones wrote an article about operating system security issues and how companies like Intel, Microosoft, Gooogle, and others are attempting to deal with them.

What exactly is an operating system?

An interface between a computer user and its hardware is an operating system (OS). An operating system is software that handles input and output, handles file and memory management, handles process management, and controls peripheral devices like printers and disk drives.

What are the primary roles that the operating system plays?

The management of files and folders is the primary function of an operating system (OS). The management of a computer's files falls under the purview of operating systems. File creation, opening, closing, and deletion are all included in this.

To know more about operating system visit :-

https://brainly.com/question/24760752

#SPJ1

4. Given the following raltional schema:
Driver (Name, LicenceNumber, Address)
CAR (Licence Plate, Type, Manufacturer)
OWNER (Licence Plate, LicenceNumber, Date_of_purchase)
Write a relational algebra expression which gives all the drivers living in Debrecen and have a
carl
(4 points)

How do I do this?

Answers

It accepts instances of relations as input and returns instances of relations as output. Relational algebra is a procedural query language. To run queries, it makes use of operators.

What are the five fundamental operators in relational algebra? Give some examples?

Relational algebra has five fundamental operations: Set Difference, Union, Cartesian Product, and Selection. Most required data retrieval activities are carried out by them.

Describe algebraic expression and provide two instances?

An expression that uses pronumerals, parentheses, operation signs, and numbers yet converts to a number when the pronumerals are replaced by numbers is an algebraic expression. For instance, an expression is 2x + 5, but +) is not. 5(x2 + 3x) = 5(22 + 3 2) = 30 and 3x + 1 = 3 2 + 1 = 7 respectively.

To know more about Relational algebra visit :-

https://brainly.com/question/10983796

#SPJ1

You can use the StreamWriter class's ____________ method to write a line of text to a file.
Select one:
a. PrintLine
b. WriteText
c. PrintText
d. WriteLine

Answers

Use the Write Line function to add a line break after the supplied value is written to a text file. From the present position, the value is written. The supplied value replaces the existing data if the point does not correspond to the file's end. Thus, option D is correct.

What is the WriteLine method to write a line of text to a file?

A line is a text file's organizational unit in computing. A line is made up of a group of zero or more characters that are typically shown in a single horizontal line.

The WriteLine() method outputs the result and appends a new line character to the end of the string, creating a new line for the next output.

The writelines() method saves a list's entries as lines in a file. Depending on the file mode and stream position, the texts will be put at that location.

Therefore, You can use the StreamWriter class's Write Line method to write a line of text to a file.

Learn more about WriteLine here:

https://brainly.com/question/10260957

#SPJ4

The Disk Management program in Windows Server versions can configure drives for _______________, and it works with PATA or SATA.answer choicesA) RAID 0+1B) RAID 0 or 10C) RAID 0, 1, or 5D) RAID 5 or RAID 10

Answers

The Disk Management program in Windows Server versions can configure drives for RAID 0, 1 and it works with  5.

What is the Server ?

A server is a computer system or application program that provides services to other programs, known as "clients," across a computer network. Servers are typically powerful computers, but can also be small devices such as a Raspberry Pi. The term server can also refer to the software running on the computer, such as a web server, database server, or application server. Servers are responsible for providing services such as sharing files, providing web hosting, managing databases, and hosting applications. They can also serve as a central repository for data, allowing multiple users to access the same information.

To learn more about Server

https://brainly.com/question/27960093

#SPJ4

Zhihua Yan, a history teacher for many years, has written books attacking his own country and hometown, and as he gets older, he posts on social media more and more extreme and illogical statements, saying he hates China, he hates the United States, saying he's a gang, he beats up opponents, he acts like a maniac, he bites everyone.
In the section about China. First, the issue of the Ukrainian biological laboratory in the United States is known to the world, but he continued to criticize China on the issue, saying that China has been threatening the world with biochemical viruses, which is ignoring the facts. Second, it is the height of moral conceit to draw a line in the face of pro-democracy activists who are on the same side as you and say that others have low cognitive abilities. Third, it is a slap in the face for some media organizations to claim that they have fabricated information about China. Not clear, because his ideas and logic are confused. First, Li Yan, a high-end Chinese financial company, was shot by the American police and called the American police a group of bandits. However, the fact is that Li Yan used knives and stabbed the police. According to the American law, it is normal for the police to fight back. Second, they questioned the freedom of speech in the United States and accused the United States of being darker. Third, they spread rumors that the World Health Organization, as the world's largest intergovernmental public health organization, is not performing its duties and that it is corrupt and its staff travel and spend too much money.
To sum up, a disease in the body can be cured, a disease in the brain is difficult to cure.

Answers

Answer:

The passage describes Zhihua Yan, a history teacher who has been attacking his own country and hometown, and who increasingly makes extreme and illogical statements on social media. He is critical of China, the United States, and media organizations, and makes statements that ignore the facts and confuse logic. He has criticized China for threatening the world with biochemical viruses, accused pro-democracy activists of having low cognitive abilities, and spread rumors about the World Health Organization. He has also shown support for a Chinese financial company that was involved in a violent altercation with American police, and accused the United States of having darker freedom of speech. The passage concludes with the statement that a disease in the body can be cured, but a disease in the brain is difficult to cure.

Explanation:

How can you allocate computing the same way on different platforms?

Answers

You can allocate computing the same way on different platforms by using resource governance

What is Computing?

Any goal-oriented activity requiring, utilizing, or producing computing hardware is referred to as computing.

It entails the investigation and testing of algorithmic procedures as well as the creation of both hardware and software. Science, engineering, math, technology, and social elements all play a role in computing.

Resource allocation and governance is a good way to allocate computing the same way on different platforms

Read more about computing here:

https://brainly.com/question/28498043

#SPJ1

Which of the code segments will always correctly assign the maximum element of the array to the variable max ? Select one: a. I only b. II only c. III only

Answers

The most significant value in arr is negative. This is due to the code setting the maxVal to zero. Because the check is for > maxVal, which is zero if all integers in the array are zero, it will never set maxVal for a negative number.

What do you name code segments?

The name "segment" is derived from the memory segment, a prior technique of memory management that was superseded by paging. When a programme is stored in an object file, the code segment is included in that file; when the loader loads the programme into memory so that it can be executed, various memory regions (in particular, as pages) are allocated, corresponding to both the segments in the object files and segments only needed at run time. For example, the code segment of an object file is loaded into memory and mapped to a corresponding code segment.

Because the code segment in memory is normally read-only and has a set size, it may usually be put in read-only memory (ROM) on embedded systems The requirement for loading. If the code section is not read-only, the design allows for self-modifying code.

Learn more about memory from here;

https://brainly.com/question/11103360

#SPJ4

You manage a Windows Server 2012 R2 system that functions as your company's domain controller. You need to use command-line tools to generate a list of all users in the domain and then view the value of the Office property of each user. Which command should you use? A.) csvde -f C:\users.csv B.)ldifde -r "(ObjectClass=user)" -f c: \users.ldif C.) dsquery user -name * | dsget user -display -office D.) dsget user -display -office

Answers

dsquery user -name * | dsget user -display -office command is used.

How to use Dsquery to Get User Display Name?

In an Active Directory, a user's display name is often a combination of their first and last name, although it can also be any string. "John Paul," as an example. A displayname attribute exists for Active Directory users. To obtain the user display name, use the dsquery command. Using the dsquery user command or the broader dsquery * command, we may obtain the user display name.

The user displayname in the active directory can be accessed using the general query command, dsquery *.

Input: dsquery * -filter "samaccountname=admin" -attr displayname

Using the filter parameter's search criteria, we used dsquery * in the command above to obtain the user displayname.

When samaccountname = admin and display using attribute displayname are used, it obtains the user displayname for the corresponding user.

the results of the dsquery operation used to retrieve the user displayname in the command above. The terminal displays John Paul as the active directory user display name.

To know more about such window commands, Check out:

https://brainly.com/question/13263568

#SPJ4

Assume a client connects to a server via a lossy link. When an application is sending PDUs of different sizes to the server over the path, compute the expected number of bytes lost when transmitting an arbitrary PDU. A. (1pt) Assume the client does not have reliable data transfer. The link has packet loss probability of 20\%. Application sends 200-byte fixed-length PDUs at all times. Ans:200∗0.2=40
B. (1pt) Assume the client does not have reliable data transfer. The link has packet loss probability of 20\%. Application sends 200-byte PDUs at half of the times, and 400-byte PDUs at the other half. Ans: 80 C. (1pt) Assume the client does not have reliable data transfer. The link has packet loss probability of 20\%. Application sends PDUs following this distribution: 100-byte (10\%), 200-byte (30\%), 400-byte (50\%), 1000-byte (10\%). Ans: D. (2.5pts) Assume that the client transmits 1 million bytes of data to the server. The PDU goes through a 5-layer network stack with 25 bytes of overhead for each layer except the application layer. During the transmission, exactly 1 bit is corrupted during the transmission, and the corresponding packet must be entirely retransmitted to ensure reliable data transfer. How many bytes in total, including both data and overhead, need to be transmitted, if the PDU size is 100, 1000, 2000, 10000, and 200000 bytes? E. (2.5pts) What is the optimal PDU size for the above network scenario in D, i.e., requiring the fewest number of bytes to be transmitted in total? Why?

Answers

The 4 byte trailer at the data link layer, are merely overhead since we are told that our application data only takes up 700 bytes.

All the bytes sent to the physical layer that don't carry actual data are collectively referred to as overhead. The remaining 58 bytes, which are made up of the transport layer header, the network layer header, the 14 byte header at the data link layer, and the 4 byte trailer at the data link layer, are merely overhead since we are told that our application data only takes up 700 bytes. In order to calculate the overhead percentage, we divide the total number of bytes delivered to the physical layer by the overhead bytes as follows: OH % = (58 / 758) * 100 = 7.7 %. The efficiency is the proportion of application-specific bytes to all other conveyed bytes. The efficiency is therefore 66.67%.

Learn more about Application-specific bytes here:

https://brainly.com/question/13753539

#SPJ4

A customer is in a store to purchase 3 items. Write a program which asks for the price of each item, uses 5.5% for sales tax, then displays:
1. the subtotal of the sale
2. the total amount of tax to be collected
3. the total amount the customer must pay

Answers

A succession of instructions written in a programming language for a computer to interpret is referred to as a computer program.

How is the program utilised?

The program gives the computer the expertise to carry out a specific task. A computer can function with the operating system without application software (apps), but it cannot carry out any particular task. For instance, you need to install Microsoft Word on your computer in order to generate a Word document.

Create a program that requests the price of each item, adds 5.5% sales tax, and shows the information below.

MARKETING TAX =.055

item1 is comparable to a float (input("Enter the price for item 1 in dollars"))

item2 = float('Enter the price for item 2 $', input)

item3 is equal to float(input("Enter the price for item 3 $"))

Float (item1 + item2 + item3) = subtotal

sales tax total = subtotal* SALES TAX

total is the aggregate of the subtotal and the sales tax.

Total = $ ('Total = $', format(total, ',.2f'), sep=", end=") ('nn')

To know more about programs visit:

https://brainly.com/question/14721034

#SPJ4

What should you do when entering an angle parking space a perpendicular parking space?

Answers

When entering an angle parking space, and a perpendicular parking space you should:

approach the space at a moderate speed and signal your intention to park. Look over your shoulder to check for any pedestrians, bicyclists, or other vehicles in the area. As you near the space, turn your wheel to the right or left, depending on the direction of the angle, and guide your vehicle into the space, straightening your wheels as you come to a stop.

For a perpendicular parking space, you should approach the space slowly and signal your intention to park. Check for any pedestrians, bicyclists, or other vehicles in the area. As you near the space, align your vehicle with the space, making sure to keep enough room between your vehicle and any other parked cars. Once you are properly aligned, reverse your vehicle into the space, using your side mirrors and rearview mirror to guide you. Make any necessary adjustments to your position, then put the vehicle in "park" and set the parking brake.

In both cases, make sure to park within the marked lines of the parking space and comply with any local parking regulations.

Learn more about angle parking space:

brainly.com/question/9305008

#SPJ4

Megan has downloaded a new gaming application on her smartphone.When she starts using it, she realizes that command icons and a navigation bar, intended for better user interface, block more than half the screen on her phone. Megan is disappointed with the app and immediately deletes it. With reference to this scenario, which of the following features does the gaming application need to improve?a. indirect interactionb. refresh ratec. chromed. roaming support

Answers

The feature which the gaming application needs to improve is C. Chrome.

What is a Gaming Application?

A desktop, mobile, or online application that allows users to compete in games is referred to as a gaming application.

Apps for gaming may also have tools for friend interaction and game management. Games are frequently divided into two categories: casual games and immersive, interesting games.

Hence, Megan needs to use chrome in order to improve her gaming performance.

Read more about gaming app here:

https://brainly.com/question/27355039

#SPJ1

An LP model can have more than one optimal solution. Is it possible for an LP model to have exactly two optimal solutions? Why or why not?
hint: think about the step that you plot the objective function and slide the isoquant in the appropriate direction

Answers

An LP model cannot have two optimal solutions that are identical to one another. The optimal solution for a typical LP model may be multiple optimal solutions or just one.

Can there be more than one best solution to LP?

Therefore, the existence of many optimal solutions for a linear programming issue (whether prime or dual) indicates that the problem at hand may be more important than a problem of a comparable nature with just one optimal solution.

How many possible solutions to an LP problem can there be?

Yes, there can be precisely two ideal solutions to a linear programming issue. When there are constraints expressed by linear equations or inequalities, linear programming is a mathematical technique for determining the maximum or lowest value of a linear objective function.

To know more about LP mode visit:-

https://brainly.com/question/15577600

#SPJ4

For the following devices in normal operation, which ones can be approximated as steady-flow devices?-a centrifugal pump
-a heat exchanger
-a turbine
NOT:
-a gas charging device
-a rigid tank

Answers

A centrifugal pump and a turbine can be approximated as steady-flow devices in normal operation.

A heat exchanger can also be approximated as a steady-flow device, since its flow rate does not change over time. However, a gas charging device and a rigid tank cannot be approximated as steady-flow devices since their flow rate does change over time.

When it comes to analyzing steady-flow devices, it is important to consider the rate of energy transfer and the relationship between the pressure and the flow rate. For steady-flow devices, the rate of energy transfer is constant, and the pressure and the flow rate are directly related.

Learn more about constant flow devices:

https://brainly.com/question/12976654

#SPJ4

Attackers often target data and intangible assets. Identify what hackers may do with the information they collect. (Select two.)A) Damage or disable a firewallB) Sell the data to the competitionC) Stage an on-path attackD) Hijack DNSE) Harm a company's reputation

Answers

The two options that represent what hackers may do with the information they collect are:

What do hackers do with the information ?Sell the data to the opposition: Attackers may gather confidential or sensitive information, including trade secrets, customer information, and financial data, and sell it to the opposition in order to profit financially.Damage a firm's reputation: Attackers may divulge or alter sensitive information, such as customer information or private messages, in order to embarrass a company, damage its reputation, or sour ties with clients and business partners.

To know more about hackers , check out :

https://brainly.com/question/23294592

#SPJ4

Select the correct answer from each drop-down menu.
Describe the role of a data scientist and the minimum educational qualification needed for the job.
Data scientists ,
Options: A. Design and implement database solutions for organizations, as well as do the maintenance
B. Analyze complex data to help organizations find patterns to their advantage
C. Research, design, and implement systems for organizations to store, retrieve, and store data

and this field requires at least a/an degree.
Options: A. Associate’s
B. Bachelor’s
C. Master’s

Please help me, I’m struggling real bad.

Answers

Answer:

C. Master's degree.

Explanation:

Describe the role of a data scientist and the minimum educational qualification needed for the job.

Data scientists: B. Analyze complex data to help organizations find patterns to their advantage.

and this field requires at least a/an: C. Master's degree.

_____ refers to the process of collecting the outcomes needed to determine whether training is effective.(a) Training evaluation(b) Program design(c) Performance appraisal(d) Needs assessment

Answers

Training evaluation refers to the process of collecting the outcomes needed to determine whether training is effective. So, option a is correct.

Training evaluation is the systematic process of measuring the effectiveness of a training program. The purpose of training evaluation is to determine if the goals and objectives of the training have been met and to identify areas for improvement. This can involve collecting data on various aspects of the training, such as the participants' satisfaction, knowledge acquisition, and behavior changes.

The evaluation can be done through a variety of methods, such as pre- and post-training assessments, surveys, and observation. The results of the evaluation provide feedback on the training program and can be used to make informed decisions about future training initiatives. Ultimately, training evaluation helps ensure that training resources are being used effectively and that the training is having a positive impact on the organization.

You can learn more about training evaluation at

https://brainly.com/question/29829952

#SPJ4

Create a java pogram

5) The American College of Sports Medicine recommends
that you maintain your training heart rate during an
aerobic workout. Your training heart rate is computed as
0.7* (220 a) + 0.3 * r, where “a” is age and “r” is the
resting heart rate. Create a Java application that asks the
user for his/her age and resting heart rate, and calculates
the training heart rate.

Answers

Here is a Java program that implements the computation of the training heart rate as described:

import java.util.Scanner;

public class TrainingHeartRate {

   public static void main(String[] args) {

       Scanner sc = new Scanner(System.in);

       System.out.print("Enter your age: ");

       int age = sc.nextInt();

       System.out.print("Enter your resting heart rate: ");

       int restingHeartRate = sc.nextInt();

       double trainingHeartRate = 0.7 * (220 - age) + 0.3 * restingHeartRate;

       System.out.println("Your training heart rate should be between " + trainingHeartRate + " and " + (trainingHeartRate + 10));

   }

}

In this program, the user is prompted for their age and resting heart rate using a Scanner object. The training heart rate is then computed using the formula provided, and the result is displayed on the screen.

True/Falsea database is a critical component of information systems because any type of analysis that is done is based on data available in the database.

Answers

True. A database is a planned grouping of material that has been arranged and is often kept electronically in a computer system. A database management system often oversees a database (DBMS).

The term "database system," which is frequently abbreviated to "database," refers to the combination of the data, the DBMS, and the applications that are connected to it.

To facilitate processing and data querying, the most popular types of databases currently in use typically model their data as rows and columns in a set of tables.

The data may then be handled, updated, regulated, and structured with ease. For writing and querying data, most databases employ structured query language (SQL).

To know more about databases:

brainly.com/question/29774533

#SPJ4

________ are used to quickly create a presentation by providing predesigned styles and layouts as well as suggested content based on the type you chooseanswer choicesTemplatesGalleriesTabsGroups

Answers

Answer:

Templates is the correct answer

fill in the blankwhen you use the keyboard arrow keys, pgup, or pgdn keys to scroll to a different position in the document, the ____ automatically moves when you press the desired keys.

Answers

b. insertion point. that point in a node or text where it is introduced. Text insertion is shown by a flashing vertical bar. The flashing vertical bar slides to the right of the text you are typing as you enter.

A text insertion point also designates the location in the text where you wish to paste copied or cut elements, as well as enter files and templates using the Text Editor. The item(s) that were copied, cut, or pasted are placed to the left of the insertion point.

The page break is added in its own line to the left of the insertion point when you use the Text Editor to add a page break. A chosen node or group serves as the insertion point for the Waveform Editor's name and value fields.

The Waveform Editor places the node you are inserting above the insertion point. The blinking line in your document that shows where text is entered when you type is known as the insertion point, or cursor. Where your mouse pointer may be seen on the I-beam.

Once you begin typing, the blinking insertion point will indicate where your next word will be.

To know more about insertion point:

brainly.com/question/2123497

#SPJ4

When you use the keyboard to scroll to a different position in the document, the ____ automatically moves when you press the desired keys.

a. alt tag

b. insertion point

c. roster

d. smart tag

Other Questions
present-day historians would most likely agree with which of the following aspects of the historical interpretation advanced in the passage? give an example of a situation where a population must decide how to use limited land resources, and the foreseeable effect of that decision In JavaWrite a multi-way if/else statement thatadds 1 to the variable minors if the variable age is less than 18,adds 1 to the variable adults if age is 18 through 64 andadds 1 to the variable seniors if age is 65 or older. Sam has a toy truck that he wants to roll on three different surface areas; carpet, wood, and brick. In two sentences, predict which surface area the toy truck will move the fastest on and why. In the United States, the degree to which people have the power to choose, emphasize, or alter their multiple ethnic identities depends mostly upon ______. Point M is the midpoint of AB. The coordinates of point A are (6, 1) and the coordinates of M are (4, 1). What are the coordinates of point B? what would liekly happen if a hot saturated solution of a solid were filtered either by vacuum or gravity filtration Find the missing angles measurements pt. 21-5(I point for each question)Please answer all questions and solve step by step and please try to show/explain with the least words as possible and use mostly numbers to for explain there can still be some words tho. suppose geologic evidence found the amount of weathering in the devonian period to be equal to that of other points in the geologic record.which scientist would most likely use this information in support of his or her view? The idea of social integration in which people do similar work and assume that they share similar responsibilities are called: _________ Write a letter to the editor of Punch newspaper telling him that your school is interested in having a column in their Weekly Publication Chester Company earned $12,500 of cash revenue, paid $7,500 for cash expenses, and paid a $200 cash dividend to its owners. Which of the following statements is true?The net cash inflow from operating activities was $5,000.Cash revenue and cash expenses are operating activities. Paying dividends is a financing activity. $12,500 revenue $7,500 expense = $5,000 cash inflow from operating activities. which consideration should be prioritized when choosing a client population during the formulation of a clinical question? Suppose that in an economy the structural unemployment rate is 3.1 percent, the friction unemployment rate is 1.7 percent, and the unemployment rate is 8.1 percent. The natural unemployment rate is_____ percent and the cyclical unemployment rate is _____ percent a. 4.8;3.3b. 6.7; 3.3c.1,4; 3,3d. 4,8; 12,9 the mass and volume of each sample differ from the mass and volume of the other samples. is it possible for each sample to contain 1 mol of each substance? Order them to least to greatest The perimeter of a square must be greater than 138 inches but less than 186 inches. Find the range of possible side lengths that satisfy these conditions. (Hint: The perimeter of a square is given by P=4s, where s represents the length of a side). Express your answer in interval notation. Use decimal form for numerical values. A common point of contention about corporations is a. modem corporations no longer utilize a CID structure. b. if corporations are moral agents, then this relieves individual human beings of any moral responsibility. oc. philosophers and business theorists disagree whether corporations are moral agents. d. corporate punishment is no different from individual punishment. . How was the war going for the South Koreans? Did the US forces initially change this? 1. Calculate the heat (expressed in calories) required to heat 115 g of water from15.4 C to 91.4 C.