Sunday’s Coding Challenges & Projects
Frontend Mini Project Challenge
Task: Build a Dark Mode Toggle
Tech Stack: HTML, CSS, JavaScript
- Toggle between light mode & dark mode
- Save user preference in
localStorage
- Use CSS transitions for a smooth effect
Backend Challenge
Task: Build a URL Shortener
Tech Stack: Node.js + Express + MongoDB
Requirements:
- Create an API that generates short URLs
- Store long URLs in MongoDB
- Redirect users when they access the short URL
Database Query Challenge
Problem: Find employees who have been with the company for more than 5 years but haven't received a salary increase in the last 2 years.
Sample table: employees+-------------+-------------+-------------+----------+--------------------+------------+------------+----------+----------------+------------+---------------+ | EMPLOYEE_ID | FIRST_NAME | LAST_NAME | EMAIL | PHONE_NUMBER | HIRE_DATE | JOB_ID | SALARY | COMMISSION_PCT | MANAGER_ID | DEPARTMENT_ID | +-------------+-------------+-------------+----------+--------------------+------------+------------+----------+----------------+------------+---------------+ | 100 | Steven | King | SKING | 515.123.4567 | 2003-06-17 | AD_PRES | 24000.00 | 0.00 | 0 | 90 | | 101 | Neena | Kochhar | NKOCHHAR | 515.123.4568 | 2005-09-21 | AD_VP | 17000.00 | 0.00 | 100 | 90 | | 102 | Lex | De Haan | LDEHAAN | 515.123.4569 | 2001-01-13 | AD_VP | 17000.00 | 0.00 | 100 | 90 | | 103 | Alexander | Hunold | AHUNOLD | 590.423.4567 | 2006-01-03 | IT_PROG | 9000.00 | 0.00 | 102 | 60 | | 104 | Bruce | Ernst | BERNST | 590.423.4568 | 2007-05-21 | IT_PROG | 6000.00 | 0.00 | 103 | 60 | | 105 | David | Austin | DAUSTIN | 590.423.4569 | 2005-06-25 | IT_PROG | 4800.00 | 0.00 | 103 | 60 | | 106 | Valli | Pataballa | VPATABAL | 590.423.4560 | 2006-02-05 | IT_PROG | 4800.00 | 0.00 | 103 | 60 | | 107 | Diana | Lorentz | DLORENTZ | 590.423.5567 | 2007-02-07 | IT_PROG | 4200.00 | 0.00 | 103 | 60 | | 108 | Nancy | Greenberg | NGREENBE | 515.124.4569 | 2002-08-17 | FI_MGR | 12008.00 | 0.00 | 101 | 100 | | 109 | Daniel | Faviet | DFAVIET | 515.124.4169 | 2002-08-16 | FI_ACCOUNT | 9000.00 | 0.00 | 108 | 100 | .......
Data Structures & Algorithms Challenge
- Easy: Find the first non-repeating character in a string.
- Medium: Implement a min heap from scratch.
- Hard: Find the maximum product of any three numbers in an array.
Daily Quiz Challenge
Frontend Quiz (3 Questions)
- What will be the output of the following JavaScript code?
console.log(0 == '0');
console.log(0 === '0');
- true true
- true false
- false true
- false false
- Which CSS property is used to create a flexible layout?
- display: grid;
- display: block;
- display: flex;
- display: inline;
- What is the correct way to emit an event in Vue.js from a child component to a parent?
- this.send('eventName')
- this.$emit('eventName')
- this.trigger('eventName')
- this.dispatch('eventName')
Backend Quiz
- Which of the following is not a valid HTTP method?
- GET
- FETCH
- POST
- DELETE
- In Node.js, which module is used to create an HTTP server?
- fs
- http
- express
- url
- What does the finally block do in Java?
- Executes only if an exception is thrown
- Executes regardless of whether an exception is thrown
- Catches exceptions
- None of the above
Other Topics Quiz
- Which of the following is not an ACID property in databases?
- Atomicity
- Consistency
- Durability
- Scalability
- In Linux, which command is used to display the current working directory?
- pwd
- ls
- cd
- mv
Bug of the Day
Buggy Python Code:
def multiply(x, lst=[]):
lst.append(x)
return lst
print(multiply(2))
print(multiply(3))
print(multiply(4))
Find and fix the issue!
let num = 5;
console.log("Square: " + num ** 2);
SELECT * FROM employees WHERE salary > 50000 OR department = 'HR' AND department = 'IT';
fork();
printf("Hello from parent process\n");
for i in {1..5}; do
echo "Iteration $i"
done
def multiply(x, lst=[]):
lst.append(x)
return lst
print(multiply(2))
print(multiply(3))
print(multiply(4))
Interview Question of the Day
Daily Interview Questions
- What is the difference between null and undefined in JavaScript?
- Explain how the event delegation pattern works in JavaScript.
- How does the Virtual DOM work in React, and why is it useful?
- What are the key differences between Vue.js computed properties and watchers?
- Explain the difference between synchronous and asynchronous programming in Node.js.
- What is the difference between a thread and a process?
- How does memory management work in Python?
- Explain how a RESTful API differs from GraphQL.
- What is the difference between inner join and left join in SQL?
- How does indexing improve query performance in databases?
- What is the difference between NoSQL and SQL databases?
- What are system calls in an operating system? Provide an example.
- What is containerization, and how does Docker help in deployment?
Trivia: 5 Fun Facts
- Who created Linux?
- When was JavaScript first released?
- Which company developed React?
- What was the first programming language ever created?
- Which database system is known as the world's most popular open-source database?
-
Answer: Linus Torvalds created Linux in 1991.
-
Answer: JavaScript was first released in 1995 by Netscape, developed by Brendan Eich.
-
Answer: Facebook (now Meta) developed React in 2013.
-
Answer: The first high-level programming language was FORTRAN, developed in 1957 by IBM.
-
Answer: MySQL, originally developed by MySQL AB in 1995.
API of the Week
Task: Hints for Building a Simple Weather App using OpenWeatherMap API
- Get an API Key
- Sign up at OpenWeatherMap and get a free API key.
- Choose an HTTP Request Method
- Use fetch() in JavaScript or requests in Python to get weather data.
- API Endpoint Example
- Use this URL:
- https://api.openweathermap.org/data/2.5/weather?q=London&appid=YOUR_API_KEY&units=metric
- Replace London with the city name and YOUR_API_KEY with your actual API key
- Extract Important Data
- Parse the JSON response to extract key details like temperature, humidity, and weather description.
- Display the Data
- Show weather details in a simple UI using HTML, CSS, and JavaScript.
- Example: Display city name, temperature, and weather conditions.
- Handle Errors Gracefully
- Show an error message if the city is not found or the API call fails.
- Enhancements (Optional)
- Allow users to enter any city name.
- Show weather icons based on conditions.
- Use geolocation to fetch the user’s current weather.
orgopenweathermap.org
Current weather and forecast - OpenWeatherMap
OpenWeather provides comprehensive weather data services, including current, forecast, and historical weather information. Explore a wide range of APIs for solar radiation, road risk assessment, solar energy prediction, and more, with global coverage and user-friendly access. Ideal for developers and businesses seeking accurate and reliable weather insights.
Tool of the Day
Postman - Great for testing APIs!
Postman is a popular API testing tool used by developers to send requests, inspect responses, and automate testing. It provides a user-friendly interface to work with APIs without needing to write code manually.
Key Features of Postman:
- Send API Requests: Easily send GET, POST, PUT, DELETE requests to test RESTful APIs.
- Manage Environments: Store API keys, base URLs, and variables for different environments (e.g., dev, staging, production).
- Automated Testing: Use Postman Tests (JavaScript-based scripts) to validate API responses.
- Collections & Workspaces: Organize API requests into collections and collaborate with teams.
- Mock Servers: Simulate API responses for development without needing a backend.
- API Documentation: Generate and share API documentation automatically.
Why Use Postman?
- Saves time on manual API testing
- No coding required for basic usage
- Works with REST, GraphQL, and SOAP APIs
- Free version available for personal use
Real-World Project of the Week
Project: Build a Personal Portfolio Website
Tech Stack: HTML, CSS, JavaScript (Optional: React, TailwindCSS)