shakyapreetitechguru1.hashnode.dev·Nov 14, 2024Web Development Essentials: A Journey from Front to BackIntroduction Web development has evolved significantly, with new technologies shaping the way websites and web applications are designed, developed, and maintained. For anyone venturing into this field, understanding both the front-end and back-end e...DiscussDeveloper
Victoria LoProlo-victoria.com·Nov 4, 2024The Ultimate Networking Guide for ProgrammersHello everyone! Welcome to another random article from Victoria. Lately, I’ve been meeting new people and reconnecting with old acquaintances almost daily. This got me thinking: how can I share my insights with the tech community? And this pondering ...Favourite Jome and 1 other are discussing this2 people are discussing thisDiscuss·37 likes·117 readsBook Reviews and Reflectionsnetworking
Soham SandbhorforC:Basic to Advanced by Tim Buchalkacbasic-to-advanced-by-tim-buchalka.hashnode.dev·Oct 29, 2024Day 8 Of C:basic To Advanced: arrays And Their Operatons🚀 INTRODUCTION TO ARRAY Array is basically the collection of similar data values in a single variable. Arrays are introduced in square brackets[]. Arrays allows you to access a group of values together under a single name . As when we define an arra...Discuss#cbasictoadvanced
aryan sharmaaryansharma.hashnode.dev·Oct 19, 2024LockedIn: Visualize Your Life in Weeks and Plan for SuccessIt was just another lazy evening. I was mindlessly scrolling through Instagram,And then, one reel stopped me in my tracks. It was a sarcastic but brutally honest saying, “Yes, you're going to become a billionaire, trillionaire... by scrolling all da...Fyodor and 1 other are discussing this2 people are discussing thisDiscuss·18 likes·40 readsLockedIn
Yasin Sarkaryasinsarkar.hashnode.dev·Oct 19, 2024Understanding the reduce Method in JavaScript: A Powerful Tool for Array Manipulation 🌟JavaScript offers a variety of methods to work with arrays, and one of the most powerful and versatile is the reduce method. In this article, we'll explore what reduce does, how it works, and some practical examples to help you understand its capabil...Discuss·26 readsjavascriptips
shakyapreetitechguru1.hashnode.dev·Oct 18, 2024Python Unchained: Mastering the Language of the FutureIntroduction In today’s rapidly evolving technological landscape, mastering the right programming language can be the key to unlocking exciting career opportunities. Among the myriad of languages available, Python stands out as one of the most powerf...Discusssoftware
Abhishek Vishwakarmavish7466.hashnode.dev·Sep 26, 2024Software Development: My Personal Learning JourneyHello, I’m Abhishek Vishwakarma, a recent Masters (M.Sc.) graduate in Informatics from the Institute of Informatics and Communication, University of Delhi South Campus, with a Bachelor's in Electronic Sciences from Maharaja Agrasen College, Universit...DiscussDeveloper
Bhuwan Sharmabhuwan.hashnode.dev·Sep 22, 2024C Tutorial-3#include <stdio.h> int main(){ // Q.1 Program to print table. int table; printf("Which table?"); scanf("%d", &table); int i = 1; while(i<=10){ printf(" %d X %d = %d\n",table, i, table*i); i++; } // Q.2 Program to print table in reversed order. int ta...DiscussC langugae
shakyapreetitechguru1.hashnode.dev·Sep 21, 2024The Impact of Java on Modern Technology SolutionsIntroduction Java, one of the most popular programming languages in the world, has played a pivotal role in shaping modern technology solutions. Since its inception in 1995, Java has evolved from a language primarily used for applets to one of the co...DiscussJava
Akash Dasakashdas7781.hashnode.dev·Sep 13, 2024Mastering Arrays in Java : The Key to Efficient Data Management .Why Array ? Before understanding what an array is, let’s look at the problems we face in data management. When you first learn programming, you often store data using individual variables of primitive types like int, float, char, etc. But what happen...Discussarrays