About 1,540,000 results
Open links in new tab
  1. Data Types in Programming - GeeksforGeeks

    Mar 26, 2024 · An interpreter or compiler can determine how a programmer plans to use a given set of data by looking up its data type. The data comes in different forms. Examples include: …

  2. Data Types in Java Programming with Implementation Examples

    Java Data Types - Learn about the primitive and non-primitve data types in Java with their use, syntax and implementation in Java program.

  3. java implementation (list with different data types)

    Oct 5, 2011 · In the above example. You can create an ArrayList which stores a Collection of List with {String, Double, Integer} datatypes, respectively. NOTE: It's bad practice in Java to create …

  4. Python Data Types (With Examples) - Programiz

    In this tutorial, you will learn about different data types we can use in Python with the help of examples.

  5. Python Data Types - GeeksforGeeks

    Mar 12, 2025 · This code assigns variable ‘x’ different values of few Python data types – int, float, list, tuple and string. Each assignment replaces the previous value, making ‘x’ take on the data …

  6. Create a C function that accepts parameters of different data types

    Jul 16, 2013 · I'm relatively new to the C programming language, and I'm trying to figure out how to create a function that can accept different types of data as parameters. The function is …

  7. Week1.py: Write A Program To Demonstrate Different Number Data Types

    Each experiment includes the aim, source code, and output of a Python program. The programs demonstrate various Python concepts like data types, arithmetic operations, strings, dates, …

  8. C++ Data Types Real Life Examples - W3Schools

    Here's a real-life example of using different data types, to calculate and output the total cost of a number of items: Track your progress - it's free! Well organized and easy to understand Web …

  9. Data Types In Java – With Examples - Java Tutoring

    Apr 16, 2025 · Data types in Java, primitive types, Java environment variables, Types of variables in java with examples and sample programs. What Are Data Types In Java? [wp_ad_camp_3] …

  10. How to Use Data Types in Python – Explained with Code Examples

    Feb 9, 2024 · Python has several built-in data types like the sequence, numeric, mapping, set, none, and Boolean types of data. This article will discuss the following topics: Have you ever …