In(75)programming, the user determines the sequence of instructions to be executed, not the programmer.A.top-downB.structureC.data-drivenD.event-driven

题目

In(75)programming, the user determines the sequence of instructions to be executed, not the programmer.

A.top-down

B.structure

C.data-driven

D.event-driven


相似考题
更多“In(75)programming, the user determines the sequence of instructions to be executed, not th ”相关问题
  • 第1题:

    以下4个程序中,完全正确的是A.include main(); {/*programming*/ printf("programming

    以下4个程序中,完全正确的是

    A.#include<stdio.h> main(); {/*programming*/ printf("programming!\n");}

    B.#include<stdio.h> main() {/*/programming/*/ printf("programming!\n");}

    C.#include<stdio.h> main() {/*/*programming*/*/ printf("programming!\n")}

    D.include<stdio.h> main() {/*programming*/ printf("programming!\n");}


    正确答案:B
    解析: 选项A)main();的分号是错误的,不能有分号;选项C)的注释语句多了两个*号;选项D)include前面没有#。

  • 第2题:

    以下四个程序中,完全正确的是()

    A.#include <stdio.h> main(); {/*/ programming /*/ printf("programming!n");}

    B.#include <stdio.h> main() {/* programming */ printf("programming!n"); }

    C.#include <stdio.h> main() {/*/* programming */*/ printf("programming!n"); }

    D.include <stdio.h> main() {/* programming */ printf("programming!n"); }


    B 在选项A中,main()函数后面的分号是错误的,C语言在函数名后而不能有分号。在C语言中注释内容必须放在”/’和”+/”之间,”/”和”*/”必须成对出现,按语法规定在注释之间不可以再嵌套”/∥’和”+/”。在选项C的程序段中注释语句之间有嵌套;所以选项C不正确。C语言用#inc1ude命令行来实现文件包含的功能。#inc1ude命令行的形式为:#inc1ude”文件名”,所以存选项D中inc1ude前面少了一个#符号,因而选项D不正确。

  • 第3题:

    6、以下四个程序中,完全正确的是()。

    A.#include <stdio.h> int main(); { /*programming*/ printf("programming!\n"); return 0; }

    B.#include <stdio.h> int main() { /*programming*/ printf("programming!\n"); return 0; }

    C.include <stdio.h> void main() { /*programming*/ printf("programming!\n"); return 0; }

    D.#include <stdio.h> int mian() { /*programming*/ printf("programming!\n"); return 0; }


    D

  • 第4题:

    In(75) programming, the user determines the sepuence of instions to be executed, not programmer.

    A.top-down

    B.structure

    C.data-driven

    D.event-driven


    正确答案:D

  • 第5题:

    以下四个程序中,完全正确的是

    A.#include int main() { /* programming */ printf("programming!n"); return 0; }

    B.#include int main() { /*/* programming */*/ printf("programming!n"); return 0; }

    C.include int main() { /* programming */ printf("programming!n"); return 0; }

    D.#include int main(); { /*/ programming /*/ printf("programming!n"); return 0; }


    B 在选项A中,main()函数后面的分号是错误的,C语言在函数名后而不能有分号。在C语言中注释内容必须放在”/’和”+/”之间,”/”和”*/”必须成对出现,按语法规定在注释之间不可以再嵌套”/∥’和”+/”。在选项C的程序段中注释语句之间有嵌套;所以选项C不正确。C语言用#inc1ude命令行来实现文件包含的功能。#inc1ude命令行的形式为:#inc1ude”文件名”,所以存选项D中inc1ude前面少了一个#符号,因而选项D不正确。