Skip to main content

Role of E-Commerce in Daily Life

Role of e-commerce




The role of e-commerce in daily life is becoming very important. This is the age of computer and internet. People find it easy to shop online and find the ordered goods on their door step. E-commerce can be used in the following ways:

1) Online Education


Online education is becoming very popular. Different types of interactive tutorials are available on internet. The students can download online books and tutorials free or with some price. Some websites provide online lectures for students.

2) Electronic Banking


Many banks are now introducing online banking. You can connect to your bank using your computer via internet. You can perform daily financial dealings from home. Many customers pay their bills using electronic banking.

3) Electronic Shopping


Now, People can shop from home using internet. Different manufacturers present their products on internet. People visit their website and select suitable products to purchase. Credit card is normally used to make a payment online.

4) Job Search


Internet is used to search different types of jobs all over the world. Many websites provides information to people about job vacancies.

5) Conducting Auctions


Many websites provide the facility of auction. People participate in auction to purchase a product. They can also pay the price using cedit card. A popular website eBay.com is providing the auction facility.

6) Collaboration with partners


Businessmen can collaborate with their partners using internet. They can discuss ideas and exchange views . they can make strategies in collaboration with their business partners all over the world.

7) Marketing and Advertising


E-commerce is playing an important role to market and advertise products all over the world. The use of advertisement on popular websites can be effective way to introduce a product to customers in the world.

8) Providing Customer Services


Business men can interact with their customers using internet. This can be faster and more convenient to access. Customers are using more and more computers today. So they prefer to complain online and find their solutions and quick response from the e-commerce website owners.


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

Microsoft Excel Formulas and Functions Fast and Easy Way -1

Introduction Using Formulas and Functions in Microsoft Excel is really a tough job for new students. This is a series of tutorials to make the use of Formulas and Functions in worksheets, easy with various real life example worksheets. مائیکروسافٹ ایکسل میں فارمولوں اور فنکشنزکا استعمال نئے طلبا کے لیے ہمیشہ سے ایک مسئلہ رہا ہے۔ میری کوشش ہے کہ فارمولا اور فنکشن کا ٹاپک پریکٹیکلی اور پکچرز کے ساتھ تفصیل سے بیان کروں۔ Let,s start. What is Microsoft Excel? Microsoft Excel is a popular application software used to manage data in the form of rows and columns and using Excel formulas and built-in Excel functions to perform various calculations on these data. Microsoft Excel is a part of Microsoft Office. We can make different types of worksheets in Excel, for example: Employee Pay Sheet Student Test Score Result Sheet with Grades Calculation Simple Electricity Bill Calculation Formula What is an Excel Formula? Excel Formula is a proper combination of operators (like +...

How To Create Yahoo E-Mail Account

Today, we are discussing the procedure for Creating a New Yahoo Free E-Mail Account. Yahoo.Com is one of the most popular and oldest Free Email Provider world wide. Yahoo provides many free features to its email account holders including Yahoo Email account. How To Create Free Yahoo Email Account in Seconds Sponsored Links We can easily create a new yahoo email account by performing the following steps in the given order. Actually first of all you have to be connected with a fast internet connection. The second step is obviously to open a web browser. you can use any web browser but I prefer Google Chrome or Mozilla Firefox because they provide the best smooth less browsing experience.  So, here are the Main steps to create a new Yahoo Free E-mail Account: Open web browser, For example Google Chrome, Mozilla Firefox or Internet Explorer. Always use latest updated versions of web browsers for your computers security from hackers and malware. I re...

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. ...