首页
令X=0,则下列表达式为真。The expression is true or false if X = 0.2*X+1 != 1
精华吧
→
答案
→
慕课
→
未分类
令X=0,则下列表达式为真。The expression is true or false if X = 0.2*X+1 != 1
A.正确
B.错误
正确答案:错误
Tag:
程序设计基础
表达式
时间:2022-01-06 19:26:03
上一篇:
令X=0,则下列表达式为真。The expression is true or false if X = 0.X=0
下一篇:
令First=Ann,则下列表达式为真。The expression is true or false if First=Ann.First==ann
相关答案
1.
术语防御性编程指的是:The term defensive programming refers to:
2.
多选结构不能用下列哪种方法实现:Multiple-choice structure cannot be implemented in which of the following ways:
3.
如下哪个表达式同A8 AND A18是等价的?Which of the following expressions is equivalent to A 8 AND A 18?
4.
如下哪个表达式同NOT(AB)是等价的:Which of the following expressions is equivalent to NOT (A B):
5.
结构化程序设计是有效地设计和编写程序的方法。Structured programming is a method for designing and coding programs effectively.
6.
调试程序意味着更正程序的错误。To debug a program means to correct its errors.
7.
程序注释是给运行程序的人看的。Step comments are intended to be read by someone using the program.
8.
当计算机运行程序时,注释的内容被忽略。The contents of comments are ignored by the computer while running a program.
9.
自顶向下的设计将问题分解为越来越简单的小块。Top-down design decomposes the problem into smaller and simpler pieces.
10.
在编写程序代码前,应该先做设计。Before we code a program, we should design it.
热门答案
1.
下面哪一项不是基本的控制结构:Which of the following is not a basic control structure?a. 过程结构b. 循环结构c. 决策结构d. 顺序结构
2.
语法错误是因为语句没有正确实现应完成的任务。Syntax error results from statements that do not properly perform their intended task.
3.
逻辑错误违背了程序设计语言对于语句结构的规定。Logic error is a violation of a programming language’s rules for the structure of statements.
4.
步骤注释给出了代码段的说明。Step comment provides an explanation of a portion of code.
5.
首部注释给出了程序或程序模块的一般性描述。Header comment provides a general description of a program or program module.
6.
伪代码用简短的类似英语的短语来描述程序设计。Pseudocode makes use of short, English-like phrases to describe the design of a program.
7.
层次结构图是程序模块和模块间的关系的形象化表示。Hierarchical structure diagram is a pictorial representation of a program's modules and the relationships among them.
8.
调用模块执行就是使程序执行转移到该模块。To call a module (or subprogram) into action means to cause execution to transfer to that module.
9.
程序执行开始的模块一般称为子模块。The submodule is the generic name for the module in which program execution begins.
10.
分析问题的时候,我们通常先要确定程序生成的结果,即程序的输入。When analyzing a problem, we usually start by identifying the results we want the program to produce; that is, the program's input.