7.以下属于法约尔提出的管理理论是()
A. 例外原则
B. 一般管理理论
C. 14条管理原则
D. 理想行政组织理论
以下选项中,不是Python语言基本控制结构的是
A. 循环结构
B. 选择结构
C. 顺序结构
D. 跳转结构
阅读下面的程序,程序最终的执行结果为( )。a=0b=10if (a or b) and b:print("结果为true")else:print("结果为false")
A. 结果为true
B. 结果为false
C. 程序出现编译错误
D. 没有任何输出
若score值为80,以下程序输出结果为:( )if score>=60:grade="D"elif score>=70:grade="C"elif score>=80:grade="B"else:grade="A"print(grade)
A
B. D
C
D. B