Javascript, HTML, CSS Code
Copy
<!DOCTYPE html >
<html >
<head >
<script type ="text/javascript" > window .addEventListener ('error' , function (event ) { var message = JSON .parse (JSON .stringify (event.message )); var source = event.filename ; var lineno = event.lineno ; var colno = event.colno ; var error = event.error ; window .parent .postMessage ({ type : 'iframeError' , details : { message : message, source : source, lineno : lineno, colno : colno, error : error ? error.stack : '' } }, '*' ); }); window .addEventListener ('unhandledrejection' , function (event ) { window .parent .postMessage ({ type : 'iframePromiseRejection' , details : { reason : event.reason } }, '*' ); }); </script >
<meta charset ="utf-8" >
<meta http-equiv ="X-UA-Compatible" content ="IE=edge" >
<meta name ="viewport" content ="width=device-width,initial-scale=1" >
<title > DeFi VC Practice Questions</title >
<meta name ="description" content ="Practice answering DeFi VC questions with this fun and interactive app." >
<meta name ="keywords" content ="DeFi, VC, practice, questions, startup, founder, web3, crypto" >
<link href ="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel ="stylesheet" >
<script src ="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" > </script >
<link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel ="stylesheet"
integrity ="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin ="anonymous" >
<link href ="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel ="stylesheet" >
<style >
body {
font-family : "Roboto" , sans-serif;
background : linear-gradient (45deg , #f06 , #f79 );
}
#main-container {
text-align : center;
padding-top : 50px ;
}
button {
background-color : #5a5aff ;
color : white;
font-size : 20px ;
padding : 10px 20px ;
border : none;
border-radius : 5px ;
cursor : pointer;
margin : 10px ;
box-shadow : 0 5px 10px rgba (0 , 0 , 0 , 0.2 );
}
button :active {
transform : translateY (2px );
}
#timer {
font-size : 40px ;
}
#question-number {
font-size : 24px ;
}
#message {
font-size : 24px ;
color : #ff0000 ;
display : none;
}
</style >
<script >
const questions = [
"What problem does your DeFi protocol solve?" ,
"What is the total value locked (TVL) potential for your DeFi protocol?" ,
"What is your DeFi protocol's tokenomics?" ,
"How does your DeFi protocol ensure security and prevent exploits?" ,
"What is the governance model for your DeFi protocol?" ,
"How does your DeFi protocol plan to attract liquidity providers?" ,
"How does your DeFi protocol handle impermanent loss?" ,
"What is your DeFi protocol's competitive advantage over existing solutions?" ,
"What is your DeFi protocol's risk management strategy?" ,
"How does your DeFi protocol handle oracle attacks?" ,
"What is your DeFi protocol's target market?" ,
"How does your DeFi protocol plan to achieve decentralization?" ,
"What is your DeFi protocol's go-to-market strategy?" ,
"How does your DeFi protocol plan to scale with increasing adoption?" ,
"What is your DeFi protocol's interoperability strategy?" ,
"What partnerships does your DeFi protocol have or plan to establish?" ,
"How does your DeFi protocol plan to maintain regulatory compliance?" ,
"What is your DeFi protocol's fee structure?" ,
"What is the roadmap for your DeFi protocol?" ,
"Who are the team members behind your DeFi protocol?" ,
"How much funding do you need to launch your DeFi protocol?" ,
"What will you do with the funding?" ,
"What is your DeFi protocol's exit strategy?" ,
"How does your DeFi protocol handle privacy and data protection?" ,
"What is your contingency plan in case of a smart contract exploit or hack?"
];
let timer;
let timeLeft = 120 ;
function getRandomQuestion ( ) {
const questionIndex = Math .floor (Math .random () * questions.length );
return { index : questionIndex, text : questions[questionIndex] };
}
function updateTimerDisplay ( ) {
const minutes = Math .floor (timeLeft / 60 );
const seconds = timeLeft % 60 ;
$("#timer" ).text (`${minutes} :${seconds < 10 ? "0" + seconds : seconds} ` );
}
function resetTimer ( ) {
clearInterval (timer);
timeLeft = 120 ;
updateTimerDisplay ();
$("#message" ).hide ();
}
function startTimer ( ) {
resetTimer ();
timer = setInterval (() => {
timeLeft--;
if (timeLeft <= 0 ) {
clearInterval (timer);
$("#message" ).show ();
} else {
updateTimerDisplay ();
}
}, 1000 );
}
function speakQuestion (questionText ) {
const utterance = new SpeechSynthesisUtterance (questionText);
window .speechSynthesis .speak (utterance);
}
$(document ).ready (() => {
$("#random-question-btn" ).click (() => {
const question = getRandomQuestion ();
$("#question-number" ).text (`Question #${question.index + 1 } ` );
startTimer ();
});
$("#speak-question-btn" ).click (() => {
const questionIndex = parseInt ($("#question-number" ).text ().split ("#" )[1 ]) - 1 ;
if (!isNaN (questionIndex)) {
speakQuestion (questions[questionIndex]);
}
});
});
</script >
<link rel ="canonical" href ="https://calculator.tools/prompt/88/" >
<meta charset ="utf-8" >
</head >
<body >
<div id ="main-container" class ="container" >
<h1 > DeFi VC Practice Questions</h1 >
<p > Click the button below to get a random question:</p >
<button id ="random-question-btn" > Random Question</button >
<p id ="question-number" > </p >
<p > When you're ready to hear the question, click the button below:</p >
<button id ="speak-question-btn" > Speak Question</button >
<div id ="timer-wrapper" >
<p > Time remaining:</p >
<p id ="timer" > 2:00</p >
<p id ="message" > Wrap it up!!!</p >
</div >
</div >
<script type ="text/javascript" > var localStoragePrefix = "ct-{{ cachebreaker }}" ; var lastSave = 0 ; function saveLocal (data ) { if (Date .now () - lastSave < 1000 ) { return ; } let cookie = localStoragePrefix + "=" + JSON .stringify (data) + "; path=" + window .location .pathname + "'; SameSite=Strict" ; cookie += "; expires=" + new Date (Date .now () + 1000 * 60 * 60 * 24 * 365 * 1000 ).toUTCString (); document .cookie = cookie; lastSave = Date .now (); } function loadLocal ( ) { var cookiePrefix = localStoragePrefix + "=" ; var cookieStart = document .cookie .indexOf (cookiePrefix); if (cookieStart > -1 ) { let cookieEnd = document .cookie .indexOf (";" , cookieStart); if (cookieEnd == -1 ) { cookieEnd = document .cookie .length ; } var cookieData = document .cookie .substring (cookieStart + cookiePrefix.length , cookieEnd); return JSON .parse (cookieData); } } </script >
<script type ="text/javascript" > window .addEventListener ('load' , function ( ) { var observer = new MutationObserver (function ( ) { window .parent .postMessage ({height : document .documentElement .scrollHeight || document .body .scrollHeight },"*" ); }); observer.observe (document .body , {attributes : true , childList : true , subtree : true }); window .parent .postMessage ({height : document .documentElement .scrollHeight || document .body .scrollHeight },"*" ); }); </script >
</body >
</html >