Strings can be enclosed in single quotesprint 'Hello World in single quotes'Strings can also be enclosed in double quotesprint "Hello World in double quotes"Strings can also be enclosed in triple quotesprint """ This is a multiline string Such strings are also possible in Groovy. These strin...
B。选项 A“data”是“数据”,算法不是一组数据。选项 B“steps”是“步骤”,算法是解决问题的一组步骤。选项 C“errors”是“错误”,算法不是错误的集合。选项 D“languages”是“语言”,算法不是语言的集合。本题考查编程基础词汇“algorithm”的含义。反馈...
In programming, which one is not a data type? A. integer B. string C. float D. color 相关知识点: 试题来源: 解析 D。整数(integer)、字符串(string)、浮点数(float)都是常见的数据类型,而 color 不是编程中的基本数据类型。反馈 收藏
A. looping through a set of data B. making decisions based on conditions C. defining classes D. handling E. rrors 相关知识点: 试题来源: 解析 B。‘if’语句主要用于根据条件做出决策。选项 A 循环遍历一组数据通常使用‘for’或‘while’循环;选项 C 定义类不是‘if’语句的功能;选项 D 处理错误...
In programming, which of the following is not a data type? A. Integer B. String C. Float D. Picture 相关知识点: 试题来源: 解析 D。本题考查常见的数据类型。整数(Integer)、字符串(String)、浮点数(Float)都是常见的数据类型,而图片(Picture)通常不是基本的数据类型。
In programming, a number without decimal points is called ___. A. integer B. string C. float D. boolean 相关知识点: 试题来源: 解析 A。整数是没有小数部分的数字,选项 A integer 表示整数;选项 B string 是字符串;选项 C float 是浮点数;选项 D boolean 是布尔值。反馈 收藏 ...
In programming, a variable is ___. A. a number B. a letter C. a container for storing data D. a book 相关知识点: 试题来源: 解析 C。选项 C“a container for storing data”是存储数据的容器的意思,在编程中,变量是存储数据的容器。选项 A“a number”是一个数字,选项 B“a letter”...
A. code B. game C. picture D. song 相关知识点: 试题来源: 解析 A。本题考查电脑编程的基础词汇。“code”有“代码”的意思,在编程中,代码能告诉电脑做什么,B 选项“game”是“游戏”,C 选项“picture”是“图片”,D 选项“song”是“歌曲”,都不符合题意,所以选 A。反馈...
A. when B. if C. then D. where 相关知识点: 试题来源: 解析 B。本题考查编程中 if 语句的起始关键字。选项 A“when”通常不用于启动 if 语句;选项 C“then”一般不在 if 语句开头;选项 D“where”也不是 if 语句的起始关键字。只有“if”用于开始一个 if 语句。反馈...
In mostprogramming languages, strings are enclosed in quotation marks to differentiate them from other data types, such as numbers or variable names. For instance: name = "Peter"; // This is a string age = "44"; // This is a string ID = 123; // This is a number ...