Using E-commerce , how you can make Secure payments

Answers

Answer 1

Answer:

requesting a receipts for every payment

Explanation:

after making a payment you have to request a receipt it might be printable or electronic


Related Questions

Which of the following is NOT an e-reader you would use as an alternative to carrying around a set of textbooks?

Answers

Answer:

Which of the following is NOT a benefit of a word processing application?

Explanation:

SOMEONE PLEASEE *URGENT**

Sequencing and Flowcharting
Try writing out the sequence of events for one of the simple instructive processes below:

1. Drawing a square on a piece of 8 x 11 paper.
2. Moving from your 2nd-period class to your 3rd-period class.
3. Adding a new contact to your list of cell phone contacts.

Now, create a flowchart that outlines how to complete your chosen sequence of events. You may wish to reference these common flowchart symbols as you work.

Submit
1) In the text box: Your sequence of events written out.

2) A file image of your flowchart outlining that sequence of events.

Answers

hope this helps!!!!!

Bad Directions You are driving to your friend’s house and are using your smartphone for directions. While approaching your destination, you realize that your smartphone app instructed you to turn the wrong way on your friend’s street. How could this have happened?

Answers

This could have happened when:

Lack of Internet service or failureWrong application.What do you mean by Internet?

The Internet is seen as a form of a network that helps people to  connects their computers all over the nation.

In this age,  Through the help of the Internet, people are able to  share information and navigate through places.

Note that the problem of bad direction could have happened when:

Lack of Internet service or failureWrong application.

Learn more about Internet from

https://brainly.com/question/2780939

#SPJ1

Your team has been assigned responsibility to identify an appropriate MSSP provider for a small, rural hospital. What criteria will you use to select an appropriate provider? Do research online to identify three MSSP providers. Use the criteria you established to rate each of the three, and choose the one that would be best for the hospital.

Answers

The Criteria for Choosing the Right MSSP for for a small, rural hospital are:

Customized solution. UX – User experience. Responsiveness. Cost-effective.

What are the three MSSP providers?

They are:

1) Cipher.

2) SecurityHQ.

3) SecureWorks.

The option that is chosen among the three is Cipher. It is known to be chosen because they provide the services listed above which is needed by the hospital as well as:

Cybersecurity MonitoringIncident Management and Cyber Defense Security Asset Management, etc.

Therefore, based on the above. The Criteria for Choosing the Right MSSP for for a small, rural hospital are:

Customized solution. UX – User experience. Responsiveness. Cost-effective.

Learn more about Cipher from

https://brainly.com/question/14754515
#SPJ1

What does the office background allow you to do?

Answers

Answer: Any changes that you make to the Office Background in PowerPoint 365 will be reflected in all other Microsoft Office 365 products on your computer, such as Word, Excel, Outlook, and others. These patterned strips are not activated by default.

Carlos is having trouble with his device. It keeps freezing on him and he does not know what to do. What is the first step he should take when troubleshooting this problem?

A.
sell the computer

B.
check for power issues

C.
restart his device

D.
verify network connectivity

Answers

c restart his device

Explanation:

it is freezing and the most logical reason is c restart his device

write a complete main that will input a decimal number, double it and display the results

Answers

Answer:

No sure what language you want but since I am best with Java.

class Main {

 public static void main(String[] args) {

   Scanner input = new Scanner(System.in);  // Create a Scanner object

   System.out.println("Enter Number");

double number01 = input.nextLine();  // Read user input

double multi = number01 * 2;

   System.out.println("Number is " + multi);  // Output user input

}

}

Explanation:

I want to know if C# can be used to solve questions here as well.

Answers

What exactly is the question that you’re asking what is C #?

The student's quiz grades are stored in the Python list quizzes. To calculate the student's quiz average we need to drop the 3 lowest scores and calculate the average of the remaining quizzes. The output is to be the average of the remaining quiz grades and the quiz grades that were dropped. Make use of the string formatting in section 3.7 to create the output.

Answers

The program that will compute the average quiz grade for 5 students is given below:

The Program

# This program will compute the average quiz grade for 5 students

print("Hello, this program is designed to compute the average quiz grades for the following students: Clark, Nicole, Kiran, Alex, and Erik")

students = ["Clark", "Nicole", "Kiran", "Alex", "Erik"]

grades = []  # create an empty list to store the grades in

for student in students:

   print(student, ", What was your quiz grade?")

   grade = input("My grade is: ")

   grades.append(int(grade))  # convert the grade to an integer number, then add it to the list

print("Here are the grades you entered: ", grades)

average = sum(grades) / len(grades)

print("The average is:", average)

highest = max(grades)

print("The highest grade is:", highest)

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Computer applications can help us to stay organized, but they can also add a lot of complexity! What are some ways you use applications to help streamline your life? What else would you like to use to further improve your organization?

Answers

The ways that a person can use applications to help streamline your life are:

It helps a person to delegate one task.It helps to De-clutter a person's workspace.It helps to make a system for a regular task. It helps to break as well as cut down one's communicationIt helps to plan out your week.

What else would you like to use to further improve your organization?Application's that can give constructive feedback. ...Applications that helps to Organize and optimize tasks. .

What is the meaning of computer application?

Computer Application is known to be a term that connote a kind of an identifiable computer software process that is often used to make as well as gets back  communications or transactions on a person's behalf or on behalf of an organization which it stands for.

Therefore, The ways that a person can use applications to help streamline your life are:

It helps a person to delegate one task.It helps to De-clutter a person's workspace.It helps to make a system for a regular task. It helps to break as well as cut down one's communicationIt helps to plan out your week.

Learn more about Computer applications from

https://brainly.com/question/24264599

#SPJ1

What is the missing line of code?
class vehicle:
self.model = strModel
self.color = strColor
def
_str_(self):
return self.model +
+ self.color

Answers

Answer:

def__init__(self,strModel,strColor):

Taking on a programming internship does not provide training and is of little value to an intern. True or False.

Answers

Answer:

the correct answer is False

1. What is the difference between tools and equipment?

2. Describe the word paraphernalia.​

Answers

Answer:

down below

Explanation:

1- tools can be any item used to achieve a goal. an equipment is a specific tool used to achieve a specific object

2- it means article of equipment. equipment used for a particular activity.

hope this helps<3

Tools are used to fix things or help fix things and equipment is like for example I need equipment for my in home gym

Janitor and Cashier classes have a print function that is similar. How can we refactor this code to reduce repetition?

Answers

A sample code to show how to refactor a code to reduce repetition if two classes have a print function that is similar:

The Code

public abstract class DeviceMessageBase

{

   public void Connect()

   {

      // do connect things

   }

   public void WaitMessage()

   {

       // do wait message things

   }

   public void ParseMessage()

   {

       // do parse message things

   }

   public abstract void ProcessMessage();

}

public class DeviceMessageNavigator : DeviceMessageBase

{

   public override void ProcessMessage()

   {

       //**//NAVIGATE MESSAGE(Pass it to somewhere else)**

   }

}

public class DeviceMessagePrinter : DeviceMessageBase

{

   public override void ProcessMessage()

   {

       //**//PRINT MESSAGE**

   }

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

The Window logo at the top left hand side of the page is known as​

Answers

Answer:

The title bar is a horizontal bar located at the top of a window in a GUI. It displays the title of the software, name of the current document or file, or other text identifying the contents of that window.

Explanation:

> var direction = []; directions.push("walk to corner");//1 directions.push("turn right");//2 directions.push("walk one block");//3 directions.push("turn left");//4 directions.push("walk to gray house");//5 directions.push("go down the strairs");//6 directions.push("knock on the pink door");//7 console.log(directions); "knock on the pink (7) ["walk to corner", "turn right", "walk one block", "turn left", "walk to the gray house", "go down the astairs" door",]

is dis code correct​

Answers

Answer:

no it's not correct.........

Imani needs to copy text from one document into another document. She needs the pasted text to retain its original appearance. When she pastes the text, she should use which of the following settings?

Keep Text Only

Use Destination Theme

Merge Formatting

Keep Source Formatting

Answers

Answer:

Keep Text Only

Explanation:

Because why would it be any of the other ones so it would be that

Imani must transfer text from one paper to another. She ought to preserve the formatting from the original content when she pastes it. Hence, option D is correct.

What is a Document?

A file produced by a software program is a computer document. Originally used to describe only word processing documents, the term "document" is now used to describe all saved files. Text, photos, music, video, and other sorts of data can all be found in documents.

An icon and a filename are used to identify documents. The filename gives the file a specific name, whereas the icon depicts the file type visually. The majority of filenames for documents also contain a file extension, which indicates the file type of the document. For instance, a Photoshop document might have a.PSD file extension, whereas a Microsoft Word document would have a.DOCX file extension.

To get more information about Document :

https://brainly.com/question/2901657

#SPJ6

You want to see data on charters flown by either Robert Williams (employee number 105) or Elizabeth Travis (employee number 109) as pilot or copilot, but not charters flown by both of them. Create the table that would result from applying the SELECT and PROJECT relational operators to the CHARTER table to return only the CHAR_TRIP, CHAR_PILOT, and CHAR_COPILOT attributes for charters flown by either employee 105 or employee 109.

Answers

Answer:

So, what is the question?!

Explanation:

HOW TO WRITE IN MACHINE STENO?



1.we have a meeting in our office during the afternoon.
2.inbetween of the left and rightwe have the vowel.
3.The left side of the keyword is didecated to the beginning of the syllable.

Answers

Answer:

so first download the app if u have a mac it's easy

Explanation:

app name I guess you know so u can easily find and get it

Rank the following storage systems from slowest to fastest:
a. Hard-disk drives
b. Registers
c. Optical disk
d. Main memory
e. Nonvolatile memory
f. Magnetic tapes
g. Cache

Answers

Answer:

Slower = Larger capacity (and vice versa)

Ranked from Slowest to Fastest:

1. magnetic tapes

2. optical disk

3. hard-disk drives

4. nonvolatile memory

5. main memory

6. cache

7. registers


Imagine that you are designing a smishing scam that involves sending text to people to entice them to go to a website and provide personal information that
you can use to access their checking account.
Open a new Microsoft® Word document and craft a text message that would be difficult for people to ignore.
Design a simple web page that would look legitimate to people who bank at your bank and that would capture their checking account number and PIN.

Answers

Answer:

Explanation:

i attached picture down check it below

Environment varies firm to firm
of
Select one:
O True
tion
False

Answers

Answer:

true

...................

HELP PLEASE
Which type of error occurred in the following lines of code?

>>> print(9 / 0)
Traceback (most recent call last):
File " ", line 1, in
9/0
ZeroDivisionError: division by zero

logical error
logical error

exception
exception

syntax error
syntax error

reserved word error
reserved word error

Answers

Answer:

Logical Error

Explanation:

The division by 0 is a logical error.

Name this program lower.c - This program will read two strings and output which string has more lowercase letters. If both strings contain the same amount of lowercase letters, indicate the number of lowercase letters. Match the output according to the examples below. Assume each string will contain less than 50 characters.

Examples
Enter two strings:
Hello wORLD
'Hello' contains 3 more lowercase letter(s) than 'wORLD'.

Enter two strings:
HELLO WORLD
'HELLO' and 'WORLD' both contain 0 lowercase letter(s).

Enter two strings:
CRIMson! tide1
'tide1' contains 1 more lowercase letter(s) than 'CRIMson!'.

Answers

The program will be:

#include <stdio.h>

int lower_count(char s[]) {

   int count = 0, i;

   for (i = 0; s[i]; i++) {

       if (s[i] >= 'a' && s[i] <= 'z')

           ++count;

   }

   return count;

}

int main() {

   char str1[51], str2[51];

   int count1, count2;

   printf("Enter two strings:\n");

   scanf("%s", str1);

   scanf("%s", str2);

   count1 = lower_count(str1);

   count2 = lower_count(str2);

   if (count1 > count2) {

       printf("'%s' contains %d more lowercase letter(s) than '%s'.\n", str1, count1 - count2, str2);

   } else if (count1 < count2) {

       printf("'%s' contains %d more lowercase letter(s) than '%s'.\n", str2, count2 - count1, str1);

   } else {

       printf("'%s' and '%s' both contain %d lowercase letter(s).\n", str1, str2, count1);

   }

   return 0;

}

What is a program?

It should be noted that a series of instructions written in a programming language for a computer to follow is referred to as a computer program.

The software, which also contains documentation and other intangible components, comprises computer programs as one of its components. Source code is a computer program's human-readable form.

In this case, the program is shown above.

Learn more about program on:

https://brainly.com/question/26642771

#SPJ1

A computer is experiencing network connectivity issues; what step would you NOT attempt to solve the problem?

Answers

Answer:

A step I wouldn't take is throwing the computer in the trash and lighting my house on fire.

Explanation:

Do some research and find out whether Babbage’s Analytical Engine is a computer according to the von Neumann model.

Answers

Answer: The Analytical Engine incorporated an arithmetic logic unit, control flow in the form of conditional branching and loops, and integrated memory, making it the first design for a general-purpose computer that could be described in modern terms as Turing-complete.

Write code to print values of integers x, y, and z in a single line such that each value is left-justified in 6 columns

Answers

The code to print given value can be x = int(input ("enter first number: ")) y = int(input ("enter second number: ")) z = int(input ("enter third number: ")) print('%6d %6d %6d' %(x,y,z)).

What is a code?

Print is a function in many programming languages that sends text, variables, or another object to the screen. If you're more familiar with the Scratch programming language, print is equivalent to say.

The print command is used to print a file without using a printing-capable Windows application.

We receive three integer variables (x,y,z) using the Python programming language, and the values are printed out using string formatting (%6), which specifies that the output should be right justified with a width of 6.

x = int(input ("enter first number: "))

y = int(input ("enter second number: "))

z = int(input ("enter third number: "))

print('%6d%6d%6d'%(x,y,z)).

Thus, this is the code to print given value.

For more details regarding a code, visit:

https://brainly.com/question/1603398

#SPJ1

________________ is one example of a career that is available within the web and digital communications path.

Question 13 options:

Multimedia artists and animators


Engineer


Police Officer


Programmer

Answers

Answer:

multimedia artists and animators

Write a program that takes in three integers and outputs the median value (not the largest or smallest value). End the output with a newline. Ex: If the input is: 7 1 4 the output is: 4
in C++ please

Answers

Hope this helps bro

why information systems were centralized and used solely with governance and management
during the First Era

Answers

The data will be given according to the supply and the processor was strong with governance and management

What is information systems?

Storage of data sets, interaction logs, documents, and modification histories can be done with the help of computer systems. The organization will spend a considerable amount of time hunting for certain data if the conventional remote backup is used.

Strategic planning is a governance strategy used by governments. The act of submitting, succumbing, or providing details is known as data compliance was used in the First Era.

Learn more about information systems, here:

https://brainly.com/question/13299592

#SPJ1

Other Questions
in animal farm, the pigs become the leaders and the other animals accept them because the pigs are the cleverest and smartest. Is intelligence the most important quality needes for leadership? what other important qualities are important for a leader to have?I have a late paper due and I need some help I can do the work but I need the questions answered because I dont have enough time to read the book and classes end in 6 days [tex] \sf \int_0^ \frac{1}{2} \frac{ ln {}^{2} (1 - x) }{x} \: dx \\ [/tex] The three sides of a triangle are in different colors blue, green and red. The ratio of the length of the blue side to the length of the green side to the length of the red side is 3 : 4 : 5. The perimeter of the triangle is 240 cm. a) Fill in the blank: ___ units = 240 cm b) Fill in the blank: 1 unit = ___ cm c) What is the length of the red side of the triangle? I Have A 58 in Math Please Help Who Ever Can Make A Real World Scenario With The Pythagorean Theorem And The Solution Step By Step Gets BrainlyestI Lost 50 Points Already Im Tired Of This kindly solve thisi am in troble Help! Find the value of x. Which do you believe to have been the stronger monarchy: France, or England which table represents the statement "di runs at a rate of 4 meters per second" What part of the plant performs sexual reproduction?LeavesFlowerRootsStem The map shows how the world looked to Columbusbefore he set sail on his first voyage of discovery. Amap like this would have reinforced Columbus's beliefthatthe world was completely flat.O Asia could be reached by sailing west.O North America was the world's largest continent.O North America had the world's coldest temperatures. In about 120 words , write an essay on the benefits of exercise . You may use the notes to help you . - burns calories- improves mood- increase metabolic rate - release endorphins Daniel needs to bake cookies for a bake sale. Each cookie will cost dollars. Brandon makes 12 chocolate chip cookies and 18 sugar cookies. Create an expression that represents Taylor's total cost of the cupcakes. the following transactions occurred during march 2024 for the right corporation. the company operates a wholesale warehouse.issued 30,000 shares of no-par common stock in exchange for $300,000 in cash.purchased equipment at a cost of $40,000. cash of $10,000 was paid and a note payable to the seller was signed for the balance owed.purchased inventory on account at a cost of $90,000. the company uses the perpetual inventory system.credit sales for the month totaled $120,000. the cost of the goods sold was $70,000.paid $5,000 in rent on the warehouse building for the month of march.paid $6,000 to an insurance company for fire and liability insurance for a one-year period beginning april 1, 2024.paid $70,000 on account for the inventory purchased in transaction 3.collected $55,000 from customers on account.recorded depreciation expense of $1,000 for the month on the equipment. best estimate for 6,193 48 using compatible numbers. What is the solution set of the compound inequality x + 1 < -2x + 11 < 3 x + 5?Answer choices:6/5 < x < 10/3-1/3 < x < 2No solution-2 < x < 10/3 If 4.73 g Ar are added to 3.22 atm He in a 2.00 L cylinder at 27.0 C. what is the total pressure of the resulting gaseous mixture? For a function to have an inverse, it must be _____. To define the inverse sine function, we restrict the _____ of the sine function to the interval _____. A family of 12 went to the local Italian restaurant for dinner. Every family member ordered a drink and meal, 4 ordered an appetizer, and 8 people ordered cake for dessert. Write an Expression Please help asap 12. glycogen phosphorylase is activated in vigorously active muscle without significant changes in intracellular [camp]. explain. PLEASE HELP Read the excerpt from Martin Luther King Jr.s "The American Dream speech.America is essentially a dream, a dream as yet unfulfilled. It is a dream of a land where men of all races, of all nationalities and of all creeds can live together as brothers.Now read the excerpt from Governor George Wallace's inaugural address.And so it was meant in our political lives . . . whether Republican, Democrat, Prohibition, or whatever political party . . . each striving from his separate political station . . . respecting the rights of others to be separate and work from within their political framework . . . and each separate political station making its contribution to our lives. . . .And so it was meant in our racial lives . . . each race, within its own framework has the freedom to teach . . . to instruct . . . to develop . . . to ask for and receive deserved help from others of separate racial stations.What technique makes both excerpts effective?the use of repetitionan appeal to logican appeal to credibilitythe use of imagery