题目详情
当前位置:首页 > 计算机考试 > 职称计算机考试
题目详情:
发布时间:2023-11-20 05:59:44

[单项选择]HTML代码input type=text name=;foo;size=20表示
A. 创建一个单选框
B. 创建一个单行文本输入区域
C. 创建一个提交按纽
D. 创建一个使用图象的提交按纽

更多"HTML代码input type=text name=;foo;siz"的相关试题:

[单项选择]HTML代码input type=text name="address" size=30表示
A. 创建一个单选框
B. 创建一个单行文本输入区域
C. 创建一个提交按纽
D. 创建一个使用图象的提交按纽
[单项选择]有程序代码:Text1.text="Visual Basic" 其中的Text1、text和"Visual Basic"分别代表( )。
A. 对象、值、属性
B. 对象、方法、属性
C. 对象、属性、值
D. 属性、对象、值
[单项选择]窗体上添加一个文本框Text1,编写如下代码: Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer) Print Chr(KeyCode+5)&KeyCode End sub 程序运行时,在文本框中输入“ab”,则在窗体上输出为( )。
A. F65 G66
B. F65 F66
C. G66 F65
D. G65 G66
[单项选择]窗体上添加一个文本框Text1,编写下列代码: Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer) Print Chr(KeyCode+5)& KeyCode End Sub 程序运行时,在文本框中输入“ab”,则在窗体上输出为( )。
A. F65 G66
B. F65 F66
C. G66 F65
D. G65 G66
[单项选择]在窗体(Name属性为form1)上画两个文本框(Name属性分别为Text1和Text2)和一个命令按钮 (Name属性为Command1),然后编写如下两个事件过程,该过程的运行结果为______。Private Sub Command1_Click( ) a = Text1, Taxt + Text2, Text Print aEnd SubPrivate Sub form_ Load( ) Text1.Text = "123" Text2.Text = "321"End Sub
A. 444
B. 321123
C. 123321
D. 132231
[单项选择]在HTML文档中,<input>标记的type属性的值为 (37) 时表示一个复选框。
A. text
B. checkbox
C. radio
D. submit
[单项选择]HTML代码img src=name表示
A. 添加一个图象
B. 排列对齐一个图象
C. 设置围绕一个图像的边框的大小
D. 加入一条水平线
[单项选择]有如下类定义: class Foo { public: Foo(int v):value(v){} //①    ~Foo( ){} //② private:     Foo( ){} //③     int value=0; //④ }; 其中存在语法错误的行是
A. ①
B. ②
C. ③
D. ④
[单项选择]From the text, how many places have the name Valencia
A. One
B. Two
C. Three
D. Four
[单项选择]设在工程中有一个标准模块,其中定义了如下记录类型 Type Books Name As String* 10 TelNum As String * 20 End Type 在窗体上画一个名为 Command1的命令按钮,要求当执行事件过程Command1 Click时, 在顺序文件Person.txt中写入一条记录。 下列能够完成该操作的事件过程是 ______。
A. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt" For Output As #1 Name = InputBox("输入姓名") TelNum = InputBox("输入电话号码") Write #1, Name, TelNum Close #1 End Sub
B. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt, For Input As # 1 Name = lnputBox("输入姓名") TelNum = InputBox("输入电话号码") Print #1, Name, TelNttm Close #1 End Sub
C. Private Sub Command1_Click( ) Dim B As Books Open "c:/Persotxt" For Output As #1 Name = InputBox("输入姓名") TelNum = InputBox("输入电话号码") Write # 1, B Close #1 End Sub
D. Private Sub Command1_Click( ) Dim B As Books Open"c:/Persotxt" For Input As #1 Name=InputBox("输入姓名") TelNum=InputBox("输入电话号码") Print #1,Name,TelNum Close #1 End Sub
[单项选择]有如下类声明: class Foo { int bar; }; 则Foo类的成员bar是
A. 公有数据成员
B. 公有成员函数
C. 私有数据成员
D. 私有成员函数
[单项选择]设在工程中有一个标准模块,其中定义了如下记录类型 Type Books Name As String*10 TelNum As String*20 End Type 在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_Click时,在顺序文件 Person.txt中写入一条记录。下列能够完成该操作的事件过程是
A. Private Sub Command1_Click( ) Dim B As Books Open”c:/PerSotxt"For Output As #1 Name=InpuB。x(“输入姓名”) TelNuln=InputBox(“输入电话号码”) Wdte#1.Name,TelNum Close#1 End Sub PIivate Sub Command1_C1ick() Dim B As BOOks OPen”c:/Persotxt"FOr lnput As #1 Name:InputBox(“输人姓名”) TelNum=InputBox(“输入电话号码”) Print#1,Name,TelNum C1ose#1 End Sub
B. Private Sub Command1_Chck( ) Dim B As Books Open”c:/Persoht”For Output As#1 Name=InputBox(“输入姓名”)
C. TelNum=InputBox(“输入电话号码”) Write#1,B Close#1 End Sub
D. Pnvate Sub Command1_Click( ) Open”c:/Persotxt"For lnput As #1 Name=InputBox(“输入姓名”) TalNum=InputBox(“输入电话号码”) Print,Name,TelNum Close#1 End Sub
[单项选择]有如下类定义: class Foo{ public: Foo(int v):value(v){} //① ~Foo( ){} //② private: Foo( ){{ //③ int value=0; //④ }; 其中存在语法错误的行是
A. ①
B. ②
C. ③
D. ④
[单项选择]设在工程中有一个标准模块,其中定义了如下记录类型
Type Books
Name As String *10
TelNum As String *20
End Type
在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_ Click时,在顺序文件Person.txt中写入一条记录。下列能够完成该操作的事件过程是______。
A. Private Sub Command1_Click()
B. Private Sub Command1_ Click()
C. Private Sub Command1_ Click()
D. Private Sub Command1_ Click()

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码