Yushahu Yussif Azarafor<Azara />blog.muqitazara.tech·Nov 13, 2024Understanding Ternary Operators: Simplifying Ternary Conditional Logic over If/Else StatementsIntroduction My first encounter with conditional (ternary) operations was when I first ventured into the world of programming. Along my journey, I was tasked with writing a monty program, where I had to define a data structure to use in the program a...Discuss·57 readsternary operator
Faria Karimfariakarim.hashnode.dev·Oct 31, 2024Ballerina Basics: 5 Fundamental Programming ConceptsIntroduction: This blog covers five fundamental programming concepts—variables, control structures, functions, data structures, and OOP—illustrated with examples in Ballerina. Mastering these basics is key to building efficient applications. 1. Varia...Discussfundamentals
Sarthak Sharmaamni.hashnode.dev·Oct 13, 2024JAVA: Conditional StatementsPrologue Have you ever made a decision? What thought process did you use to make it? You probably considered the conditions you had and then made your decision based on that. Voilà, you now understand conditional statements. What are conditional stat...Discuss·1 likeJavaConditional statement
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 10, 2024Conditional statements in JavaScriptWhat is conditional statements? Conditional statements are constructs in programming that allow code to make decisions based on specific conditions or expressions. They let the program execute certain pieces of code when certain conditions are met, a...DiscussJavaScript CoreJavaScript
David Montesdeocablog.davidmontesdeoca.es·Sep 28, 2024The one about conditionals in RubyConditionals control the flow of execution of your program based on conditions that you define. In Ruby we have conditional statements such as if, else, elsif, unless, case, or the ternary operator. Here I would like to focus on what I consider to be...Discuss·26 readsRuby
Kandadi Manasakandadimanasa.hashnode.dev·Sep 8, 2024Conditional Statements in JavaConditional statements allow your code to make decisions based on certain conditions. The most common conditional statements in Java are if, if-else, and switch. Akali vestundi, if(Opika unte) cook maggi else { paduko } , oka decision thiskovadaniki ...DiscussJava
Arya M. Pathakarya2004.hashnode.dev·Jul 20, 2024Deep Dive into Go: Control Statements, Packages, Declarations, and OperatorsWe’ve touched on these topics before, but let’s circle back and explore them in greater detail. Specifically, we'll look at control statements, packages, declarations, and operators. Buckle up, it’s gonna be fun! Control Structures in Go If Statement...Discuss·10 likesGo Deep: Mastering Golang FundamentalsGo Language
CODE SENSEIcodesensei.hashnode.dev·Jul 16, 2024How to Use Conditionalsconditions are crucial concepts in programming as they help us save lines of code and manage memory efficiently. CONDITIONALS As the name suggests, conditionals are used to set rules and make decisions based on circumstances. For example, when drivin...DiscussConditional statement
ritiksharmaaaritiksharmaaa.hashnode.dev·Jul 15, 2024DSA Week 1: Master Data Types, Loops, and Conditional Operators to Kickstart Your Coding Journey!Week 1-2: Fundamentals Day 1-2: Data Types Learning: int, float, boolean, string, char, long, double, bigint Practice: Exercises on each data type Day 3-4: Condition Operators Learning: if-else, switch statement, ternary operator Practice: Co...DiscussData Structure And AlgorithmsDSA
Saurabh Damalehackroot1.hashnode.dev·Jul 11, 2024Understanding PHP Conditional Statements: if, else, and switch ExplainedToday, we will explore PHP conditional statements, which allow you to execute different blocks of code based on certain conditions. Conditional statements are fundamental in programming as they enable decision-making in your code. Let's dive into the...DiscussPHP