Research & Analysis Ai Tools Prompts Library

chatpdf
chatpdf
ask your pdf

PROMPTS IN ENGLISH

Marketing Research

				
					1. Case Study

➢ Formula
➢ [Context] + [Subject/Organization/Scenario] + [Key Objectives or
Issues] + [Intent/Goal] + [Response Format]

➢ Template
"I want you to create a case study on [Subject/Organization/Scenario].
The focus should be on [Key Objectives or Issues, e.g., challenges
faced, strategies used, or outcomes achieved]. The goal is to
[Intent/Goal, e.g., showcase best practices, highlight lessons learned,
or evaluate success]. Please present the case study in [Response
Format, e.g., structured sections such as Introduction, Problem,
Solution, and Results]."

➢ Example
"I want you to create a case study on the impact of digital marketing
strategies used by Amazon. The focus should be on the methods
employed to analyze customer behavior, the effectiveness of personalized
recommendations, and the outcomes in terms of customer retention and
sales growth. The goal is to showcase best practices in marketing
research and highlight lessons learned from their strategies. Please
present the case study in structured sections: Introduction, Problem,
Solution, Results, and Future Recommendations."
				
			
project pedia

Historical Analysis

				
					2. Historical Analysis

➢ Formula
[Context] + [Historical Event/Period/Subject] + [Key Themes or
Issues] + [Intent/Goal] + [Response Format]

➢ Template
"I want you to conduct a historical analysis of [Historical
Event/Period/Subject]. The focus should be on [Key Themes or Issues,
e.g., causes, impact, and key figures]. The goal is to [Intent/Goal, e.g.,
understand its significance, draw parallels with the present, or highlight
lessons learned]. Please present the analysis in [Response Format,
e.g., structured sections such as Background, Key Events, Analysis,
and Conclusion]."

➢ Example
"I want you to conduct a historical analysis of the Industrial Revolution
in England. The focus should be on the causes that led to
industrialization, its impact on society and the economy, and the key
figures who influenced this transformation. The goal is to understand its
significance in shaping the modern industrial era and highlight lessons
relevant to current technological advancements. Please present the
analysis in structured sections: Background, Key Events, Impact, and
Lessons Learned."
				
			

Literary Analysis

				
					3. Literary Analysis

➢ Formula
[Context] + [Literary Work/Author/Genre] + [Key Themes or Elements]
+ [Intent/Goal] + [Response Format]

➢ Template
"I want you to perform a literary analysis of [Literary
Work/Author/Genre]. The focus should be on [Key Themes or Elements,
e.g., symbolism, character development, or narrative style]. The goal
is to [Intent/Goal, e.g., uncover deeper meanings, understand the
author's intent, or evaluate its cultural significance]. Please present the
analysis in [Response Format, e.g., structured sections such as
Introduction, Analysis, and Conclusion]."

➢ Example
"I want you to perform a literary analysis of George Orwell's novel 1984.
The focus should be on the themes of surveillance, power, and individual
freedom, as well as the use of symbolism to convey these ideas. The
goal is to uncover the deeper meanings behind Orwell's dystopian vision
and evaluate its relevance in contemporary society. Please present the
analysis in structured sections: Introduction, Themes, Symbolism, and
Conclusion."
				
			

Scientific Research

				
					4. Scientific Research

➢ Formula
[Context] + [Programming Language] + [Error/Issue] + [Intent/Goal] +
[Response Format]

➢ Template
"I want you to troubleshoot an error in my [Programming Language]
code. The issue is [Error/Issue, e.g., syntax error, logic error, runtime
error]. Please identify the problem, provide a solution, and explain the
error in a simple way. Present the explanation in [Response Format,
e.g., step-by-step breakdown]."

➢ Example
"I want you to troubleshoot an error in my Python code:
num=int(input("Enter a number: "))
if num =10:
print("Number is ten")
The issue is a syntax error in the if statement. Please identify the
problem, provide a solution, and explain the error in a simple way with
a step-by-step breakdown."
				
			

Economic Analysis

				
					5. Economic Analysis

➢ Formula
[Context] + [Programming Language] + [Optimization Focus] +
[Intent/Goal] + [Response Format]

➢ Template
"I want you to optimize my [Programming Language] code to make it
more efficient and readable. Please focus on [Optimization Focus, e.g.,
reducing code of lines and redundancy, improving readability,
enhancing performance]. The goal is to [Intent/Goal, e.g., make the
code shorter, easier to understand, well-structured]. Provide the
optimized code with [Response Format, e.g., proper comments
explaining key parts]."

➢ Example
"I want you to optimize my Python code to make it more readable and
efficient:
numbers = [1, 2, 3, 4, 5]
sum=0
for num innumbers:
sum=sum+num
print("Total:", sum)
Please reduce redundancy, improve readability, and use comments to
explain the changes."
				
			

Social Media Analysis

				
					6. Social Media Analysis

➢ Formula
[Context] + [Programming Language] + [Analysis Focus] +
[Intent/Goal] + [Response Format]

➢ Template
"I want you to analyze my [Programming Language] code for [Analysis
Focus, e.g., performance improvements, security vulnerabilities]. The
goal is to [Intent/Goal, e.g., optimize execution speed, identify security
risks, suggest best practices]. Please provide a detailed breakdown with
[Response Format, e.g., suggestions, explanations, and improved code
snippets if necessary]."

➢ Example
"I want you to analyze my Python code for potential security
vulnerabilities and performance issues:
import os
def read_file(filename):
file = open(filename, "r")
data = file.read()
file.close()
return data
print(read_file("user_data.txt"))
Please identify security risks (e.g., file handling vulnerabilities) and
suggest performance improvements with explanations and best practices."
				
			

Customer Satisfaction Analysis

				
					7. Customer Satisfaction Analysis

➢ Formula
[Context] + [Programming Language] + [Code Complexity] +
[Intent/Goal] + [Response Format]

➢ Template
"I want you to refactor my [Programming Language] code to improve
reusability by breaking it down into [Code Complexity, e.g., functions,
components, modules]. The goal is to [Intent/Goal, e.g., make the code
more modular, scalable, and maintainable]. Please provide the
refactored code with [Response Format, e.g., clear comments and
explanations]."

➢ Example
"I want you to refactor my Python code to improve reusability by
converting it into modular functions:
print("Enter two numbers:")
a =int(input())
b =int(input())
print("Sum:", a + b)
print("Difference:", a- b)
print("Product:", a * b)
print("Quotient:", a / b)
Please restructure this into reusable functions for better scalability and
provide comments explaining the changes."
				
			

Educational Research

				
					8. Customer Satisfaction Analysis

➢ Formula
[Context] + [Programming Language] + [Functionality to Test] +
[Intent/Goal] + [Response Format]

➢ Template
"I want you to create unit test cases for my [Programming Language]
code. The focus should be on testing [Functionality to Test, e.g., specific
functions, input validation, error handling]. The goal is to [Intent/Goal,
e.g., ensure reliability, verify correctness, catch edge cases]. Please
provide the test cases in [Response Format, e.g., structured format
using a testing framework like unit test, pytest, or JUnit]."

➢ Example
"I want you to create unit test cases for my Python function using the
unit test framework:
def add(a, b):
return a + b
The focus should be on verifying correct outputs and handling edge
cases. Please provide test cases in a structured format using Python’s
unit test framework."
				
			

Market Analysis

				
					9. Market Analysis

➢ Formula
[Context] + [Programming Language] + [Documentation Scope] +
[Intent/Goal] + [Response Format]

➢ Template
"I want you to generate proper comments and documentation for my
[Programming Language] code. The focus should be on [Documentation
Scope, e.g., function explanations, input-output details, usage
instructions]. The goal is to [Intent/Goal, e.g., improve readability, make
maintenance easier, follow best practices]. Please provide the
documentation in [Response Format, e.g., docstrings, inline comments,
or a separate README file]."

➢ Example
"I want you to add proper comments and documentation to my Python
function for better readability and maintenance:
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n- 1)
The documentation should include function purpose, input-output
details, and inline comments explaining key parts of the code."
				
			

Website Traffic Analysis

				
					10. Website Traffic Analysis

➢ Formula
[Context] + [Source Language] + [Target Language] + [Code
Complexity] + [Intent/Goal] + [Response Format]

➢ Template
"I want you to convert my code from [Source Language] to [Target
Language]. The code involves [Code Complexity, e.g., basic functions,
object-oriented concepts, web components]. The goal is to [Intent/Goal,
e.g., maintain functionality, improve efficiency, follow best practices].
Please provide the converted code in [Response Format, e.g., clean
and well-commented format]."

➢ Example
"I want you to convert my Python function to JavaScript while
maintaining functionality and readability:
def greet(name):
return f"Hello, {name}!"
Please provide the equivalent JavaScript code with comments
explaining the conversion."
				
			

PROMPTS IN HINGLISH

Marketing Research

				
					Marketing Research 

Case Study Generation ka Formula 
[Context] + [Subject/Organization/Scenario] +[Key Objectives ya Issues] + [Intent/Goal] + [Response Format]

Prompt Template 
"Mujhe chahiye ki aap [Subject/Organization/Scenario] par ekcasestudy banayein. Iska focus hona chahiye [Key Objectives ya Issues, jaise ki challengesfaced, strategies used, ya outcomes achieved]. Goal yeh hai ki [Intent/Goal, jaiseki best practices dikhana, lessons learned ko highlight karna, ya success ka evaluationkarna]. Kripya case study ko [Response Format, jaise ki structured sections jaiseIntroduction, Problem, Solution, aur Results] me present karein."

Prompt Example:
"Mujhe chahiye ki aap Amazon dwara istemal kiye gaye digital
marketing strategies par ek case study banayein. Iska focus hona chahiye unmethods par jo customer behavior ko analyze karne ke liye istemal kiye gaye, personalized recommendations ki effectiveness, aur customer retention aur sales growth ke terms me outcomes. Goal yeh hai ki marketing research me best practicesdikhana aur unki strategies se seekhe gaye lessons ko highlight karna. Kripya casestudy ko structured sections me present karein: Introduction, Problem, Solution, Results, aur Future Recommendations."
				
			
project pedia

Historical Analysis

				
					Historical Analysis 

[Context] + [Historical Event/Period/Subject] + [Key Themes ya Issues] +[Intent/Goal]+ [Response Format]

Historical Analysis ke liye Prompt Template 
"Mujhe chahiye ki aap [Historical Event/Period/Subject] ka ek historical analysis karein. Iska focus hona chahiye[KeyThemes ya Issues, jaise ki causes, impact, aur key figures]. Goal yeh hai ki [Intent/Goal, jaise ki iski significance samajhna, present ke saath parallels draw karna, ya lessons
learned ko highlight karna]. Kripya analysis ko [Response Format, jaise ki structuredsections jaise Background, Key Events, Analysis, aur Conclusion] me present karein."

Prompt Example:
"Mujhe chahiye ki aap England me Industrial Revolution ka ekhistorical analysis karein. Iska focus hona chahiye un causes par jo industrializationki
taraf le gaye, iske samaj aur economy par impact, aur un key figures par jinhoneistransformation ko prabhavit kiya. Goal yeh hai ki iski significance ko samjha jasakejomodern industrial era ko shape karne me madadgar rahi, aur current technological advancements se relevant lessons ko highlight kiya ja sake. Kripya analysis kostructured sections me present karein: Background, Key Events, Impact, aur Lessons
				
			

Literary Analysis

				
					Literary Analysis 

[Context] + [Literary Work/Author/Genre] + [Key Themes or Elements] + [Intent/Goal]+ [Response Format]

Literary Analysis ke liye Prompt Template 
"Mujhe chahiye ki aap [Literary Work/Author/Genre] ka ek literary analysis karein. Iska focus hona chahiye [Key Themes ya Elements, jaise ki symbolism, character development, ya narrative style]. Goal yeh hai ki [Intent/Goal, jaise ki deeper meanings ko uncover karna, author ki intent samajhna, ya iski cultural significance ka evaluation karna]. Kripya analysis ko[Response Format, jaise ki structured sections jaise Introduction, Analysis, aur
Conclusion] me present karein." 

Prompt Example:
"Mujhe chahiye ki aap George Orwell ki novel 1984kaekliterary analysis karein. Iska focus hona chahiye surveillance, power, aur individual freedom ke themes par, saath hi in ideas ko convey karne ke liye symbolismkaistemal. Goal yeh hai ki Orwell ki dystopian vision ke peeche ke deeper meaningskouncover kiya ja sake aur iski contemporary society me relevance ka evaluationkiyajasake. Kripya analysis ko structured sections me present karein: Introduction, Themes, Symbolism, aur Conclusion."
				
			

Scientific Research

				
					Scientific Research 

"I want you to create a scientific research analysis on the impact of renewable energysourceson reducing global carbon emissions. The focus should be on recent advancements insolar and wind energy technologies, their adoption rates, and measurable environmental benefits. The goal is to highlight key findings and suggest areas for further innovation. Please present
the analysis in structured sections: Introduction, Methods, Key Findings, Discussion, andConclusion."
				
			

Economic Analysis

				
					Economic Analysis

Mujhe chahiye ki aap ek economic analysis karein jo global impact of inflation par developing economies par pichle dasak me focus kare. Iska focus hona chahiye inflationkecauses, iske GDP growth, employment, aur income inequality par effects, aur un policymeasures par jo iske impact ko mitigate karne ke liye liye gaye. Goal yeh hai ki developingnations ke saamne aane wale challenges par insights provide kiya ja sake aur potential solutions suggest kiye ja sake. Kripya analysis ko structured sections me present karein: Introduction, Causes, Impact, Policy Measures, aur Recommendations.
				
			

Social Media Analysis

				
					6. Social Media Analysis 

Mujhe chahiye ki aap Instagram ke role ka ek social media analysis karein jo fashion industryme consumer behavior ko shape kar raha hai. Iska focus hona chahiye influencers ka prabhav, targeted advertisements, aur user-generated content ka purchasing decisions par asar. Goal yeh hai ki trends, patterns, aur inke marketing strategies par implications ko highlight kiyajasake. Kripya analysis ko structured sections me present karein: Introduction, Key Trends, Impact on Consumer Behavior, aur Recommendations.
				
			

Customer Satisfaction Analysis

				
					8. Customer Satisfaction Analysis 

Mujhe chahiye ki aap Amazon ke Prime membership program ka ek customer satisfactionanalysis karein. Iska focus hona chahiye factors par jaise delivery speed, customer support, pricing, aur exclusive benefits. Goal yeh hai ki customer feedback ka evaluation kiya ja sake, improvement ke areas ko identify kiya ja sake, aur successful strategies ko highlight kiyaja
sake. Kripya analysis ko structured sections me present karein: Introduction, Key Factors Affecting Satisfaction, Insights from Feedback, aur Recommendations.
				
			

Educational Research

				
					8.Educational Research

Mujhe chahiye ki aap COVID-19 pandemic ke dauran online learning platforms ke
effectiveness par ek educational research analysis karein jo student performance ko improvekarne me madadgar hai. Iska focus hona chahiye accessibility, engagement levels, aur learning outcomes par, jo traditional classroom settings ke comparison me hai. Goal yehhai ki key benefits, challenges, aur online education ko enhance karne ke liye future
recommendations ko identify kiya ja sake. Kripya analysis ko structured sections me present karein: Introduction, Methodology, Key Findings, Challenges, aur Recommendations.
				
			

Market Analysis

				
					9.Market Analysis

Mujhe chahiye ki aap 2025 me electric vehicle (EV) industry ka ek market analysiskarein. Iska focus hona chahiye market size, key players, consumer adoptiontrends, aur emerging technologies par. Goal yeh hai ki growth opportunities, competitivedynamics, aur EV market ke future challenges par insights provide kiya ja sake. Kripyaanalysis ko structured sections me present karein: Introduction, Market Overview, KeyTrends.
				
			

Website Traffic Analysis

				
					10.Website Traffic Analysis 

Mujhe chahiye ki aap ek e-commerce platform ke liye holiday shopping season ke dauran websitetraffic ka analysis karein. Iska focus hona chahiye traffic sources (organic, paid, direct), peak traffictimes, aur conversion rates ko identify karne par. Goal yeh hai ki user behavior ko samjha ja sake, marketing strategies ko optimize kiya ja sake, aur sales performance ko improve kiya ja sake. Kripyaanalysis ko structured sections me present karein: Introduction, Traffic Sources, User Behavior Patterns, Conversion Analysis, aur Recommendations.
				
			

RESEARCH ANALYSIS AI TOOLS

Elicit Research Tool

Elicit

Elicit uses language models to extract data from and summarize research papers. As a new technology, language models sometimes make up inaccurate answers.

Co Storm Projectpedia

Co Storm

Explore AI. AI Powered Search for Youtube Videos. Search for answers directly inside thousands of YouTube videos, free-of-cost, easy-to-navigate and fast.

Andi

The Andi search AI tool is a powerful search engine specifically designed to help users find information more quickly and efficiently.

Consensus

Consensus AI tools are software programs that use artificial intelligence to facilitate decision-making and problem-solving in groups.

KOMO

komo-AI is a cutting-edge company specializing in AI research and development of AI tools.

Research Rabbit

A Research Rabbit AI Tool icon is a software program that assists researchers in conducting online searches. The most powerful discovery app ever built for researchers.

Heuristica.

Heuristica is an AI-powered concept mapping tool that simplifies visual learning and research through mind map-like interfaces.

chat pdf

ChatPDF

Upload or drag and drop the PDF document that you wish to summarize to the PDF AI tool. Your PDF must contain text in order for the tool to chat with your document.

DO YOU WANT TO LEARN HOW TO USE TEXT TO RESEARCH ANALYSIS AI TOOLS ?

USING OUR TUTORIALS LIBRARY. YOU CAN EASILY RESEARCH AND ANALYZE AS YOU DESIRE

Conduct in-depth research and analysis with AI-powered research tools that help you gather, analyze, and interpret data effectively. Our tutorials will show you how to leverage the latest research methodologies and techniques to uncover valuable insights.

Scroll to Top