Tagged articles
16 articles
Page 1 of 1
Lisa Notes
Lisa Notes
Mar 17, 2026 · Fundamentals

Java Basics: Understanding Primitive Data Types from Scratch

This article explains Java's primitive data types—including integer, floating‑point, character, and boolean types—covers their memory sizes, value ranges, literal syntax, automatic and explicit type conversions, and provides concrete code examples and tables for reference.

Javabooleanchar
0 likes · 16 min read
Java Basics: Understanding Primitive Data Types from Scratch
Lisa Notes
Lisa Notes
Feb 21, 2026 · Fundamentals

How to Convert Various Python Data Types to Integers

This tutorial explains why type conversion is needed in Python, describes the int(), str(), float() and bool() functions with their parameters, and provides a concrete example showing how to turn user input from a string into an integer for arithmetic.

PythonTutorialbool
0 likes · 4 min read
How to Convert Various Python Data Types to Integers
Liangxu Linux
Liangxu Linux
Nov 16, 2025 · Fundamentals

Convert Serial Bytes to Float in Embedded C with Unions and Endianness

This article explains how to reconstruct a 32‑bit floating‑point value from four serial bytes in embedded C by using a union or struct overlay, demonstrates the code, shows the resulting little‑endian byte order, and provides a simple function to detect system endianness.

CSerial CommunicationUNION
0 likes · 5 min read
Convert Serial Bytes to Float in Embedded C with Unions and Endianness
php Courses
php Courses
Sep 16, 2025 · Backend Development

Master PHP’s floatval: Convert Any Variable to Float Easily

This guide explains how PHP’s built‑in floatval function converts integers, strings, booleans, and arrays to floating‑point numbers, provides syntax details, multiple code examples, and important usage notes for reliable numeric handling.

PHPProgramming tutorialfloat
0 likes · 4 min read
Master PHP’s floatval: Convert Any Variable to Float Easily
php Courses
php Courses
Jul 4, 2025 · Backend Development

Mastering PHP’s is_float(): Syntax, Usage, and Real-World Examples

This guide explains PHP’s is_float() function, covering its syntax, how it determines whether a variable is a floating‑point number, including return values, example outputs, and a note on using is_numeric() for broader numeric checks, helping developers avoid type‑related errors.

PHPfloatis_float
0 likes · 4 min read
Mastering PHP’s is_float(): Syntax, Usage, and Real-World Examples
php Courses
php Courses
Jun 18, 2025 · Backend Development

Master PHP’s is_float(): Detect Floats with Simple Code Examples

This guide explains PHP’s is_float() function, showing how it determines whether a variable is a float, with clear code examples for simple variables and arrays, and highlights important nuances such as strict type checking and automatic conversion behavior.

PHPfloatis_float
0 likes · 5 min read
Master PHP’s is_float(): Detect Floats with Simple Code Examples
php Courses
php Courses
Feb 18, 2025 · Backend Development

Using PHP’s is_float() Function to Check for Floating-Point Variables

This article explains PHP’s built‑in is_float() function, demonstrating how it determines whether a variable is a floating‑point number, with simple and complex code examples, and discusses its strict type checking behavior and practical usage scenarios in backend development.

PHPfloatis_float
0 likes · 4 min read
Using PHP’s is_float() Function to Check for Floating-Point Variables
php Courses
php Courses
Dec 1, 2023 · Backend Development

Using the ceil() Function in PHP to Round Numbers Upward

This article explains PHP's ceil() function, detailing its syntax, parameters, and behavior for rounding numbers upward, and provides three clear code examples demonstrating its use with positive, negative, and integer values, along with the expected output for each case.

BackendPHPRounding
0 likes · 3 min read
Using the ceil() Function in PHP to Round Numbers Upward
Test Development Learning Exchange
Test Development Learning Exchange
Aug 10, 2023 · Fundamentals

Python Built‑in Functions for Data Type Casting

This article explains how to use Python's built‑in casting functions—int(), float(), str(), bool(), list(), tuple(), set() and dict()—to convert between numeric, string, boolean, sequence, and mapping types, providing clear code examples for each conversion scenario.

ListPythonbool
0 likes · 14 min read
Python Built‑in Functions for Data Type Casting
Python Programming Learning Circle
Python Programming Learning Circle
Sep 29, 2021 · Fundamentals

Common Python Data Types and Their Usage

This article introduces Python’s fundamental data types—including integers, floats, booleans, and strings—explaining their characteristics, representation formats, common pitfalls such as floating‑point precision, and provides concise code examples illustrating each type’s usage in Python.

Stringboolfloat
0 likes · 3 min read
Common Python Data Types and Their Usage
Laravel Tech Community
Laravel Tech Community
Jan 23, 2021 · Backend Development

PHP floor() Function – Truncating Float to Integer

The article explains PHP's floor() function, describing its signature, parameter, return type, and provides example code showing how it truncates floating‑point numbers to the nearest lower integer, with sample outputs for positive and negative values.

BackendRoundingfloat
0 likes · 2 min read
PHP floor() Function – Truncating Float to Integer