***[送分]***高分求VB题目~~~~

挺拔的劲松 2004-10-15 06:48:18

只要你出一个选择题,一个判断题和一个填空题,(相对于VB6.0)
就可以得到10分,也就是出三个题目就得10分。

快来啊~~~,前10位有分~~~!!!!
...全文
171 18 打赏 收藏 转发到动态 举报
写回复
用AI写文章
18 条回复
切换为时间正序
请发表友善的回复…
发表回复
挺拔的劲松 2004-10-17
  • 打赏
  • 举报
回复
贴出问题还要贴出答案啊~~~
oldmoon 2004-10-17
  • 打赏
  • 举报
回复
VB数据库管理器不能访问下列哪种数据库( )
A:FOXPRO B:MMB C:PARADOX D:ACCESS

编下VB时,一行语句最长为256个字符.( )

递归是指_____________________________
CHKK 2004-10-17
  • 打赏
  • 举报
回复
.....
o1n 2004-10-16
  • 打赏
  • 举报
回复
过了前十位还有分吗?
我新来的,学习一下.
挺拔的劲松 2004-10-16
  • 打赏
  • 举报
回复
大家最好把正确答案也贴出来~~~~~~
江语 2004-10-15
  • 打赏
  • 举报
回复
BlueBeer(1win)
给的题好爽,偶考试的时候老师专出这样题!!
chenyu5188 2004-10-15
  • 打赏
  • 举报
回复
UP
51365133 2004-10-15
  • 打赏
  • 举报
回复
●类比二分搜索算法,设计k分搜索算法(k为大于2的整数)如下:首先检查n/k处(n为被搜索集合的元素个数)的元素是否等于要搜索的值,然后检查2n/k处的元素,…,这样,或者找到要搜索的元素,或者把集合缩小到原来的1/k;如果未找到要搜索的元素,则继续在得到的集合上进行k分搜索;如此进行,直到找到要搜索的元素或搜索失败。此k分搜索算法在最坏情况下搜索成功的时间复杂度为__(64)__,在最好情况下搜索失败的时间复杂度为__(65)__。
  (64) A. O(logn)  B. O(nlogn)  C. O(logkn)  D. O(nlogkn)
  (65) A. O(logn)  B. O(nlogn)  C. O(logkn)  D. O(nlogkn)
  ●__(66)__data effectively is crucial for success in today's competitive environment. Managers must know how to use a variety of tools. Integrated data takes information from different sources and puts it together in a meaningful and useful way. One of the difficulties of this is the __(67)__ in hardware and software.__(68)__ integration uses a base document that contains copies of other objects.__(69)__ integration uses a base document that contains the current or most recent version of the source document it contains.
  __(70)__ provides an overview of the program written in "plain". English, without the
computer syntax.
  (66) A. Generalizing B. Sharing      C. General-using D. Globalizing
  (67) A. similarity  B. interoperability  C. diversity   D. interaction
  (68) A. Simulated   B. Duplicated     C. Dynamic    D. Static
  (69) A. Linked    B. Pointed     C. Dynamic    D. Static
  (70) A. High-level language B. Decision tree
    C. Pseudocode      D. Flowchart

  ●Traditional structured analysis techniques focus upon the flow of __(71)__ within a
system. Object-oriented analysis emphasizes the building of real-world models. It examines
requirements from the perspective of the classes and objects found in the vocabulary of
the __(72)__ domain.
  Traditional system design method emphasizes the proper and effective structure of a
complex system. Object-oriented design method encompasses the process of object-oriented
decomposition and a __(73)__ for depicting both logical and physical as well as static and
dynamic models of the system under design.
  Object-oriented programming is a method of implementation in which programs are organized
as cooperative collections of objects, each of which represents an __(74)__ of some class, and whose classes are all members of a hierarchy of classes united via __(75)__ relationships.
  (71) A. control  B. program   C. data   D. reference
  (72) A. problem  B. solution   C. data   D. program
  (73) A. mark    B. picture   C. symbol  D. notation
  (74) A. instance  B. example   C. existence D. implementation
  (75) A. control  B. inheritance C. inference D. connection


51365133 2004-10-15
  • 打赏
  • 举报
回复
●设集合Z26{0,1,…,25}, 乘法密码的加密函数为Ek:Z26→Z26,Zki=(ki)mod 26,密钥k∈Z26-{0),则加密函数K7(i)=(7i)mod 26是一个__(63)__函数。
  (63)A.单射但非满射 B.满射但非单射 C.非单射且非满射 D.双射
BlueBeer 2004-10-15
  • 打赏
  • 举报
回复
写出运行结果
1) 1 Or 2 Or 3 Or 4 Or 5
2) 9=8=7=6=5=4=3=2=1=0=-1
3) 7.5 Mod 2.5
4) 1 Eqv 2
5) Not 1
6) 1.23456@ + 2.34567!
7) Typename(1.0)
8) Typename(True + False)
9) Instr(1,"Hello","")
10) "呵呵" Like "呵"
flyingscv 2004-10-15
  • 打赏
  • 举报
回复
第8
helanshan 2004-10-15
  • 打赏
  • 举报
回复
1.函数CInt(-3.5),Int(-3,5),Fix(-3,5)的值分别是( )。

  A.-3 ,-4 , -3    B.-4 , -4 ,-3    C.-3 , -4 , -4     D.-4, -3 , -3
2.设整形变量a、b 的当前取值分别为200与20,以下赋值与句中不能正确执行的是。

  A.Text=a/b*a            B. Text1 = a*a/b
  C. Text1 = “200”*a/b      D. Text1 = A & b & a
3.执行Command1_Click实践过程后,显示在窗体上的第一行内容是    ,第二行内容是    ,第三行内容是    。

  Private Sub Command1_Click()
  Dim i As Integer, s As String, k As Integer
    s = "TUPMOC": k = Len(s)
  For i = 1 To k / 2
    Mid(s, i, k - 2 * (i–1)) = Mid(s, k + 1 - i, 1) & Mid(s, i + 1, k - 2 * i) & Mid(s, i, 1)
  Print s
  Next i
  End Sub
777dragon 2004-10-15
  • 打赏
  • 举报
回复
3.Visaul Basic的缩写是__________?

寒~~
777dragon 2004-10-15
  • 打赏
  • 举报
回复
楼上的不错啊~~ 偶就只能BT (-____-#)|||

1.VB是以下哪个的缩写?
A.Visaul Basic B.Virgin Bachelor

2.VB是否为Visaul Basic的缩写?
A.Yes B.No

3.VB的缩写是__________?
soupeven 2004-10-15
  • 打赏
  • 举报
回复
以下是六题!!!!!!!!!


1 哪个属性决定 Listview 控件中项的外观。

Display
Show
View
Arrange

2. MSSFlexgrid 的 Col、Row 属性在设计阶段可用。

正确
错误

3. 哪个文件需要添加到应用程序的 ListView 控件中?

MSCOMATL.OCX
MSCOM32.OCX
MSCOMCTL.OCX
MSLISTCTL.OCX

4. 在 ListView 控件中,哪个属性提供对 ColumnHeader 对象集合的引用?

ListView1.ColumnHeaders()
ListView1.ColumnHeaders
ListView1.ColHeaders()
ListView1.ColumnHeaders(Index)

5. 如何将 DataSource 指定到 MSFlexgrid。

MSFlexgrid.DataSource = ADODC1
MSFlexgrid.DataSource = "Select * from authors "
Set MSFlexgrid.DataSource = MyDataDource Class
All of the above

6. MSFlexgrid 的 Compare 属性何时触发?

Sort 属性的值更改时。
Compare 属性为 true 时。
EnterCell 事件之后。
以上都不是。

Andy__Huang 2004-10-15
  • 打赏
  • 举报
回复
VB與VB.net有什么區別﹖
yigepure 2004-10-15
  • 打赏
  • 举报
回复
a
yes
微软
fxyfx 2004-10-15
  • 打赏
  • 举报
回复
1、vb6.0是哪个公司做的?A:微软 B:IBM

2、vb6.0是微软做的吗?

3、vb6.0是_____公司做的?

7,763

社区成员

发帖
与我相关
我的任务
社区描述
VB 基础类
社区管理员
  • VB基础类社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧