Skip to main content

Explain Credit Card Payment System

Electronic Credit Card System on Internet

Credit cards are the most popular E-Payment method. The Credit Card is plastic credit card with a magnetic strip issued by a bank or financial institution. Holders of a valid credit card have the authorization to purchase goods and services up to a predetermined amount, called a credit limit. There are the following 5 entities involved in Credit Card System as follows:



Entities Involved in Credit Card Payment System

1. Card Holders.
2. Merchants
3. Card Issuer (Bank / financial institution for Card Holder)
4. Acquirer (Bank / financial institution for Merchant)
5. Card Brand (Company - Master, Visa card)



Process of using Credit Card


1. Issue a Credit card to potential card holder.
2. A person requests to an issuing bank for Credit Card. The bank approves or denies the application. If approved a plastic card is delivered to the customer by mail. The card holder calls the bank to activate the card.
3. Card holder shows card to merchant or enter information at website to buy something.
4. Merchant asks approval from Card Company. Transaction is paid by credit and Merchant keeps sales slip
5. Merchant sends sales slip to acquirer bank and pays fees for the service. This is called “capturing process”
6. Acquiring bank requests the card company to clear credit amount and gets paid
7. Then Card Company asks for clearance to issuing bank.
8. The amount is transferred from issuer to brand company. The same amount is deducted from card holder’s account in issuing bank.


Basics of eCommerce

  1. Definition and History of ECommerce
  2. Role of E-Commerce in Daily Life
  3. Classification of e-Commerce Applications
  4. Difference Between Electronic Market and IOS
  5. Types Of e-Commerce


Ecommerce Payment Systems/ ePayment

  1. Types of Popular e-Payment Systems
  2. Explain Credit Card Payment System
  3. Advantages Disadvantages of Credit Cards
  4. Difference Between Debit Card and Credit Card
  5. Types of E-payment Security Schemes
  6. Types of e-Payment Security Protocols

Comments

Popular posts from this blog

How Functions are Used in Excel Fast and Easy Way 3

What is a Function in Microsoft Excel? Microsoft Excel provides a large number of Functions for processing data in Excel Worksheets easily. Functions are predefined formulas in Excel. These functions are used in different types of calculations on numerical or other data  quickly. How a Function is Used in Microsoft Excel? There are three popular ways to use built-in functions in Microsoft Excel. 1. Type Functions Manually 2. Use Function Library Commands 3. Use Insert Function Dialogue Box Other Microsoft Excel Topics on www.ComputerGap.com  Microsoft Excel Formulas and Functions Fast and Easy Way -1 Using Simple Formulas in Excel With Arithmetic Operators 2 How Functions are Used in Excel Fast and Easy Way 3 Create Bar Chart in Excel Easily by Example Employee Pay sheet Formulas in Microsoft Excel  Students Test Score Grades Result Sheet in Excel Electricity Bill Calculator Formulas in Excel    Microsoft Office Word Pro...

Attributes of Table Tag

Border: It is used to specify a border and its thickness for a table. Cellspacing: It is used to specify the distance between adjacent cells in a table. Cellpadding : it is used to specify the distance between a cell and cell contents in a table. Width : It is used to specify width of a table in pixels or as percentage to screen width. Align : It is used to specify the horizontal alignment of a table. Possible horizontal alignment values are "left", "right" or "center". Valign : It is used to set the vertical alignment of a table as "top", "bottom" or "middle". Bgcolor : It sets the background color of a table. You can specify color names or hex values for the color. Example of table with border=1, width=200 and align=center attributes HTML Coding: <table border="1" width="200" align="center"> <tr> <th>Book</th><th>Price($)</th> </tr> ...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...