Ramkumar Sramkumarsanadi.hashnode.dev·Aug 24, 2023Mastering PostgreSQL Operators: From Arithmetic to Aliases - Day -6 of Postgres Learning JourneyPostgreSQL (PSQL) is a powerful relational database management system that offers a wide range of operators to manipulate and query data effectively. In this comprehensive guide, we will delve into the world of PSQL operators, focusing on arithmetic ...DiscussWeMakeDevs
Haneunhanlee.hashnode.dev·Aug 8, 2023Summary of Operators in PythonTypes of Arithmetic Operators in Python SymbolDescriptionReturn Value +AdditionVaries depending on the data types -SubtractionVaries depending on the data types *MultiplicationVaries depending on the data types /DivisionReturns a floating-p...DiscussProgrammingprogramming
Adarsh Sadarsh2425.hashnode.dev·May 14, 2023Day 2: Operators =>{ HackerRank-30 Days of Code in C}Make Sure you read the problem description here. Task Given the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal, fin...Discuss·38 readsHackerrank
Luke Chidubemlukechidubem.hashnode.dev·Mar 20, 2023JavaScript Arithmetic OperatorsArithmetic operators are used in JavaScript to perform arithmetic operations on values, such as addition, subtraction, multiplication, and division. Here are some examples: 1) Addition (+): This operator is used to add two or more values together. Fo...Discuss·30 readsJavaScript
Glory Olaifagloryolaifa.hashnode.dev·Feb 28, 2023Variables and Arithmetic in Dart programming language - Road to Mobile DevelopmentDart is an object-oriented programming language created by Google. It's designed to be simple, fast, and flexible, with a focus on building applications for mobile, web, and desktop platforms. Dart is a simple and flexible programming language that's...Discuss·16 likes·213 readsDart
Ishika Ishaniishikaishani.hashnode.dev·Dec 31, 2022JavaScript Arithmetic # 03An arithmetic operator accepts numerical values as operands and returns a single numerical value. The numerical values can be literals or variables.In JavaScript following are the arithmetic operators : A typical arithmetic operation operates on two...Discuss·20 likes·119 readsJavaScript
Mohammed Sabirmsabir.hashnode.dev·Dec 2, 2022Alert!! Operators are Functions in Javascript ??An operator is actually a special function that are written in your code. Generally, operators take two parameters and return one result. Let's look at an example. var a = 3 + 4; console.log(a); //7 Quite easy to guess what you will see on screen Sev...Discuss·42 readsJavaScript