Organize projects and tasks with a clean UI — QuestBoard Project Manager

⚡ Plan • Prioritize • Track — no login, no backend.

QuestBoard Project Manager

LocalStorage keeps your data private. List & Kanban views, stats, and charts.

Open the App
Kanban, timelines, and charts — QuestBoard Project Manager

🧭 Single-user, offline & private — tasks, Kanban, charts.

QuestBoard — Manage Projects Fast

Built with Next.js & Bootstrap. Export/Import your data anytime.

Start Now
Cover
Convert Celsius to Fahrenheit
Coding Challenges
Convert Celsius to Fahrenheit

Challenge Convert a temperature from Celsius to Fahrenheit in JavaScript.

Write a function that takes a Celsius value and returns the Fahrenheit equivalent using the formula: F = C × 9/5 + 32

Complete code: function celsiusToFahrenheit(c) { return c * 9 / 5 + 32; } console.log(celsiusToFahrenheit(25));

Question: What should the console print for the input 25?

Multiple choice:

  1. 67
  2. 77
  3. 82
  4. 98

Tip: Mind operator precedence and return a number, not a string.

#javascript#beginner#coding-challenge#logic#math#temperature#practice
Print Hello World
Coding Challenges
Print Hello World

Challenge

Write a JavaScript statement that prints Hello, World! to the console.

Assume you are running the code in a modern web browser console. Choose the single best option.

Multiple Choice

  1. console.log("Hello, World!");
  2. alert("Hello, World!");
  3. document.getElementById("app").innerText = "Hello, World!";
  4. print("Hello, World!")
#javascript#beginner#hello world#console#basics#coding challenge