1. Home
  2. /
  3. Programming
  4. /
  5. Page 19

Tutorial Category: Programming

Programming is the process of designing and writing computer programs, which are sets of instructions that tell a computer what to do. Programming involves several key concepts, including:

Algorithm: An algorithm is a step-by-step procedure for solving a problem. Programmers use algorithms to design solutions to specific problems, which are then translated into code.

Data structures: Data structures are ways of organizing and storing data in a computer program. Some common data structures include arrays, lists, and maps.

Control flow: Control flow refers to the order in which instructions are executed in a program. Control flow is controlled by conditional statements, loops, and functions.

Variables: Variables are used to store data in a program. They can hold different types of data, such as numbers, strings, and Boolean values.

Functions: Functions are reusable blocks of code that perform a specific task. Functions can take input parameters and return output values.

Object-oriented programming: Object-oriented programming is a programming paradigm that emphasizes the use of objects, which are instances of classes that encapsulate data and behavior.

Debugging: Debugging is the process of finding and fixing errors in a program. Programmers use various tools and techniques to identify and resolve bugs in their code.

Programming involves a combination of creativity, problem-solving skills, and attention to detail. Programmers must be able to break down complex problems into smaller, more manageable pieces, and design elegant solutions that are efficient, maintainable, and easy to understand.

Looping through arrays in javascript

About traversing through object in JavaScript Traversing through an object in JavaScript refers to iterating over the properties of an object and performing some...

JavaScript Check if Object has Property (Undefined)

Understanding Undefined Object Properties in JavaScript In JavaScript, an object property can be undefined if it is not assigned a value or if it is deleted from...

How to Use CSS Media Queries

Introduction to CSS Media Queries CSS media queries are a powerful feature that allow you to apply different styles and layouts based on specific characteristics...

Pretty Print JSON Python

What is Pretty Printing JSON and Why is it Important? Pretty printing JSON is the process of formatting a JSON (JavaScript Object Notation) object in a way that...

Detecting an undefined object property

What is Object Property? An object property is a named value associated with an object. It consists of a name, also called a key, and a value. The value can be of...

jQuerry Get Radio Button Value

About Radio button A radio button is a graphical user interface element that allows the user to choose one option from a set of options. Radio buttons are typically...

JavaScript Check if String as Variable

Brief about ‘String’ in Javascript In programming, a string is a sequence of characters. It is used to represent text in a program. Strings are commonly...

JavaScript Get Unique Values from Array

Understanding Unique Values in JavaScript In JavaScript, unique values refer to values that occur only once in an array or any other data structure. They are distinct...

Disable Input JavaScript

How to enable a disabled input? In JavaScript, you can enable a disabled input by setting the disabled property to false. Here’s an example code snippet in...

Format String as Currency in Javascript

About format numbers as currency strings in javascript This lesson shows us how to format integers in JavaScript into strings representing the dollar. The reason...

Check Our Ebook for This Online Course

Advanced topics are covered in this ebook with many examples.

Depth First Search Algorithm (DFS)
Depth first search in short form DFS is a graph traversal algorithm. The time complexity of DFS is O(V+E)...
Knuth-Morris-Pratt Algorithm (KMP)
Knuth-Morris-Pratt (KMP) Algorithm The Knuth-Morris-Pratt (KMP) algorithm is a string-matching algorithm...
GUI Programming In Java - PART TWO
How To Put Stuff On The Screen? Let’s get back to putting stuff on the screen now that we’ve...