Download as pdf or txt
Download as pdf or txt
You are on page 1of 29

1

2
INDEX

PAGE
EX NO DATE MARKS SIGNATURE
NAME OF THE EXPERIMENT NO

1. Subscribe to a weekly/quarterly newsletter and


analyze how its content and structure aid with
the branding of the company and how it aids
its potential customer segments.

2. Perform keyword search for a skincare hospital


website based on search volume and
competition using Google keyword planner
tool.

3. Demonstrate how to use the Google


webmasters Indexing API

4. Discuss an interesting case study regarding


how an insurance company manages leads.

5. Discuss negative and positive impacts and


ethical implications of using social media for
political advertising.

6. Discuss how Predictive analytics is impacting


marketing automation

3
4
EXP NO. 1 - ANALYSIS OF NEWSLETTER SUBSCRIPTION

DATE:

AIM: To Subscribe to a weekly/quarterly newsletter and analyze how its content and
structure aid with the branding of the company and how it aids its potential customer
segments.

SOFTWARE / TOOLS REQUIRED:

• Newsletter login / signup

PROCEDURE:

1. Subscribe to a newsletter ,

Example

a)Times of India (https://timesofindia.indiatimes.com/newsletterhome.cms)

b) Puthiyathalaimurai https://www.puthiyathalaimurai.com/

5
CONTENT & STRUCTURE OF THE NEWSLETTER:

1. Facility to earn TimesPoints :

a) By reading an article, user can get 10 Timespoints

b) By watching a video, user can get 20 Timespoints

c) By Listening to a podcast, user can get 5 Timespoints

d) By writing comments, user can get 15 Times points

6
2. WEB SERIES REVIEW PAGE:

The web series review page allows the users to read the reviews of the latest movies and web
series,

POTENTIAL CUSTOMER SEGMENTS:

In this page, the newsletter company has the opportunity to get advertisements from movie
production companies, web series companies like Hotstar, Netflix, Bookmyshow.com etc

3. LIFE & STYLE REVIEW PAGE:

The Life & style page allows the customers to know about the latest lifestyle fashion and
beauty trends. This landing page has the potential to get advertisements from the 1. Lifestyle
companies 2. Fashion and Beauty product companies 3. Health & Food chain companies etc.

RESULT: Thus the analysis of content and structure of a Newsletter subscription in aiding
potential customer segments is carried out successfully.

7
8
EXP NO 2 - KEYWORD SEARCH USING KEYWORD PLANNER TOOL

DATE:

AIM: To Perform keyword search for a skincare hospital website based on search volume
and competition using Google keyword planner tool.

SOFTWARE / TOOLS REQUIRED:

• GOOGLE KEYWORD PLANNER

PROCEDURE:

1. GOTO https://ads.google.com/

2. Then select Campaigns and Tools -> select keyword Planner

Or goto

https://ads.google.com/intl/en_IN/home/tools/keyword-planner/

3. Select Discover new keywords

9
4. Type the keyword: skin care hospital and press Get Results

OUTPUT:

Keyword Stats
2024-03-27 at
12_29_16

March 1, 2023 -
February 29,
2024

Top of Top of
Avg. Three Competition page bid page bid
monthly month YoY (indexed (low (high
Keyword Currency searches change change Competition value) range) range)

skin care
hospital INR 5000 0% 0% Low 10 18.68 63.55

skin clinic near


me INR 50000 0% 0% Low 13 23.11 86.24

skin clinic INR 50000 0% 900% Low 8 17.48 68.03

skin hospital
near me INR 50000 0% 0% Low 10 17.08 52.09

skin care clinic INR 50000 0% 0% Low 7 20.07 63.84

skin care INR 50000 0% 900% Low 14 19.93 62.19


hospital near
10
me

cosmetic skin
clinic INR 500 0% 0% Low 8 13.55 57.73

skin specialist
clinic INR 500 0% 900% Low 11 17.68 62.54

best skin clinic


near me INR 5000 0% 0% Low 20 20.68 81.67

best skin care


clinic near me INR 500 0% 0% Low 28 18.58 68.09

hair and skin


clinic near me INR 5000 0% 0% Low 24 33.11 104.46

skin treatment
clinic INR 500 0% 0% Low 18 22.52 57.16

vcare skin
clinic near me INR 500 0% 0% Low 27 17.57 77.87

dermatology
hospital near
me INR 5000 0% 0% Low 15 14.49 53.26

best skin care


hospital near
me INR 500 0% 0% Low 30 19.29 63.83

near by skin
clinic INR 5000 0% 0% Low 20 17.40 63.17

near by skin
care hospital INR 500 0% 0% Low 30 18.09 63.69

near me skin
clinic INR 500 0% 0% Low 19 18.29 86.63

near me skin
doctor clinic INR 500 0% 0% Low 23 13.92 42.55

11
12
VCare Hair & Skin Clinic- Erode

Be Well Hospitals Erode

RESULT: Thus the keyword planner tool is used to perform keyword search for a skin care hospital
website.

13
14
Exp No : 3 – USAGE OF WEBMASTERS INDEXING API

DATE:

AIM:

To Demonstrate the use of Google WebMasters Indexing API to notify the update in the web page
of a website.

SOFTWARE/ TOOLS REQUIRED:

• Google Webmaster Indexing API

PROCEDURE:

1. The Indexing API allows any site owner to directly notify Google when pages are added or
removed. This allows Google to schedule pages for a fresh crawl, which can lead to higher
quality user traffic.

Prerequisites for the Indexing API

Before you can start using the Indexing API, there are a few things you need to do:

• Create a project for your client

• Create a service account

• Add your service account as a site owner

• Get an access token

STEPS TO GET GOOGLE API TOKEN:

When submitting a request to the Indexing API, your request must:

1. Use https://www.googleapis.com/auth/indexing as the scope.

2. Use one of the endpoints described in Using the API.

3. Include the service account access token.

4. Define the body of the request as described in Using the API.

EXAMPLE JAVA CODE TO GET ACCESS TOKEN :

String scopes = "https://www.googleapis.com/auth/indexing";


String endPoint = "https://indexing.googleapis.com/v3/urlNotifications:publish";

JsonFactory jsonFactory = new JacksonFactory();

// service_account_file.json is the private key that you created for your service account.
InputStream in = IOUtils.toInputStream("service_account_file.json");

GoogleCredential credentials =
GoogleCredential.fromStream(in, this.httpTransport,
jsonFactory).createScoped(Collections.singleton(scopes));

GenericUrl genericUrl = new GenericUrl(endPoint);


15
HttpRequestFactory requestFactory = this.httpTransport.createRequestFactory();

// Define content here. The structure of the content is described in the next step.
String content = "{"
+ "\"url\": \"http://example.com/jobs/42\","
+ "\"type\": \"URL_UPDATED\","
+ "}";

HttpRequest request =
requestFactory.buildPostRequest(genericUrl, ByteArrayContent.fromString("application/json",
content));

credentials.initialize(request);
HttpResponse response = request.execute();
int statusCode = response.getStatusCode();

WEBMASTER API FUNCTIONS:

1. Update a URL: Notify Google of a new URL to crawl or that content at a previously-
submitted URL has been updated.

INPUT:

Send the following HTTP POST request to https://indexing.googleapis.com/v3/urlNotifications:publish endpoint


{
"url": "https://careers.google.com/jobs/google/technical-writer",
"type": "URL_UPDATED"
}

2. Remove a URL: After you delete a page from your servers, notify Google so that we can
remove the page from our index and so that we don't attempt to crawl the URL again.

INPUT:

Send the following HTTP POST request to


https://indexing.googleapis.com/v3/urlNotifications:publish endpoint

"url": "https://careers.google.com/jobs/google/technical-writer",

"type": "URL_DELETED"

16
OUTPUT:

The Indexing API responds with an HTTP 200 message, with a payload that contains details about the
notification.

The following example shows the body of a response that contains information about an update and
delete notification:

{
url: "http://foo.com",
latest_update: {
type: "URL_UPDATED",
notify_time: "2017-07-31T19:30:54.524457662Z"
},

latest_remove: {
type: "URL_DELETED",
notify_time: "2017-08-31T19:30:54.524457662Z"
}
}

RESULT:

Thus the usage of Webmaster indexing API to notify the update of the webpage is completed
successfully.

17
18
EXP NO. 4 - CASE STUDY OF LEAD MANAGEMENT BY INSURANCE COMPANY

DATE:

AIM:

To make a case study on the management of leads by an insurance company.

LEAD MANAGEMENT:

Lead generation is the process of generating consumer interest for a product or service with the goal
of turning that interest into a sale.

Managing leads effectively is crucial for insurance companies, as it helps convert potential customers
into actual clients. Here’s a detailed look at how insurance companies typically manage leads:

1. Lead Capture

Insurance companies capture leads through various channels such as

o websites
o social media
o referrals
o events
• They use forms and landing pages optimized for conversion, where potential customers can
submit their personal information.

2. Lead Segmentation

Once leads are captured, they are segmented based on various criteria like

• demographics
• the type of insurance they are interested in (e.g., auto, life, health),
• Their stage in the buying process.

19
3. Lead Scoring

Lead scoring is a methodology used to rank prospects against a scale. Scoring can be based on
information such as the

• lead's profession
• income level
• age
• behaviors (like website interaction).

Higher scores indicate leads with a higher likelihood to convert, allowing sales teams to prioritize
their efforts.

4. Lead Nurturing

Not all leads are ready to make a purchase immediately. Lead nurturing involves engaging with
potential clients through various touchpoints to keep them interested and informed.

This could be through

• email marketing
• social media engagement
• educational webinars
• or personalized content

5. CRM Software

Insurance companies use Customer Relationship Management (CRM) software to store and manage
lead and customer information. CRM systems help track all interactions with a lead, schedule follow-
ups, and maintain a timeline of communication history

By systematically managing leads through these steps, insurance companies can maximize their
conversion rates, ensuring a steady growth in their customer base and ultimately, their revenue.

20
CASE STUDY:

The Opportunity

Our client wanted to offer a value-added option that would promote more website leads and
conversions.

The Plan

We worked with our client to develop a fully automated online financial report card. This offered
customers the opportunity to subscribe to an email list when visiting our client’s websites.

After the application was created, we built a custom WordPress web design to highlight and market it
to our client’s target audience.

To promote the application, we also designed a social media strategy and an automated email
marketing campaign. These efforts were aimed at triggering emails based on various actions to
nurture them through the sales funnel.

The Results

Our client was so impressed with our work, and as a result, they purchased the entire package we
built.

RESULT:

Thus the case of Lead management by an insurance company is studied successfully.

21
22
EXP No. 5 - IMPAC TS OF USING SOCIAL MEDIA FOR POLITICAL ADVERTISING

DATE:

AIM:

To Discuss negative and positive impacts and ethical implications of using social media for
political advertising.

POSITIVE IMPACTS:

1. Reach and Engagement: Social media platforms allow political advertisers to reach a large audience
and engage with voters directly, potentially increasing voter turnout and engagement in the political
process.

2. Targeted Messaging: Social media platforms offer advanced targeting options, allowing advertisers
to tailor their messages to specific demographics, interests, and locations, which can help them reach
their target audience more effectively.

3.Cost-Effective: Compared to traditional media advertising, social media advertising can be more
cost-effective, especially for smaller campaigns or organizations with limited budgets.

4.Real-Time Feedback: Social media allows advertisers to receive real-time feedback on their ads,
allowing them to adjust their messaging and strategy quickly based on audience reactions.

5. Transparency and Accessibility: Social media platforms provide a level playing field for political
advertisers, allowing smaller campaigns or less well-funded organizations to compete with larger,
more established entities.

NEGATIVE & ETHICAL IMPLICATIONS:

1. Misinformation and Manipulation: There are concerns that political advertisers may use social
media to spread misinformation or manipulate public opinion, raising questions about the ethical
implications of such tactics.

23
2. Privacy Concerns: Targeted advertising on social media raises privacy concerns, as advertisers may
collect and use personal data without individuals' consent.

3.Algorithmic Bias: Social media algorithms may inadvertently amplify certain viewpoints or exclude
others, leading to concerns about fairness and bias in political advertising.

4. Increased Polarization: Targeted political advertising can lead to greater polarization. Advertisers
can send highly tailored messages that reinforce existing beliefs and biases, potentially deepening
divisions within society.

5. Impact on Democracy: Some critics argue that the use of social media for political advertising can
have a negative impact on democracy by polarizing public discourse and undermining trust in
institutions.

6. Addiction and Mental Health: The intense nature of political ads on social media can contribute to
stress, anxiety, and division among users. The environment can be particularly aggressive during
election cycles, potentially deterring meaningful engagement.

Overall, while social media offers significant benefits for political advertising, it also raises important
ethical considerations that need to be addressed to ensure a fair and transparent political process.

24
RESULT:

Thus the positive , Negative impacts and ethical implications of using social media platforms for
political advertising is studied successfully.

25
26
EXP NO. 6 -IMPACT
IMPACT OF PREDICTIVE ANALYTICS IN MARKETING AUTOMATION

DATE:

AIM:

To discuss the impact of predictive analytics in Marketing Automation.

PREDICTIVE ANALYTICS:

Predictive analytics is the use of data to predict future trends and events. It uses historical data to
forecast potential scenarios that can help drive strategic decisions.

MARKETING AUTOMATION:

Marketing automation is software that handles routine marketing tasks without the need for human
action.

Predictive analytics is significantly impacting marketing automation by enhancing the effectiveness


and efficiency of marketing campaigns across various channels. It does so by employing data,
statistical algorithms, and machine learning
l techniques.

1. Enhanced Targeting and Personalization

Predictive analytics allows marketers to understand their customers more deeply by analyzing past
behavior and predicting future actions. This knowledge enables

• highly personalized marketing efforts


• tailoring messages
• offers
• ndividual needs and preferences.
content to individual prefer

27
2. Improved Customer Segmentation

Rather than relying on broad demographic information, predictive analytics helps to segment
customers more accurately according to their behavior, purchasing patterns, and engagement levels.

3. Lead Scoring

Marketing automation systems can use predictive analytics to assign scores to leads based on their
likelihood to convert into customers. Such scoring helps prioritize leads, allowing sales teams to focus
their efforts where they are most likely to succeed.

4. Churn Prediction

Predictive analytics can forecast customer churn (Loss of customers) by identifying patterns in data
from customers who have previously churned.

5. Optimizing Marketing Channels and Budget Allocation

Predictive analytics helps determine which marketing channels are most effective for reaching
specific customer segments and achieving various business outcomes.

6. Content Optimization

By analyzing what types of content lead to the best engagement rates, predictive analytics can help
marketers create or modify content.

7. Product Recommendations

E-commerce and retail marketers use predictive analytics to power recommendation engines.

8. Timing Optimization

Predictive analytics can also forecast the best times to contact customers, increasing the likelihood
that marketing messages will be opened and read.

9. Forecasting and Scenario Planning

Marketing teams can use predictive analytics to forecast future trends and sales patterns, helping them
to plan campaigns and stock levels accordingly.

10. Dynamic Pricing

In some sectors, predictive analytics allows for dynamic pricing, which adjusts the price of products
based on demand, availability, customer profiles, and past purchasing behaviors. This can be
particularly powerful in travel, hospitality, and online retail.

28
RESULT:

Thus the use of predictive analytics in the marketing automation is discussed in detail.

29

You might also like