LIFE: FRIENDSHIP

chapter 2: There are many valuable things in life, but friendship may be one of the most important. To live life without the experience of friendship is life without living. Many people look for different characteristics in friends, things that may be common in nature. But according to me friends & friendship is all about … Continue reading LIFE: FRIENDSHIP

LIFE: Family 👪

chapter 1: Let's talk about families, yeah the place from where we first learn about loving and caring relationships. So basically I belong to Rajasthani family where you've to follow lots of customs n traditions & tbh it sucks. But yeah sometimes they're fun too like our marriages, festivals & dance:). I am blessed with … Continue reading LIFE: Family 👪

JAVASCRIPT: Functions

Introduction A JavaScript function is a block of code designed to perform a particular task. A JavaScript function is executed when "something" invokes it (calls it). JavaScript functions are used to perform operations. We can call JavaScript function many times to reuse the code. A function is a group of reusable code which can be called … Continue reading JAVASCRIPT: Functions

JAVASCRIPT: Introduction & Programming Fundamentals

Introduction JavaScript is an object-based scripting language that is lightweight and cross-platform. JavaScript is not compiled but translated. The JavaScript Translator (embedded in the browser) is responsible to translate the JavaScript code. JavaScript is the programming language of HTML and the Web. JavaScript is easy to learn. Where JavaScript is used JavaScript is used to create interactive … Continue reading JAVASCRIPT: Introduction & Programming Fundamentals

CORE JAVA: Networking

Introduction Java Networking is a concept of connecting two or more computing devices together so that we can share resources. The term network programming refers to writing programs that execute across multiple devices (computers), in which the devices are all connected to each other using a network. The java.net package of the J2SE APIs contains a collection … Continue reading CORE JAVA: Networking

CORE JAVA: Multithreading

Introduction  Multithreading in java is a process of executing multiple threads simultaneously. A thread is basically a lightweight sub-process, the smallest unit of processing. Multiprocessing and multithreading, both are used to achieve multitasking. But we use multithreading than multiprocessing because threads share a common memory area. They don't allocate separate memory area so saves memory, and … Continue reading CORE JAVA: Multithreading