Answer:
The front end is the side the computer user, or client, sees. The back end is the "cloud" section of the system.
The front end includes the client's computer (or computer network) and the application required to access the cloud computing system.
Explanation:
can i have brainliest please
please tell fast plzzzzzz
Workers at a particular company have won a 7.6% pay increase retroactive for six months. Write a program that takes an
employee's previous annual salary as input, and outputs the amount of retroactive pay due the employee, the new annual
salary, and the new monthly salary. For example:
The C++ code for the program in question will be as follows:
#include <iostream>
using namespace std;
int main()
{
double oldSalary, retroSalary, newSalary, increaseSalary, newMonthlySalary;
const double payIncrease = .076;
cout << "Enter your old annual salary." << endl;
cin >> oldSalary;
newSalary = (oldSalary * .076) + oldSalary;
increaseSalary = newSalary - oldSalary;
newMonthlySalary = newSalary / 12;
retroSalary = (oldSalary / 2) * payIncrease;
cout << endl;
cout << "Your new annual salary is: $" << newSalary << endl;
cout << "You received a $" << increaseSalary << " increase in salary." << endl;
cout << "You will receive $" << retroSalary << " in retroactive salary." << endl;
cout << "Your new monthly salary is: $" << newMonthlySalary << endl;
return 0;
}
What is C++ programming? Why is it useful?
Applications with great performance can be made using the cross-platform language C++. As a C language extension, it was created by Bjarne Stroustrup. With C++, programmers have extensive control over memory and system resources.
Given that C++ is among the most widely used programming languages in use today and is used in embedded devices, operating systems, and graphical user interfaces, it is helpful. C++ is portable and may be used to create applications that can be converted to other platforms since it is an object-oriented programming language, which gives programs a clear structure and allows code to be reused, reducing development costs.
To learn more about C++, use the link given
https://brainly.com/question/24802096
#SPJ1
When using the ________ logical operator, both subexpressions must be false for the compound expression to be false. a. either or or and b. not c. or d. and
When using the and logical operator, both subexpressions must be false for the compound expression to be false
What are logical operators?A logical operator, also known as a boolean operator, is a symbol or keyword used in computer programming and logic to perform logical operations on one or more boolean values.
Boolean values are binary values that represent true or false, or in some cases, 1 or 0.
There are three common logical operators:
AND: Denoted by the symbol "&&" in many programming languages, the AND operator returns true if both operands are true, and false otherwise.
OR: Denoted by the symbol "||" in many programming languages, the OR operator returns true if at least one of the operands is true, and false otherwise.
NOT: Denoted by the symbol "!" in many programming languages, the NOT operator, also known as the negation operator, is a unary operator that takes a single boolean operand and reverses its logical value.
Learn more about logical operator at
https://brainly.com/question/15079913
#SPJ1
Write a program to create a customer bill for a company. The company sells only five products: TV, DVD player, Remote Controller, CD Player, and Audio Visual Processor. The unit prices are $500.00, $380.00, $35.20, $74.50, and $1500.00, respectively. Part I ( this part is not that much different from Lab 2, as far as formatting) Prompt the user and input for the quantity of each product sold. Calculate the Subtotal for each item and the Subtotal of the bill. Calculate the Tax on the Bill Subtotal. Last calculate the grand Total of Subtotal plus Tax. Test Data sets: 13, 2, 3, 1, 21 Sample Outputs: How many TVs were sold? 13 How many DVD players were sold? 2 How many Remote Controller units were sold? 3 How many CD Players were sold? 1 How many AV Processors were sold? 21
Answer:
A program written in C++ was create for a customer bill for a company. the company sells five products, which are TV, DVD player, Remote Controller, CD Player, and Audio Visual Processor.
The code is implemented and shown below in the explanation section
Explanation:
Solution:
The C++ Code:
#include<iostream>
#include<string>
#include<iomanip>
using namespace std;
#define taxrate 8.75
int main(){
const double upTv = 500.00;
const double upDvdPlayer = 380.00;
const double upRemoteController = 35.00;
const double upCdPlayer = 74.00;
const double upAudioVideoProcessor = 1500.00;
cout << "How many TVs were sold? ";
double ntv;
cin >> ntv;
cout << "How many DVD players were sold? ";
double ndvd;
cin >> ndvd;
cout << "How many Remote Controllers were sold? ";
double nrc;
cin >> nrc;
cout << "How many CD Players were sold? ";
double ncd;
cin >> ncd;
cout << "How many AV Processors were sold? ";
double nav;
cin >> nav;
double ptv = ntv * upTv;
double pdvd = ndvd * upDvdPlayer;
double prc = nrc * upRemoteController;
double pcd = ncd * upCdPlayer;
double pav = nav * upAudioVideoProcessor;
double tp = ptv + pdvd + prc + pcd + pav;
cout << setw(5) << left << "QTY";
cout << setw(20) << left << "Description";
cout << setw(15) << left << "Unit Price";
cout << setw(15) << left << "Price" << endl;
cout << setw(5) << left << (int)ntv;
cout << setw(20) << left << "TV";
cout << setw(15) << left << fixed << setprecision(2) << upTv;
cout << setw(15) << left << fixed << setprecision(2) << ptv << endl;
cout << setw(5) << left << (int)ndvd;
cout << setw(20) << left << "DVD";
cout << setw(15) << left << fixed << setprecision(2) << upDvdPlayer;
cout << setw(15) << left << fixed << setprecision(2) << pdvd << endl;
cout << setw(5) << left << (int)nrc;
cout << setw(20) << left << "Remote Controller";
cout << setw(15) << left << fixed << setprecision(2) << upRemoteController;
cout << setw(15) << left << fixed << setprecision(2) << prc << endl;
cout << setw(5) << left << (int)ncd;
cout << setw(20) << left << "CD Player";
cout << setw(15) << left << fixed << setprecision(2) << upCdPlayer;
cout << setw(15) << left << fixed << setprecision(2) << pcd << endl;
cout << setw(5) << left << (int)nav;
cout << setw(20) << left << "AV Processor";
cout << setw(15) << left << fixed << setprecision(2) << upAudioVideoProcessor;
cout << setw(15) << left << fixed << setprecision(2) << pav << endl;
cout << setw(15) << left << "SUBTOTAL";
cout << setw(15) << left << fixed << setprecision(2) << tp << endl;
cout << setw(15) << left << "TAX";
cout << setw(15) << left << fixed << setprecision(2) << taxrate << endl;
double ttp = tp + 0.0875 * tp;
cout << setw(15) << left << "Total";
cout << setw(15) << left << fixed << setprecision(2) << ttp << endl;
return 0;
}
What type of file is MyFile.xlsx? data file batch file executable file helper file
Answer:
executable file. c. 3.
Explanation:
QUESTION 10
The term "word processor" is used to describe software that allows us
documents.
O True
O False
Answer:
The term "word processor" is used to describe software that allows us
documents.
O TrueO False
Explanation:
You're welcome.
what are bananas if they are brown
if banans are Brown there bad I think
Complete the statement using the correct term.
The [blank] of the site is what will be displayed on the web page.
answer is Body
The BODY of the site is what will be displayed on the web page. It contains most of the distinctive content of the web page.
A web page refers to a document exhibited by the browser, which is generally written in the HTML language.
The body of a web page is a big area in the center that contains the most important and distinctive content of a web page.
The body will determine the central content of the HTML document, which will be observable on the web page (e.g., a photo gallery).
Learn more about a web page here:
https://brainly.com/question/16515023
in the situation above, what ict trend andy used to connect with his friends and relatives
The ICT trend that Andy can use to connect with his friends and relatives such that they can maintain face-to-face communication is video Conferencing.
What are ICT trends?ICT trends refer to those innovations that allow us to communicate and interact with people on a wide scale. There are different situations that would require a person to use ICT trends for interactions.
If Andy has family and friends abroad and wants to keep in touch with them, video conferencing would give him the desired effect.
Learn more about ICT trends here:
https://brainly.com/question/13724249
#SPJ1
Make a zine rather than a blog if: A. you want a large, unlimited audience. B. you want to use links in your work. C. you want readers to interact with your work. D. you want a physical copy of your work.
A.
do you want a physical copy of your work
Answer:
A
Explanation:
you want a large, unlimited audience.
Provide an example of formula (with proper syntax) that would check whether cell B5 has a negative number, and return a value of "negative" if it was and "not negative" the value was zero or higher.
Answer:
The formula is:
=IF(B3<0,"negative","not negative")
Explanation:
The formula can be split as follows:
= --> This begins all excel formulas
IF --> This means that we are writing an IF condition formula
B3<0, ---> This is the condition being tested
"negative", ---> This is the result is the condition is true
"not negative" ---> This is the result is the condition is false
quick IM BEGGING
What is the value of the variable result after these lines of code are executed?
>>> a = 12
>>> b = 0
>>> c = 2
>>> result = a * b - b / c
0
0
It has no value since an error occurred.
It has no value since an error occurred.
20
20
6
6
Answer:
Explanation:
The value of the result variable after these lines of code are executed is -0.0.
Answer:
The value of result after these lines of code are executed would be 0.
Explanation:
This is because the expression a * b - b / c is evaluated as follows:
result = a * b - b / c
= 12 * 0 - 0 / 2
= 0 - 0
= 0
No errors occur in this code, so result will have a value of 0.
System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio
System testing is a crucial stage where the software design is implemented as a collection of program units.
What is Unit testing?Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.
It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.
Read more about System testing here:
https://brainly.com/question/29511803
#SPJ1
What types of files we do backup in UNIX and Linux?
Answer:
Nas ja kaki yawe diy. Kitu mu chuk k a jana a.
Explanation:
Karu explain pudi diya chal puter chuti kar.
sir bilal wants to know your arid number for 2 extra grades.
In Java code, the line that begins with/* and ends with*/ is known as?
Answer:
It is known as comment.
(01)²
what is 2 in this number
Answer and Explanation:
It's an exponent (2 is squared I believe)
When you have an exponent, multiply the big number by the exponent
Ex: \(10^2\)= 10x2=20
Ex: \(10^3\\\)= 10x3=30
A(n)
is a fast compute with lots of storage. pls help
Answer:
That last answer was amazing, but the answer you're looking for is server
Explanation:
On a network, a server is a computer that distributes files to numerous clients. The opposite of storage is a device where you keep data that you can access when you require it.
What is the role server in fast compute with storage?A cloud server is a pooled, centrally placed server resource that is hosted and made available through an Internet-based network—typically the Internet—for use by a variety of users.
The same ways that a traditional physical server would be able to provide processing power, storage, and applications are also possible with cloud servers.
One system may include both servers and storage. The purpose of storage is to provide long-term access to files. Distributing work, sharing resources, and exchanging data are the duties of a server.
Therefore, a server is a fast compute with lots of storage.
Learn more about server here:
https://brainly.com/question/28560376
#SPJ2
(TCO C) When a remote user attempts to dial in to the network, the network access server (NAS) queries the TACACS+ server. If the message sent to the server is REJECT, this means _____.
Answer:
The correct answer to the following question will be "The user is prompted to retry".
Explanation:
NAS seems to be a category of server system a broader open internet as well as web through in-house and perhaps remotely associated user groups.
It handles as well as provides linked consumers the opportunity to provide a collection of network-enabled applications collectively, thereby integrated into a single base station but rather portal to infrastructure.Unless the text or response sent to the server seems to be REJECT, this implies that the authentication process continued to fail and therefore should be retried.What is one lighting technique that is used to simulate a strong sun?
Answer:
Heat lamp.
Explanation:
Like the sun, a heat lamp gives off light and heat, mimicking the actions of a sun. To simulate a strong sun, turn the heat lamp up higher to create brighter light and warmer heat.
Hope this helps!
Research statistics related to your use of the Internet. Compare your usage with the general statistics.
Explain the insight and knowledge gained from digitally processed data by developing graphic (table, diagram, chart) to communicate your information.
Add informational notes to your graphic so that they describe the computations shown in your visualization with accurate and precise language or notations, as well as explain the results of your research within its correct context.
The statistics and research you analyzed are not accomplished in isolation. The Internet allows for information and data to be shared and analyzed by individuals at different locations.
Write an essay to explain the research behind the graphic you develop. In that essay, explain how individuals collaborated when processing information to gain insight and knowledge.
By providing it with a visual context via maps or graphs, data visualization helps us understand what the information means.
What is a map?The term map is having been described as they have a scale in It's as we call the longitude and latitude as well as we see there are different types of things are being different things are also in it as we see there are different things are being there in it as we see the oceans are there the roads and in it.
In the US, 84% of adults between the ages of 18 and 29, 81% between the ages of 30-49, 73% between the ages of 60 and 64, and 45% between the ages of 65 and above use social media regularly. On average, users use social media for two hours and 25 minutes each day.
Therefore, In a visual context maps or graphs, and data visualization helps us understand what the information means.
Learn more about the map here:
https://brainly.com/question/1565784
#SPJ1
Performance assessments are conducted periodically and .
Performance assessments are conducted periodically and systematically.
What are performance assessments ?Periodic and structured evaluations are essential to maintain accurate assessments of performance. These reviews usually occur regularly, such as once or twice a year, and follow a systematic process designed to examine an individual's job-related skills consistently using objective standards.
A typical appraisal procedure generally includes establishing clear aims and goals for the employee, offering regular coaching along with feedback throughout the appraisal term, compiling data related to their task progress, and then conducting a comprehensive review at the end of that period to analyze and assess it thoroughly.
Find out more on performance assessments at https://brainly.com/question/1532968
#SPJ1
Classify the characteristics as abstract classes or interfaces.
A. Uses the implements keyboard
B. Cannot have subclasses
C. Does not allow static and final variables
D. Can have subclasses
E. Uses the extends keyboard
F. Allows static and final variables
1) What is the first compartment of the 3 Sink Setup filled with?
O Multi-purpose detergent solution and water at least 110°F/37°C
O Baking soda solution and water at least 110°F/37°C
Isopropyl alcohol solution and water at least 110°F/37°C
Sanitizer solution and water at least 110°F/37°
The first compartment of the 3 Sink Setup is typically filled with option D: a Sanitizer solution and water at least 110°F/37°
What is the first compartment of the 3 Sink Setup filled with?The first part of the 3 Sink Setup is for cleaning and getting rid of germs. People often call it the spot where you sanitize things. In this compartment, we mix a special cleaning liquid with water to make a sanitizer solution. We suggest keeping the water in this area at least as warm as 110°F/37°C.
Sanitizer is used to get rid of germs on things like dishes and kitchen surfaces. It stops germs from spreading and makes sure food is safe.
Learn more about Sanitizer solution from
https://brainly.com/question/29551400
#SPJ1
A network-based attack where one attacking machine overwhelms a target with traffic is a(n) _______ attack.
HELLO!
Answer:
''Denial of Service'' also known as ''DoS''Explanation:
It's ''Denial of service'' this is because it means an attack that mean to be shutting down a machine or network. So, ''Denial of Service'' best fits in this sentence.
A security professional is responsible for ensuring that company servers are configured to securely store, maintain, and retain SPII. These responsibilities belong to what security domain?
Security and risk management
Security architecture and engineering
Communication and network security
Asset security
The responsibilities of a security professional described above belong to the security domain of option D: "Asset security."
What is the servers?Asset safety focuses on identifying, classifying, and defending an organization's valuable assets, containing sensitive personally capable of being traced information (SPII) stored on guest servers.
This domain encompasses the secure management, storage, memory, and disposal of sensitive dossier, ensuring that appropriate controls are in place to safeguard the secrecy, integrity, and availability of property.
Learn more about servers from
https://brainly.com/question/29490350
#SPJ1
In cell I6, using the named range in cell B14, enter a formula to determine the projected increase in revenue for the Musica Room based on the revenue figure in cell H6 and the increase in revenue percentage in cell B14.
Copy this formula through cell I10.
B should be right but im not sire
what is the main goal of Artificial intelligence (AI) ?
Answer:
To Create Expert Systems − The systems which exhibit intelligent behavior, learn, demonstrate, explain, and advice its users. To Implement Human Intelligence in Machines − Creating systems that understand, think, learn, and behave like humans.
The basic objective of AI (also called heuristic programming, machine intelligence, or the simulation of cognitive behavior) is to enable computers to perform such intellectual tasks as decision making, problem solving, perception, understanding human communication
Explanation:
Answer:
Artificial Intelligence will be the future of manufacturing and industry.
Explanation:
i hope this helps
The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least
The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least 65 percent transfer efficiency.
What is the transfer efficiency
EPA lacks transfer efficiency requirement for auto refinishing spray guns. The EPA regulates auto refinishing emissions and impact with rules. NESHAP regulates paint stripping and coating operations for air pollutants.
This rule limits VOCs and HAPs emissions in automotive refinishing. When it comes to reducing overspray and minimizing wasted paint or coating material, transfer efficiency is crucial. "More efficiency, less waste with higher transfer rate."
Learn more about transfer efficiency from
https://brainly.com/question/29355652
#SPJ1
To prevent computer errors, which of the following characters should not be used in a file name?
Answer:
a space, period, hyphen or underline, and since most operating systems are case sensitive you should use lowercase letters. avoid using spaces or underscores.
Explanation:
a space, period, hyphen or underline, and since most operating systems are case sensitive you should use lowercase letters. avoid using spaces or underscores.
What Is Used To Identify Spelling errors in the document?
Answer: Spell check
Explanation: Spell check identifies and corrects misspelled words. It also allows you to search a document yourself for words you've misspelled.