Posted On October 15, 2021

The 5 Rules of Thumb of Business Presentation (To Attract Investors)

kimconnect 0 comments
blog.KimConnect.com >> Codes >> The 5 Rules of Thumb of Business Presentation (To Attract Investors)

I’m noting this here so that I can revisit these bullet points in the future…

1. Define the problem or need of the users in the market
2. Present your team or yourself as the expert who can solve this problem
3. Present the solution from the users’ perspective
4. Show a growth chart: users, revenue, traffic
5. Vision: must be realistic and credible

Credit: Justin Kan (one of the heros on my list)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Administering Network Time Protocol Settings on Windows

Quick Script of Domain Joined Laptops and Desktops for Remote Users: # Set Domain Joined…

PowerShell Commands to Discover the Server Network, Netmask, DHCP status, and Gateway

$servername = "SERVER01"get-wmiobject win32_networkadapterconfiguration -computername $servername -ea stop | ? {$_.IPEnabled}# Result:DHCPEnabled      :…

PowerShell: Uninstalling an Application

$appname='Google Chrome' function uninstallApp($appName){ $alternativeMethod=$false try{ $app = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq $appName}…