JML - GILDARDO ALONSO CORTES GALLO
Test por , creado hace más de 1 año

Type of Data

132
0
0
JML - GILDARDO ALONSO CORTES GALLO
Creado por JML - GILDARDO ALONSO CORTES GALLO hace más de 4 años
Cerrar

Type of Data - Phyton

Pregunta 1 de 3

1

Numeric:
A numeric value is any representation of data which has a numeric value. Python identifies three types of numbers:
Positive or negative whole numbers (without a fractional part)
Any real number with a floating point representation in which a fractional component is denoted by a decimal symbol or scientific notation
A number with a real and imaginary component represented as x+yj. x and y are floats and j is -1(square root of -1 called an imaginary number)

Arrastra y suelta para completar el texto.

    Integer:
    Float:
    Complex number:

Explicación

Pregunta 2 de 3

1

Data with one of two built-in values True or False. Notice that 'T' and 'F' are capital. true and false are not valid booleans and Python will throw an error for them.

Selecciona una de las siguientes respuestas posibles:

  • Integer

  • Character

  • Boolean

Explicación

Pregunta 3 de 3

40

Selecciona la opción correcta de los menús desplegables para completar el texto.

Sequence Type
A sequence is an ordered collection of similar or different data types. Python has the following built-in sequence data types:

( String:, Tuple:, List: ) is a collection of one or more characters put in single, double or triple quotes.
( Tuple:, String:, List : ) is an ordered collection of one or more data items, not necessarily of the same type, put in square brackets.
( List:, Tuple:, String: ) is an ordered collection of one or more data items, not necessarily of the same type, put in parentheses.

Explicación