您的当前位置:首页gui题库(有答案,英汉双语,表明书页)

gui题库(有答案,英汉双语,表明书页)

2022-08-12 来源:爱问旅游网
.dll扩展名代表?(.dll estensions?)p1.12 静态链接库 动态链接库(dynamic linc libraries) 内置函数 编译器 哪种窗口允许查看服务器的资源?(Which windows allows to view the resources of the servers?) p2.24 Solution Explorer 窗口 Properties 窗口 Server Explorer 窗口(the Server Explorer windows) Output 窗口 CLR是什么?p2.4 公共语言运行库(Common Language Runtime) 组件 对象模型 中间语言 当用户将对象拖动到控件边界上时会触发什么事件?(What will trigger the event when the user object and drag to the border) p3.44 ItemDrag DragOver DragEnter DragLeave A. Clipboard是永久存储区。(Clipboard is Permanent storage area) P3.45 B. 可以在设计时或运行时添加控件。(Creating Event Handles at Run Time or Design) P3.34 A正确,B不正确 A不正确,B正确 A,B都错误 A,B都正确 在窗体加载事件过程中动态加载一个按钮控件的正确代码是下列哪一段?(to dynamically load a button control during the form load event) p3.34 Button btn= new Button(); btn.Add(); Button btn= new Button(); this.Add(btn); Button btn= new Button(); this.Button.Add(btn); Button btn= new Button(); this.controls.Add(btn); 在设计时ComboBox控件的哪种属性不可用?(in the design of ComboBox control which properties are not available) p3.22 Sorted Items SelectAll SelectionMode

哪个属性确定是否可以移动控件或调整控件的大小?(What property determine whether can move or resize controls controls) Location Size Locked Visible StaeusStrip控件包含4种控件(control),这些控件是:p4.9 StatusButton, StatusLabel, ProgressBar, DropDownButton StatusButton, StatusLabel, ProgressGrid, DropDownButton SplitButton, StatusLabel, ProgressBar, DropDownButton SplitButton, StatusLabel, ProgressBar, DropDownLabel 以下描述错误的是 SplitButton是StatusStrip的子控件p4.9 LayoutStyle属性指定StatusStrip控件的布局方向p4.9 TextDirection属性指定ToolStrip控件指定项上的文本绘制方向p5.43 Value属性是指定ProgressBar控件的当前值递增的数量( Specifies the amount to increment the current value of the control by when the PerformStep() method is called) p4.10 实现只能输入整型数的验证功能的代码是下列哪一段?(Implementation only input integer validation code) p4.16 private void textBox1_Validating(object sender, CancelEventArgs e) { try { int x = Int32.Parse(textBox1.Text); errorProvider1.SetError(textBox1, \"\"); } catch { errorProvider1.SetError(textBox1, \"Not an integer value.\"); } } private void textBox1_Validating(object sender, CancelEventArgs e) { try { int x = Int32.ToString(textBox1.Text); errorProvider1.SetError(textBox1, \"\"); } catch { errorProvider1.SetError(textBox1, \"Not an integer value.\"); } } private void textBox1_Validating(object sender, CancelEventArgs e) { try { int x = Int32.Parse(textBox1.Text); errorProvider1.SetError(textBox1); } catch { errorProvider1.SetError(textBox1, \"Not an integer value.\"); } } private void textBox1_Validating(object sender, CancelEventArgs e) { try { int x = Int32. ToString (textBox1.Text); errorProvider1.SetError(textBox1); } catch { errorProvider1.SetError(textBox1, \"Not an integer value.\"); } } 以下对Midlayout的Cascade值所作的描述正确的是p5.25 所有MDI子图标都排列在MDI父窗口的客户区。 所有MDI子图标都层叠排列在MDI父窗口的客户区。(All MDI child windows are cascaded within the client region of the MDI parent form) 所有MDI子图标都水平层叠在MDI父窗口的客户区。 所有MDI子图标都垂直层叠在MDI父窗口的客户区。 FileDialog类是从_________类继承而来的一个抽象类(The FileDialog class is an abstract class that is inherited from the _________ class) p5.7 LocalDialog CommonDialog FolderDialog CertenDialog PrintPreviewControl可以创建一个什么窗口?p6.14 打印预览页面(print preview interface) 打印控制页面 打印共享页面 打印用户页面 以下哪个不是创建水晶报表方法?(Crystal Reports) p6.27 手动(Manually) 自动(Automatic) 使用标准报表向导(Using Standard Report Wizard) 使用现有报表(From an existing report) CrystalReportViewer控件对水晶报表有什么作用?p6.54 交互 浏览 触发 提升(Hosting) 哪个属性用于跟踪用户在打印对话框中点击的按钮? TAG属性 Document属性 Filter属性 DialogResult属性 要将水晶报表中的数据显示在紧凑的行、列和汇总字段中,需要向报表中插入什么对象?(When data is to be displayed in the form of compact rows,columns,and summary fields ,) p6.49 Charts Cross-tab objects ReportLabels Date and Time 使用推模式(Push Model)就可以对水晶报表能够访问数据进行什么处理?p6.26 提取 连接 过滤(filter) 共享 如何将CrystalReportViewer与报表捆绑起来,在以下哪个属性中修改?(The Crystal Reports is bound to the CrystalReportViewer control, Modify?) p6.56 Tag属性 DataBindings属性 ReportSource属性 SelectionFormula属性 记录选定公式在资源管理器中的哪个字段中修改? 参数字段 组名字段 特殊字段 公式字段 对交叉表(Cross-Tab)对象描述正确的是哪个?p6.49 交叉表对象只允许读操作,其中列的宽度不必相同 交叉表对象允许读写操作,其中列的宽度必须相同 交叉表对象允许读操作,其中列的宽度必须相同(Cross-tab objects are read-only.Width of all columns in a cross-tab must be same) 交叉表对象允许读写操作,其中列的宽度不必相同 CrystalReportViewer控件的ReportSource属性位于属性窗口的哪个分组下? Data Layout Design Misc 水晶报表中的实际数据显示在报表的哪个部分?(displays the actual values in the report) p6.37 Report Footer Report Header Page Header Details 哪个属性用于获取或设置页面的显示尺寸?(how large the pages will appear) p6.15 AutoZoom Document Zoom AntiAlias PrintDocument对象的哪个事件用于指定将要打印的文本? QueryPageSettings EndPrint BeginPrint PrintPage 下面哪个打印许可级别对应得打印功能是只允许通过限制更为严格的对话框打印?(Provides printing only from a more-restricted dialog box) p6.15 AllPrinting DefaultPrinting SafePrinting NoPrinting 哪个属性用于指定用户界面元素和使用方式,并将其报告给无障碍帮助?(Specifies the use of an element in the user interface and reports it to accessibility aids) p7.4 AccessibleDescription AccessibleRole AccessibleName AccessibleStates 以下哪个不是创建国际化应用程序需要考虑的因素(Factors related to creating international applications)?p7.7 语言因素(Language Issues) 格式因素(Formatting Issues) 用户界面因素(User-Interface Issues) 与字符串相关的因素(String-Relaated Issues) 跨平台因素(Cross platform Issues) 下面那个代码片段为CultureInfo类创建了名为my_CI的新实例?p7.12 using System.Globalization; CultureInfo my_CI =new CultureInfo(“DE-de”); using System.Globalization; CultureInfo my_CI =new CultureInfo(“de-DE”); using System.Configuration; CultureInfo my_CI =new CultureInfo(“DE-de”); using System. Configuration; CultureInfo my_CI =new CultureInfo(“de-DE”); CultureInfo类的哪个属性用于返回该类的实例,用于表示具体文化资源代表的文化?(represents the culture for culture-specific resources) p7.10 GetCultures CurrentCulture CurrentUICulture GetCurrentCultures 以下对于统一字符编码字符集(Unicode)描述错误的是?p7.14 Unicode字符集支持所有主要的国际语言。(Unicode supports character sets of all the major international languages) 每个字符用1个字节表示。(Every character is represented using 0ne bytes) 字符用Unicode表示,文件的大小将增加一倍。(When character are representer in Unicode,the file size is doubled) 世界上很多计算机系统不支持Unicode。(Many computer systems around the world do not support Unicode) 使用Encoding.Convert()方法需要使用三个参数(three parameters),以下哪个不是?p7.15 源编码方式(a source encoding) 目标编码方式(a target encoding) 存放需要转换的数据字符数组(an array of strings,which represent the data to be converted) 存放需要转换的数据字节数组(an array of bytes,which represent the data to be converted) 以下哪个不是RightToLeft property属性的值?p7.16 Yes No Inherit Outherit

哪个结构体提供一些输入识别方法对于拉丁文字母和非拉丁文字母是通用的?(Which structure exposes some validation methods that can be used to determine the category of a non-Latin alphabet input in the same way as a Latin alphabet input) p7.17 Char String byte object System.Globalization 命名空间中的哪个类不可用于修改不同文化中数值的显示方式?(can’t be used to modify the display of culture-specific values) p7.17 DateTimeFormatInfo TextInfo Calendar NumberFormatInfo 以下哪个命令提示工具用于将文本格式的资源文件转换为二进制格式?(Which command prompt utility is used to convert a resource file from the text format into the binary format) p7.26 Resource File Cenerator(ResGen.exe)工具 Soapsude(Soapsuds.exe)工具 PEVerify(Peverify.exe)工具 CorFlags(CorFlags.exe)转换工具 编辑好的帮助工程文件的扩展名是什么?(What is the extension of a compiled help project file) p7.31 .html .edf .chm .bat HelpNavigator 属性的哪个值用于显示指定主题的索引?( display the index for a specified topic) p7.58 Index AssociateIndex KeywordIndex Topic 下面哪个选项为汉语、中国区的文化代码?(Chinese language,China region) p7.9 en-CA fr-FR zh-CN de-DE 控件的_______属性用于指定无障碍帮助识别控件时使用的名称。(accessibility aids identify the control) P7.4 Name AccessibleName AccessibleAidName AccessibleIdentity

下面那个选项涉及到针对具体文化定制应用程序?(what is the process of customizing an application for a given culture) p7.19 全球化 本地化(Localizing) 针对具体文化的格式编排 配置 要实现从右至左显示,需要设置窗体的那个属性?(Implementing Right-to-Left dispaly) p7.16 RightToLeft Direction Display TextAlign 如下哪个方法用于将当前的编码转换为Unicode 编码?(To convert an existing encoding to Unicode) p7.15 Encoding.GetEncoding Encoding.ToUnicode Encoding.Convert Encoding.Translate A:HelpProvider控件用于将帮助文件与应用程序关联起来。(The help file an be associated with application with the help of theHelpProvider) B:HelpNavigator属性来指定相关联的帮助文件。P7.58 A和B都正确 A正确B不正确 A不正确B正确 A和B都不正确 以下哪一项不是.Net编程环境中的构造器(Constructor)?p8.12 Public构造器 Internal构造器 Private构造器 Protected构造器 以下不属于.Net Framework支持的三种用户自定义控件的是:(The .NET Framework provides three types of user-defined controls) p8.18 用户控件(User controls) 系统默认控件(System default control) 自定义控件(Custom controls) 从现有控件继承而得的控件(Controls inherited from an existing control) 创建用户控件的步骤如下:(To create a user control, you need to perform the following steps) p8.18 1.选择Start→All Programs→Microsoft Visual Studio 2005→Microsoft Visual Studio 2005,将显示Start Page - Microsoft Visual Studio窗口; 2.选择File→New→Project,将出现New Projecr对话框; 3.从Project Types窗格中选择Visual C#工程类型,然后从Templates窗格中选择Windows Control Library; a.在Name文本框中输入新工程的名称;(Type the name of the new project in the Name text box) b.在Location组合框中,在为新建的工程设定路径;(Specify the location where the new project is to be create in the Location combo box) 4. 单击OK按钮。(Click the OK button) 5.为用户控件设计用户界面;(Design the user interface of the user control) 6.在代码窗口中为控件编写代码,以便实现相应的功能。在代码窗口中,你可以通过编写代码为用户控件创建属性,代码中应含有添加的属性的Get和Set方法。(Write code in the code windows to add function\\ality to the control.You can create properties for the user control by adding code in the code windows.The code will consist of the Get and SET methods of the added property) 7.通过Build菜单创建应用程序。(Build the application by using the Build menu) 1.选择Start→All Programs→Microsoft Visual Studio 2005→Microsoft Visual Studio 2005,将显示Start Page - Microsoft Visual Studio窗口; 2.选择File→New→Project,将出现New Projecr对话框; 3.从Project Types窗格中选择Visual C#工程类型,然后从Templates窗格中选择Windows Control Library; a.在Name文本框中输入新工程的名称; b.在Location组合框中,在为新建的工程设定路径; 4. 单击OK按钮。 5.在代码窗口中为控件编写代码,以便实现相应的功能。在代码窗口中,你可以通过编写代码为用户控件创建属性,代码中应含有添加的属性的Get和Set方法; 6.为用户控件设计用户界面。 7.通过Build菜单创建应用程序。 1.选择Start→All Programs→Microsoft Visual Studio 2005→Microsoft Visual Studio 2005,将显示Start Page - Microsoft Visual Studio窗口; 2.选择File→New→Project,将出现New Projecr对话框; 3. 单击OK按钮。 4.从Project Types窗格中选择Visual C#工程类型,然后从Templates窗格中选择Windows Control Library; a.在Name文本框中输入新工程的名称; b.在Location组合框中,在为新建的工程设定路径; 5.为用户控件设计用户界面; 6.在代码窗口中为控件编写代码,以便实现相应的功能。在代码窗口中,你可以通过编写代码为用户控件创建属性,代码中应含有添加的属性的Get和Set方法。 7.通过Build菜单创建应用程序。 1.选择Start→All Programs→Microsoft Visual Studio 2005→Microsoft Visual Studio 2005,将显示Start Page - Microsoft Visual Studio窗口; 2.选择File→New→Project,将出现New Projecr对话框; 3.在代码窗口中为控件编写代码,以便实现相应的功能。在代码窗口中,你可以通过编写代码为用户控件创建属性,代码中应含有添加的属性的Get和Set方法; 4.单击OK按钮。 5.为用户控件设计用户界面; 6.从Project Types窗格中选择Visual C#工程类型,然后从Templates窗格中选择Windows Control Library; a.在Name文本框中输入新工程的名称; b.在Location组合框中,在为新建的工程设定路径; 7.通过Build菜单创建应用程序。 .NET组件是扩展名为____的.NET程序集。P8.21 .EXE .DLL .CAB .INI

如果某控件继承了现有的控件,要修改其界面需要覆盖那个方法?(Name the method that has to be overridden to change the appearance of the control that is inherited from an existing control) P8.21 OnPaint方法 InPaint方法 OutPaint方法 UnderPaint方法 组件可以分为以下类型:(Components are of -- types) p8.3 内置组件、外置组件 外置组件、用户自定义组件 用户自定义组件、进程内组件 内置组件(Built-in components)、用户自定义组件(User-defined components) 在同步编程中,每当调用一个函数时程序在继续执行下一行代码之前会暂停执行,直到完成该函数。 这种类型的编程有以下哪个缺点?(In synchronous programming,each time a function is called,program execution waits until that fuanction is completed,before continuing with the next line of code.Such type of programming has a drawback) p9.3 如果完成函数需要花费较长的时间,可能产生数据冗余。 如果完成函数需要花费较长的时间,用户则无法完成其他任何任务。(If a function is taking a long time to complete,the user is unable to perform any other task) 如果完成函数需要花费较长的时间,会产生溢出错误。 如果完成函数需要花费较长的时间,用户则无法完成其他部分任务。 Syatem.Threading命名空间提供的类有:p9.7 ThreadPool类 Monitor类 Mutex类 ReaderWriterLock类 Simaple类 ThreadPool类 Incharge类 Mutex类 ReaderWriterLock类 Semaphore类 ThreadPool类 Monitor类 Mutex类 WriterReaderLock类 Semaphore类 ThreadPool类 Monitor类 Mutex类 ReaderWriterLock类 Semaphore类 程序集可以实现自解释,它不包含以下哪个元素:p10.3 Manifest文件 Microsoft MSIL 代码 Mainfresh文件 资源 从大的方面讲,程序集的分类标准包括:p10.3 元素的组合方式、可访问性 可访问性、程序的组合方式 程序的组合方式、元素的可访问性、 元素的可访问性、组合方式 以下不属于将程序集添加到GAC中的方法的是p10.6 使用全局程序集缓存工具Gacutil.exe 使用Windows自带的安装程序 使用与GAC兼容的Windows Installer 使用Windows的拖曳功能 gacutil命令不包以下哪个选项:p10.6 /e /l /I /u ____用与列举GAC中的程序集p10.6 /l /e /I /u

程序集的版本号不包括以下哪个部分?p10.7 主版本号 次版本号 内部版本号 外部版本号 安装程序不必具有以下哪项功能:p10.11 将所有必须的文件拷贝到目标计算机上 创建必要的注册表项 创建原文件备份 将文件存放在适当的文件夹中 Visual Studio .NET为部署工程提供了以下编辑器包括p10.14 文件系统编辑器 文件类型编辑器 启动条件编辑器 用户界面编辑器 自定义操作编辑器 文件操作编辑器 注册表编辑器 文件系统编辑器 启动类型编辑器 文件类型编辑器 自定义操作编辑器 注册表界面编辑器 应用文件系统编辑器无法实现的操作为::p10.17 添加特殊文件夹 创建必要的注册表项 添加子文件夹 添加或移除工程输出 应用注册表编辑器,无法实现以下哪个操作:p10.22 导出注册表备份 添加或删除注册表键 添加或删除注册表键的值 将现有的注册表文件导入注册表编辑器 _______存放着配置信息,如计算机使用的硬件组件p10.21-22 HKEY_CLASSES_ROOT HKEY_LOCAL_MACHINE HKEY_CURRENT_USER HKEY_CURRENT_CONFIG 用户界面编辑器中显示的对话框不包含以下哪个类型?p10.27 Start Progress Edit End 通过启动条件编辑器,可以添加的启动条件不包括p10.32-33 文件启动条件 注册表启动条件 IIS启动条件 应用程序启动条件 通过ClickOnce部署应用程序的步骤不包括以下哪一项p10.39 打开Visual Studio 2005,并打开工程 校对工程,校验编译错误 构建工程,确保正确编译 运行应用程序,确保其符合相应的规范 以下哪个不是配置文件的类型?p11.4 应用程序配置文件 数据配置文件 机器配置文件 安全配置文件 以下哪个不是配置文件的类型? 应用程序配置文件 数据配置文件 机器配置文件 安全配置文件 应用程序配置文件扩展名是? p11.5 xml ini log config 下面哪个元素用于说明应用程序支持的CLR版本?p11.9

因篇幅问题不能全部显示,请点此查看更多更全内容