Example Prompts
The following prompts are designed to help you make the most of Generative AI tools like ChatGPT, Claude, and Gemini. Use them as a guide to efficiently interact with AI for data analysis, content generation, and more.
PDF - Style Guide
Example Prompt:
“You are an advertising professional. Analyze the PDF style guide and provide the recommended colors for an ad campaign. What’s the overall feel I should be going for? It’s Autumn now, can you suggest 3 email blasts based on the style guide. I also want you to create the color palettes for each campaign.”Follow-up Prompt:
“What are the hex values for the recommended colors?”File:
-1-style-guide.pdfPDF - GPT-4 Technical Report
Example Prompt:
“You are a technical expert. Analyze the GPT-4 Technical Report and summarize the key advancements of GPT-4 over GPT-3. Propose how these could be leveraged for customer support automation.”Follow-up Prompt:
“What specific sections discuss the limitations of GPT-4, and how should businesses prepare to address these challenges?”CSV - Sales Data
Example Prompt:
“You are a data analyst. Analyze the sales data from this CSV file and create 3 interesting pie charts that visualize the content.”Follow-up Prompt:
“Provide a brief explanation of each chart and how these insights could inform our next marketing strategy.”File:
-3-sales-data.csvWord Doc - Extract Images from Word Doc
Example Prompt:
“You are a digital assistant. Analyze the Word document and extract all images into individual files. Provide each image in a downloadable format.”Follow-up Prompt:
“Please provide any metadata if available.”File:
-4-images-in-doc.docxWord Doc - Quizmaster Ultralight Glider
Example Prompt:
“You are a quiz master. I am uploading a Word document with 80 questions from the UPAC Ultralight Information manual, 2013 printing Sample Exams and Questions Chapter 16. It also has the answer key. Analyze the document to get all 80 questions with their correct answer. I want you to ask me one question at a time from the list—word for word—and wait for my answer. Then tell me if I am right or wrong and move on. Go through all the questions randomly, make sure you do not ask any questions twice, and you MUST NOT skip any questions. You MUST ask all the questions in random order, and at the end let me know how many I got right or wrong. Finally, give me a mark out of 100%, based on the number of correct answers. If you understand, let’s begin.”Excel Doc - Employee Performance Evaluation
Example Prompt:
“You are an HR manager. Review the Excel file that contains employee performance data, including KPIs and project completion rates. Summarize the top 5 performing employees and create a graph showing employee performance trends over the last quarter. Based on their performance, suggest which employees should be considered for promotion and provide reasoning for your recommendations.”Text file - The Web Origin Concept
Example Prompt:
“You are a web historian. Analyze the text file titled “The Web Origin Concept” and summarize the key milestones in the development of the internet. Provide insights into how these milestones influenced modern web technologies and suggest how this history could be used to guide future web development.”Follow-up Prompt:
“Highlight the three most significant turning points in the history of the internet and explain why they were pivotal.”Code Writer – JavaScript Code Errors
Example Prompt:
“You are a JavaScript expert. I have a JavaScript file that defines a class for a bank account system, including methods to deposit, withdraw, and check the balance. There are a couple of issues I need help with:- The method to check the balance is not working correctly. It throws an error when called.
- When I try to deposit money, it doesn’t accept the input properly, and I’m getting an undefined result.
- Additionally, can you help optimize the withdraw() method to include a fee for withdrawals over a certain amount, say $100? I want to charge a 5% fee for withdrawals above this threshold.”
“Please review the code and provide fixes for these issues.”
File:
// Class for a simple bank account system class BankAccount { constructor(owner, balance = 0) { this.owner = owner; this.balance = balance; } // Method to deposit money into the account deposit(amount) { if (amount > 0) { this.balance += amount; console.log(`${amount} has been deposited to ${this.owner}'s account.`); } else { console.log("Deposit amount must be positive."); } } // Method to withdraw money from the account withdraw(amount) { if (amount > this.balance) { console.log("Insufficient funds for this withdrawal."); } else if (amount > 0) { this.balance -= amount; console.log(`${amount} has been withdrawn from ${this.owner}'s account.`); } else { console.log("Withdrawal amount must be positive."); } } // Error 1: Incorrect method name; should be checkBalance() instead of balanceCheck() balanceCheck() { console.log(`The balance for ${this.owner}'s account is ${this.balance}.`); } } // Creating a new bank account const johnAccount = new BankAccount("John Doe", 100); // Error 2: Incorrect method call; missing the parameter for deposit() johnAccount.deposit(); johnAccount.withdraw(30); johnAccount.balanceCheck(); johnAccount.withdraw(150);
Zip File – Space Tourism Analysis
Example Prompt:
“You are a space tourism consultant. I am uploading a zip file containing three documents related to a space tourism adventure:- A PDF with safety guidelines for space travel.
- A Word document outlining the daily itinerary for space tourists.
- A CSV file with pricing details and ticket sales over the past year.
Here’s what I need from you:
Sales Analysis and Strategy:
Based on the ticket sales and pricing data from the CSV file, analyze the trends and recommend two adjustments to the pricing strategy that could boost sales. Suggest potential discounts, promotional periods, or bundling offers. Then, using the daily itinerary from the Word document, propose one additional premium activity (e.g., spacewalk simulation) that could justify a higher ticket price. Provide an estimate of how much additional revenue this premium activity could generate based on the current pricing structure. Display it in a table.”Video File – Video Prompt for a Presentation Video
Example Prompt:
“You are a video analyst. I am uploading a presentation video. Here’s what I need you to do:- Screenshot:
Extract a screenshot from the middle of the video and display it. - Audio Extraction:
Extract the audio file from the video and provide it as a downloadable format. - Metadata Extraction:
Display the video’s metadata, including the video duration, resolution, frame rate, file size, and codec information.”
File:
-10-video.mp4- Screenshot: