Footer

    Download on the App StoreGet it on Google Play

    About

    • About Us
    • Our Learning Services
    • Join Us
    • FAQ
    • Hot Tags

    Services

    • Pronunciation Challenge
    • Saved
    • Search Vocabulary
    • Blog

    Channels

    Levels

    • A1
    • A2
    • B1
    • B2
    • C1
    • C2

    Privacy˙Terms˙
    ©2026 VoiceTube Corporation. All rights reserved

    integer

    US /ˈɪntɪdʒɚ/

    ・

    UK /ˈɪntɪdʒə(r)/

    B2
    n. (c.)Countable NounMath a whole number
    Two is an integer, but 2.5 is not

    Video subtitles

    Introduction to C++ Programming

    10:32Introduction to C++ Programming
    • So, in this example, let I be an integer variable whose value is equal to six.

      So, in this example, let I be an integer variable whose value is equal to six.

    • Now, again, if you are new to programming, you may not understand the meaning of this term variable, and what do we mean by I is an integer and all that.

      Now, again, if you are new to programming, you may not understand the meaning of this term variable, and what do we mean by I is an integer and all that.

    A2

    0.4 Data Structures & Algorithms: Selection Sort Code

    02:400.4 Data Structures & Algorithms: Selection Sort Code
    • So I'm going to create an integer variable that represents that location.

      So I'm going to create an integer variable that represents that location.

    • So I'm going to create an integer variable that represents that location.

      So I'm going to create an integer variable that represents that location.

    B1

    What the Fahrenheit?!

    05:24What the Fahrenheit?!
    • I mean, why does water freeze at 32 degrees, why that integer, and what exactly does zero represent?

      I mean, why does water freeze at 32 degrees, why that integer, and what exactly does zero represent?

    • Why that integer and what exactly does 0 represent?

      Why that integer and what exactly does 0 represent?

    B1

    Adding a file in Arduino IDE

    10:49Adding a file in Arduino IDE
    • This error typically occurs when the compiler does not recognize the uint8t type, which is supposed to represent an unsigned 8-bit integer.

      This error typically occurs when the compiler does not recognize the uint8t type, which is supposed to represent an unsigned 8-bit integer.

    • This error typically occurs when the compiler does not recognize the unit 8t type, which is supposed to represent an unsigned 8-bit integer.

      This error typically occurs when the compiler does not recognize the unit 8t type, which is supposed to represent an unsigned 8-bit integer.

    B1

    0.5 Data Structures & Algorithms: List-Based Selection Sort

    10:190.5 Data Structures & Algorithms: List-Based Selection Sort
    • Basically, what this is doing is it will give me a random integer between zero and the maximum possible integer value.

      Basically, what this is doing is it will give me a random integer between zero and the maximum possible integer value.

    • Basically, what this is doing is it will give me a random integer between 0 and the maximum possible integer value.

      Basically, what this is doing is it will give me a random integer between 0 and the maximum possible integer value.

    A2

    Vectors in C++

    16:01Vectors in C++
    • Okay so we got past all of our errors, it did provide a warning here, or output a warning, it says comparison between signed and unsigned integer expression, so this is related to the size operation here, so the size operation isn't actually returning an int value, but it's trying to compare it to an int value, so again you could do a cast operation there and cast that to an int, but I'm going to just ignore that for now, it's not really important that we change that.

      Okay so we got past all of our errors, it did provide a warning here, or output a warning, it says comparison between signed and unsigned integer expression, so this is related to the size operation here, so the size operation isn't actually returning an int value, but it's trying to compare it to an int value, so again you could do a cast operation there and cast that to an int, but I'm going to just ignore that for now, it's not really important that we change that.

    • It says comparison between signed and unsigned integer expression.

      It says comparison between signed and unsigned integer expression.

    B1

    Introduction to Pointers in C++, Tutorial on Pointers, C++ Pointers

    11:38Introduction to Pointers in C++, Tutorial on Pointers, C++ Pointers
    • More specifically, we could say that p is an integer pointer, meaning it's capable of holding addresses or memory locations associated with integer values.

      More specifically, we could say that p is an integer pointer, meaning it's capable of holding addresses or memory locations associated with integer values.

    • So we can see here that the address associated with x here is the address 0003, and that in fact is the value that's being stored here at this particular memory location associated with p, our integer pointer p.

      So we can see here that the address associated with x here is the address 0003, and that in fact is the value that's being stored here at this particular memory location associated with p, our integer pointer p.

    A2

    Use MySQL EXPLAIN for Query Optimization

    17:19Use MySQL EXPLAIN for Query Optimization
    • This table has an autoincrement primary key and two integer values.

      This table has an autoincrement primary key and two integer values.

    • Then, we add an index on the first integer value column, alter table, test estimates, and add an index.

      Then, we add an index on the first integer value column, alter table, test estimates, and add an index.

    B1

    Hello World in C: Computer Programming 1: 24HourAnswers Tutorials

    06:11Hello World in C: Computer Programming 1: 24HourAnswers Tutorials
    • and it returns an integer, signified by the word int here.

      and it returns an integer, signified by the word int here.

    • and returns an integer - signified by int. Don't worry if you don't understand these terms yet.

      and returns an integer - signified by int. Don't worry if you don't understand these terms yet.

    B1

    C++ Tutorial - 06 - Operators

    03:00C++ Tutorial - 06 - Operators
    • This is because it operates on two integer values and will therefore truncate the result and return an integer.

      This is because it operates on two integer values and will therefore truncate the result and return an integer.

    • two integer values and will therefore trunctate the result and return an integer. To get the

      two integer values and will therefore trunctate the result and return an integer. To get the

    B1