Q.No.3. A filling station (gas station) is to be set up for fully automated operation. Drivers swipe their credit card through a reader connected to the pump; the card is verified by communication with a credit company computer, and a fuel limit is established. The driver may then take the fuel required. When fuel delivery is complete and the pump hose is returned to its holster, the driver's credit card account is debited with the cost of the fuel taken. The credit card is returned after debiting. If the card is invalid, the pump returns it before fuel is dispensed. As a software developer if you have to develop a software for the above given scenario, Suggest five possible problems that could arise if a you does not develop effective configuration management policies and processes for your software.

Answers

Answer 1

Answer:

Following are the 5 problems, that can arise in this scenario:

Explanation:

When the driver swipes its credit or debit card, its connection with both the card company could not be formed due to the poor or ineffective development, therefore the driver may not put any fuel from its vehicle.  It still wants to spend energy even after the card is read as incorrect.  So, its total price to just be debited from the credit or debit card shall be much more and less than the real cost as well as the deduction of both the fuel should be overestimated.  Its information may not adjust when a driver uses its device because the next driver could no matter how long only use the device. Its fuel limit to also be established when the vehicle has stopped its card would be faulty as well as a certain restriction would not cause its device to be misused.

Related Questions

Write a Java program that generates the second, third, and fourth powers of a list of whole numbers from 1 to n where n is input by the user. Write a Java program to do this. • First, ask the user for the largest of the whole numbers to use (n). • Second, output column headers (see below, n, n^2, n^3, n^4). • Then, use a for loop to iterate from 1 to n, computing each of that loop variable to the second power, third power and fourth power, respectively. NB: The values should be stored in a 2dimensional array. Display the values as shown below: Sample output

Answers

Answer:

//import the Scanner class

import java.util.Scanner;

//Begin class definition

public class Powers{

       //Begin the main method

    public static void main(String []args){

       

        //Create an object of the Scanner class

        //to allow for user inputs

       Scanner input = new Scanner(System.in);

       

        //Prompt the user to enter the largest of the whole number

       System.out.println("Enter the largest of the whole numbers to use");

       

        //Receive user input using the Scanner object

        //and store in an integer variable

       int n = input.nextInt();

       //Create a two-dimensional array using the user input

       int [][] powerlist = new int [n][4];

       

       //Create an outer for loop

       //to loop as many times as the number entered by the user

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

           //Create an inner loop to find

           //the powers of each of the numbers

           for(int j = 0; j < 4; j++){

               //Typecast the value returned from the Math.pow() function

               powerlist[i][j] = (int) Math.pow((i+1), (j+1));

               

           }

           

       }

       

       //Print out the header of the table

       //\t will print a tab character.

      System.out.println("n" + "\t\t" + "n^2" + "\t\t" + "n^3" + "\t\t" + "n^4");

       

       //Print out the elements in the two dimensional array

      for (int i = 0; i < powerlist.length; i++){

         

          for(int j = 0; j < powerlist[i].length; j++){

               //Separate each term by two tabs

              System.out.print(powerlist[i][j] + "\t\t");

           }

           

           System.out.println();

           

       }

       

    }

}

Sample Output:

Enter the largest of the whole numbers to use

4

n  n^2  n^3  n^4

1  1  1  1  

2  4  8  16  

3  9  27  81  

4  16  64  256

Explanation:

The code above has been written in Java and it contains comments explaining important lines in the code. Please go through the comments.

For clarity, the actual lines of code have been written in bold face to distinguish them from comments.

Screenshots of the code and a sample output have also been attached to this response.

The program is an illustration of loops.

Loops are used to perform repetitive and iterative operations.

The program in Java where comments are used to explain each line s as follows:

import java.util.*;

public class Main{

public static void main(String []args){

   //This creates a scanner object

   Scanner input = new Scanner(System.in);

   //This prompts the user for the largest integer

   System.out.print("Largest:");

   //This gets input for the prompt

   int n = input.nextInt();

   //This prints the output header

      System.out.println("n" + "\t" + "n^2" + "\t" + "n^3" + "\t" + "n^4");

      //This iterates from 1 to n

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

          //This iterates through the powers

          for(int j = 0; j < 4; j++){

              //This displays each output

              System.out.print((int) Math.pow((i), (j+1))+"\t");

          }

          //This prints a new line

          System.out.println();

      }

   }

}

Read more about similar programs at:

https://brainly.com/question/5419214

To protect the data, either the signature alone or the signature plus the message are mapped into printable ASCII characters using a scheme known as ________ or base64mapping.

Answers

Answer:

Base64 encoding

Explanation:

Base64 encoding is a binary to text encoding scheme. Binary data is represented in a printable ASCII string format by translation into radix-64 representation.

Base64 mapping works with a 64-character subset of US ASCII charset. The 64 characters are mapped to an equivalent 64-bit binary sequence. An extra 65th character is used for padding.

An alphabet is assigned to each of the 6-bit binary sequences from 0 to 63. The 6-bit binary to alphabet mapping is used in the encoding process.

What music is best for calming down and relaxing?

Answers

could be lofi hip hop or chill type music beats like that or soft jazz

Due to the fact that the * character can be used to match all ​characters in a filename, or all files in a directory, it is referred to as a ____________ metacharacter

Answers

Answer:

"Wildcard " seems to be the correct choice.

Explanation:

A metacharacter would be any character with a particular relevance, including a carat (^), a dollar sign ($) as well as an asterisk (*).It is different compared to something like the wildcard metacharacter. This same character developers have been using alone would be a period or perhaps a dot. With the exception of a new line it compares another other character.

Analyzing computer systems to gather potential legal evidence is computer ________. enforcement forensics detective work analysis

Answers

Answer:

  forensics

Explanation:

Analyzing computer systems to gather potential legal evidence is computer forensics.

Where can you go in QuickBooks Online to import a list of products and services? Select the Quick Create icon and under the Tools column, select Import Data, then Products and Services Select the Gear icon and under the Tools column, select Import Data, then Products and services Select the Accountant toolbox and under the Tools column, select Import Data, then Products and services

Answers

Answer:

Select the Gear icon and under the Tools column, select Import Data, then Products and services

Explanation:

The steps to import list of products and services in QuickBooks Online

Select Settings Gear icon

Under Tools column, select Import Data.

Select Products and Services.

Import products and services page will appear.

Select Browse.  

Map your information of your file to corresponding fields in Quick Books .

Select Import.

Question 1 A computer program is said to learn from experience E with respect to some task T and some performance measure P if its performance on T, as measured by P, improves with experience E. Suppose we feed a learning algorithm a lot of historical weather data, and have it learn to predict weather. What would be a reasonable choice for P

Answers

Answer:

Reasonable choice for P is the probability of it correctly predicting a future date's weather.

Explanation:

In Machine Learning, the computer or machine learns from experience  with respect to some task  and some performance measure. In this example the learning algorithm is fed to with a bulk of weather data with the goal to learn that data to be able to predict weather. So the task is to predict weather and performance measure is the probability of predicting the weather correctly. A learning algorithm can guess the weather correctly or incorrectly so as it keeps learning, it gains some experience and this experience improves its ability to perform the task. In this example the task of correctly predicting weather improves with experience. So its performance on task T of predicting weather, as measure by P which is the probability of correctly predicting future date's weather improves with experience E which is some function or procedure that it uses for weather prediction. Hence here performance measure P of this machine/program is the correct prediction of the weather of future date.


An employee who is devoted to doing his very best to uphold the company image is:

Answers

Answer:

Loyal

Explanation:

A loyal employee work in accordance with the ethics and core values of the company they are associated. The honor and respect all company decisions once the decisions have been made and they are the advocates of the company decisions and policies.

Loyal employees are collaborative with coworkers, vendors, partners, suppliers and customers in pushing for the success of companies projects, and goal achievement.

Loyal employees are dedicated to attending to detail and conform to ethical standards.

Universal Containers (UC) has multi-level account hierarchies that represent departments within their major Accounts. Users are creating duplicate Contacts across multiple departments. UC wants to clean the data so as to have a single Contact across departments. What two solutions should UC implement to cleanse their data? (Choose 2 answers) Use Data to standardize Contact address information to help identify duplicates Make use of the Merge Contacts feature of Salesforce to merge duplicates for an Account Use Workflow rules to standardize Contact information to identify and prevent duplicates Make use of a third-party tool to help merge duplicate Contacts across Accounts

Answers

Answer:

The answer is "first and the last choice".

Explanation:

For providing single contact across all department the Universal Containers (UC) uses two methods, that can be defined as follows:

It uses the standardized contact in data, that helps to identify multiple copies, of the Information and convert it into standardized contact information.  It uses the third-party tool, which helps to merge the duplicate contact information through accounts.

What are the 4 main components to developing a portfolio

Answers

Answer:

Step 1: Determining Asset Allocation

Step 2: Achieving the Portfolio

Step 3: Reassessing Weightings

Step 4: Rebalancing Strategically

The Bottom Line

Explanation:

Suppose you work at a startup with limited funding. Why might you prefer Azure data storage over an on-premises solution?
a. To ensure you run on a specific brand of hardware, which will let you form a marketing partnership with that hardware vendor
b. The Azure pay-as-you-go-billing models lets you avoid buying expensive hardware
c. To get exct control over the location of your data store

Answers

Answer:

The correct option is;

b. The Azure pay-as-you-go-billing models lets you avoid buying expensive hardware

Explanation:

The Azure pay-as-you-go billing model allows the flexibility in financing such that the organization is able to meet its financial needs and maintain goal oriented budget. The business is also able to experience immediate cost saving from lower initial deployment costs to minimal cost requirement associated with maintaining scaled and complex organizational supporting systems.

Anyone have Y.O.U.T.U.B.E or S.O.U.N.D.C.L.O.U.D. I need help putting my music and videos out there

Answers

Answer:

I do have Y.O.U.T.U.B.E.

Explanation:

1. Go on Y.O.U.T.U.B.E app.

2. Create account or log in to an existing account.

3. In the welcome screen, click the button of a camera on the top right corner next to your photo icon.

4. Click "Upload Video"

5. Then upload your video.

6. Add a description and details

7. Done! Just upload to on Y.O.U.T.U.B.E.

I hope this helps! Thank you:)

The ____ command enables you to initialize the terminal display or terminal window, to place text and prompts in desired locations, and to respond to what the user selects from the menu

Answers

Answer:

tput

Explanation:

In a response of approximately 50 words, explain why it would be essential for the successful A/V technician to participate in additional coursework, presentations and seminars offered by equipment manufacturers as well as annual conferences attended by colleagues in the industry.

Answers

Answer:

The role of an audiovisual technician are to service, operate, maintain and repair and set electronic equipment meant for meetings, concerts, webinars, teleconferences, presentation, television and radio broadcasting. Audio technicians playback video recordings, they improve set lighting  they ensure proper graphics coordination and they mix audio sound boards making after-school activities essential to the audiovisual career development.

Explanation:

Why was language important during the ancient times in regards to visual representation

Answers

Answer:

Explanation:

It was important back then because if their was an enemy attacking they could use their language instead of maybe shouting or throwing stuff and its easier to use language because you don't have to cause a ruckus.

Jonah needs to add a list of the websites he used to his report. He opens the "Websites" document and copies the information. He now needs to change his view to the "Renaissance" report to add the information before saving his report. What are the steps, in order, that Jonah needs to follow to view the "Renaissance" report?

Answers

Answer:

1.Go to the ribbon area

2.Click on the View tab.

3.Click on the Switch Windows tab.

4.Click on the "Renaissance" report

Explanation:

Answer:

1.Go to the ribbon area

2.Click on the View tab.

3.Click on the Switch Windows tab.

4.Click on the "Renaissance" report

Explanation:

just took it

What is a difference between a waxing crescent and a waning gibbous? (1 point) waxing crescent: first quarter waning gibbous: third quarter waxing crescent: second quarter waning gibbous: third quarter waxing crescent: third quarter waning gibbous: first quarter waxing crescent: fourth quarter waning gibbous: first quarter

Answers

Answer:

  waxing crescent: first quarter waning gibbous: third quarter

Explanation:

The moon is waxing (getting larger) in the first quarter after the new moon. It is waning (getting smaller) in the third quarter, after the full moon at the end of the second quarter.

The shape of the moon is a "crescent" when it is less than a semicircle. It is "gibbous" when it is more than a semicircle. As it waxes, the crescent grows until the moon is half-full at the end of the first quarter, then it is a waxing gibbous moon through the second quarter until it is full at the end of the quarter. Following the full moon, it is waning gibbous until it becomes half-full again at the end of the third quarter. Finally, it is a waning crescent through the fourth quarter until the new moon.

  waxing crescent: first quarter waning gibbous: third quarter

Answer: A

Explanation: I got 100% on the quiz

Which section, or hive, in the Windows Registry stores information about drag-and-drop rules, program shortcuts, the user interface, and related items?

Answers

Answer:

The correct answer will be "HKEY_CLASSES_ROOT (HKCR) ".

Explanation:

The Windows Registry seems to be an environment inside the operating system applications of Microsoft Windows that holds certain details as to whether machine memory becomes configured up, which applications are to be launched whenever the operating process becomes booted, which hardware is connected and the device solutions were selected.This HKCR is indeed a Windows Registry registration system hive but instead incorporates organization file extension additional data, and also some data from a conceptual identification number, class ID, but mostly connectivity ID. It  includes references again for correct file identifier as well as COM class contact information including such IIDs.

difference between . RAM and hard disk​

Answers

Answer:

                  RAM                                                  HARD DISK    

RAM is used to store computer           | HDD, hard disk has permanent

programs and data that CPU needs     | storage and it is used to

in real time. RAM data is volatile          | store user specific data

and is erased once computer is          | and operating system files.

switched off.                                          |  

 

RAM - This means RANDOM ACCESS MEMORY and it’s used to store data which can’t last for a long period of time
For example when you calculate a value in a calculator the result is stored in the RAM and can be accessed in the history for a little period of time
HARD DISK - This is like the internal memory of the desktop it’s has higher capacity and can be used to store files and can be accessed after a long period of time. Hope this is okay

MS Excel is a powerful spreadsheet program that helps people with complex mathematical calculations. In what ways could you use Excel for personal, work and school purposes? Give an example for all three.

Answers

Answer:

Different uses of MS Excel in personal, work and school purposes are discussed below in details.

Explanation:

For personal: MS Excel is that the data can be obtained online from any portion of the world anytime and anyplace. It presents the ease of reaching the excel files over cell phones even if there is the availability of laptops.

For Work: MS Excel is being extensively used in the preparation of a large work project or celebration or marriage party, where it can keep track of different duties, applications, and deadlines, and to examine the plans of collaborators in the planning of the event.

For School purpose: students can improve their training skills to resolve basic and logical analytical & mathematical puzzles in excel.

Financial stability is when u what

Answers

Are in good standing money wise!

hope helped c;

Answer:

Being financially stable means not having to worry about paying for expenses or taking care of your obligations. It doesn’t inherently mean you are rich, but it does mean that you’re able to handle finances without taking on more debt.

If you wanted to find out whether an integer contained an even number of 1 bits, which status flag would be useful

Answers

Answer:

The correct answer will be "Parity".

Explanation:

Parity seems to be a methodology that tests when information is transferred or missing or overwritten when something is transferred between one storage location to another, and then it is communicated between processors or devices.It would be used whilst also contrasting the container as well as the aggregated parity to evaluate or dual inspect for inaccuracies.

Words like "free" or "percent off" will not only trigger spam filters for your email, but will also ___________

Answers

Answer:

eliminasnados

Explanation:

An administrator wants to give a user limited access rights in Windows Vista so that the user can install printers and create local user accounts. Which of the following accounts should the administrator create for the user?

a. Power user
b. Administrator
c. Standard
d. Guest

Answers

Answer:

a. Power user

Explanation:

In this situation, the administrator should create a power user account for the user. This is a user who uses advanced features of computer hardware, operating systems, programs, or websites that are not used by the average user as well as having similar permissions to an administrator without the ability to edit or view subscriptions or other users and they do not have access to billing information. Thus in this scenario, a power user account will allow the individual to complete all of their required tasks but at the same time preventing them from accessing administrator level rights.

61. Select an activity of the Production Phase: a. a web authoring tool is often used b. the graphics, web pages, and other components are created c. the web pages are individually tested d. all of the above

Answers

Answer:

d. all of the above.

Explanation:

Since the advent of digital technology, production of goods and services have experienced a significant change from the traditional methods of production. This paradigm shift is made possible by the application of various modern technology.

Production processes are generally being facilitated and enhanced by the use of;

1. Computer-integrated manufacturing (CIM).

2. Computer-aided process planning (CAPP).

3. Computer-aided design (CAD).

4. Computer numerical control (CNC).

In the process of selecting an activity of the production phase:

1. A web authoring tool is often used.

2. The graphics, web pages, and other components are created.

3. The web pages are individually tested.

Which type of systems development is characterized by significantly speeding up the design phase and the generation of information requirements and involving users at an intense​ level? .

Answers

Answer:

Joint Application Development (JAD)

Explanation:

Joint Application Development is a method of application development that  lay emphasis on the up-front aspect of the application development cycle whereby steady communication between the designers and the intended users of the application under development by coming together in collaborative workshop styled discussions known as JAD sessions involving the mediators, facilitator, observers, end users, experts, and developers. As such with JAD process application development result in fewer errors high quality and is completed in lesser time.

Calories, sugars, and total fats could exceed the declared calorie value on the menu by only what percentage?

Answers

Answer:

20

Explanation:

Q8:What is the correct way to declare an integer named age? ----- , ---- , ----- , ----- . hint= use this (variable , integer ) .

Answers

Answer:

age=int(14)

Explanation:

When declaring an integer variable you use int which stands for integer. You place the number (age) inside the parentheses of int.

What are the similarities between Artificial intelligence and Human intelligence??

Answers

Answer: human intelligence revolves around adapting the environment and the artificial intelligence focuses on machines that copy human behavior

Which of the following insulation is not used in cables?
OPaper.
O Varnished cambric.
O Metal
O Rubber

Answers

Answer:

[tex]\huge \boxed{\mathrm{Metal}}[/tex]

Explanation:

Metal is a conductor of electricity, thus is not used in cables for insulation. Varnished cambric, paper, and rubber, are all insulators of electricity.

Other Questions
A sample of ground beef contains 21.3% protein and 16.9% fat, both by mass. What mass of this ground beef, in grams, contains 350 Calories? Assume all Calories come from protein and fat. Solve for x, please help Colin is a branch manager for a large freight company. He has noticed low morale lately, perhaps because of the cramped quarters, stricter policies, and lack of raises this year. According to Herzberg, Colin should first concentrate on What was the political impact of the Justinian Code?It reformed old, existing Greek laws.It made women and enslaved people citizens.It made Justinian I the emperor of Rome.It influenced the laws of other countries. simplify (5+1)^2-(11+3^2) divides by 4 __________ refer(s) to the way people select, interpret, remember, and use social information to make judgments and decisions about themselves and others.Group of answer choices Simplify the expression.(the quantity x to the one-sixth power end quantity to the power of 3.) A client has been diagnosed with schizophrenia. Assessment reveals that the clients lives alone. His clothing is disheveled, his hair is uncombed and matted and his body has a strange odor. During an interview the clients family voices a desire for the client to live with them when he is discharged. Based on the assessment findings, which nursing diagnosis would be a priority. A. social isolation rt auditory hallucinations B. bathing self care deficit rt symptoms of schizophrenia C. dysfunctional family process rt psychosis D. ineffective role performance rt symptoms of schizophrenia if you have 8 children and each child had at least Z=26 toys they get W=? more toys. How many do all the children have total What document is used to show the chronological sequence in which funds are received and disbursed by the sponsoring broker? Why are democracy and community different? Write a short history of the Federal Reserve (FED). Explain how it operates in the United States. What is the function of the FED 1.Asasia is planning on repainting one wall in her living room. As shown in the diagram below, thereare two windows that will not be painted.what is the total area of the wall thatGiven that the two windows are the exact same size,Asaga plans to paint?A. 6-severe feetsuere feetC. 68 square feet D. 80 square feet Simplify the expression: 3(x-5)+ 2x-3 Ac = 18 and CD = 5 AD ? Amelia has a lot of business knowledge and is confident in her abilities to open a successful store. She recently opened a bakery as a sole proprietor. She is expecting a high level of profits and is looking forward to Write an explanatory essay examining the principles laid out in the U.S. Constitution. Define the terms unalienable rights, establish justice, insure domestic tranquility, promote the general welfare, and secure the freedoms of liberty as they pertained to the citizens of 1789 and as they still pertain to citizens today. Cite examples of each term and evaluate the governments ability to maintain and uphold these principles. Remember, this is an explanatory essay that includes analysis. Make sure to support your analysis with relevant details and examples. PLEASE HELP ! How many ounces are there is 2.59 gallons of lemonade? (There are quarts in a gallon. ) ounces in a quart and 4 quarts in a gallon .) 234.5What kind of meaning may be revealed by the two types of characterization? Select all that apply.dictionaryinferentiallogicalexplicitimaginary The valuation allowance account that is used in conjunction with deferred taxes relates:_______