Muhaiminul Islam Sazidmisazid.hashnode.dev·Jan 23, 2025Variables in Python: A Comprehensive GuideVariables are fundamental elements in programming used to store data that can be referenced and manipulated in a program. In Python, variables are created when you assign a value to them, and they do not need explicit declaration to reserve memory sp...1 likePython
Shamith Nakkacodewithshamith.hashnode.dev·Jan 20, 2025Return NegativeQuestion There can’t be a simpler question than this… All you have to do is finish the makeNegative function, which takes a number and returns a negative number regardless of the value… function makeNegative(num) { // Finish your code here } Ins...Beginner Developers
MOHAMMAD TAHAdevwithtaha.hashnode.dev·Jan 14, 2025Day 15 Learnings: Downloading and Transferring Data in LinuxToday's Linux exploration focused on two powerful commands for network-based data handling: wget and curl. Both commands are essential for downloading files and interacting with web servers, offering flexible options for automating tasks and handling...Linux
Sanket Singhjoargons-of-the-internet.hashnode.dev·Jan 12, 2025Jargons of the Internet (Basic Internet Terms)Sometimes, when you heard or saw the conversation of a professional or an experienced web developer do you ever feel like there are many words which you don’t know? terms like:- https, Session, Cookie, TLS, etc. But trust me, once you understand the ...1 like·34 readsWeb Development
Simran Agrawaldevchef.hashnode.dev·Jan 3, 2025Git Initialising (Basic Commands)Git is a powerful tool for managing your code. If you’re just starting out, don’t worry—it’s simpler than it seems! Here's a quick guide to get your project up and running with Git: Step 1: Start Your Git Journey To create a Git repository (a place ...GitHub
Varun KumawatforDevHubdevhubcommunity.hashnode.dev·Dec 23, 2024Understanding Event Handling in JavaScriptEvent handling is a key part of JavaScript programming. It's not only a common interview topic but also essential for building basic web applications. As a developer, you should have a strong understanding of JavaScript fundamentals. Unfortunately, m...1 likeJavaScript
Madhav Ganesanmadhavganesan.hashnode.dev·Dec 12, 2024What is BIOS?BIOS (Basic Input/Output System) is fundamental firmware stored on a computer's motherboard, acting as the bridge between the hardware and operating system (OS). When a computer starts, the BIOS performs a Power-On Self-Test (POST) to check hardware ...bios
pranav madhukar sirsufalewhat-is-cors.hashnode.dev·Dec 11, 2024What are The JavaScript Iteration Methods😱In JavaScript, iteration methods are used to loop over or iterate through the elements of collections like arrays, objects, maps, and sets. These methods allow you to process, modify, or perform actions on each item in a collection. Here's an overvie...JavaScript
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 11, 2024Basics of Java for C ProgrammersWhy Learn Java After C? As a C programmer, you are already familiar with low-level programming, manual memory management, and efficient code execution. So why learn Java? Here are some compelling reasons: Portability: Java follows the mantra of "Wri...2 likes·1.8K readsJava
Mitali sahuwhat-is-oops.hashnode.dev·Dec 9, 2024Type of inheritanceDefinition → Creating a new class (sub class) that acquires all the properties of another class is called is inheritance. In java we achieve concept of inheritance with the help of extends keyword. THERE ARE MAINLY 5 TYPE OF INHERITANCE Single inher...oop