进行需求分析可以使用多种工具,但不适用的是
A.PAD图
B.数据字典
C.判定表 数据流图(DF
D.
参考答案:A
阅读以下信用证,做选择填空。
1.信用证内容:
2.根据信用证内容回答下列问题:
该信用证项下的分批装运栏应填()。
A.ANY
B.ALLOWED
C.NOT ALLOWED
在窗体上面一个命令按钮,其名称为Command1,然后编写如下程序: Function Func(ByVal x As Integer,y As Integer)y=x*yIf y>0 Then Func=xElse Func=yEnd If End Function Private Sub Command1_Click()Dim a As Integer,b As Integera=3b=4c=Func(a,B)Print"a=";aPrint"b=";bPrint”c=";c End Sub 程序运行后,单击命令按钮,其输出结果为: ______。
A.a=3 b=12 c=3
B.a=3 b=4 c=3
C.a=3 b=4 c=12
D.a=13 b=12 c=12