Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Challenge: Specify the Data Types | Variables and Data Types
Introduction to Scala

bookChallenge: Specify the Data Types

Task

Your task is to replace the blanks ___ with the correct data types for each of the variables. For the temperature variable use the integer data type which takes up the least memory provided that the number fits in its range.

Main.java

Main.java

copy
123456789
object Main { def main(args: Array[String]): Unit = { val temperature: ___ = -150 val firstLetter: ___ = 'A' val width: ___ = 17.5F val boolVariable: ___ = true val fractionalNumber: ___ = 129.43 } }

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 2

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Suggested prompts:

Pergunte-me perguntas sobre este assunto

Resumir este capítulo

Mostrar exemplos do mundo real

Awesome!

Completion rate improved to 2.86

bookChallenge: Specify the Data Types

Deslize para mostrar o menu

Task

Your task is to replace the blanks ___ with the correct data types for each of the variables. For the temperature variable use the integer data type which takes up the least memory provided that the number fits in its range.

Main.java

Main.java

copy
123456789
object Main { def main(args: Array[String]): Unit = { val temperature: ___ = -150 val firstLetter: ___ = 'A' val width: ___ = 17.5F val boolVariable: ___ = true val fractionalNumber: ___ = 129.43 } }

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 2
some-alt