niusouti.com
更多“在Visual Studio.NET窗口,()窗口显示了当前Visual Studio解决方案的树型结构。”相关问题
  • 第1题:

    在界面设计时,双击窗体中的对象后,Visual Basic将显示的窗口是( )。

    A、立即窗口

    B、属性窗口

    C、代码窗口

    D、工程资源管理器窗口


    参考答案:C

  • 第2题:

    在Visual Basic的立即窗口内输入以下语句:X=97 ?Chr$(X)在窗口中显示的结果是______。

    在Visual Basic的立即窗口内输入以下语句:

    X=97 <CR>

    ?Chr$(X) <CR>

    在窗口中显示的结果是______。


    正确答案:a
    a 解析:Chr$()是求ASCII字符的函数,格式是Chr$(表达式),其中“表达式”应该是合法的ASCII码值,Chr$()函数把“表达式”的值转换为相应的ASCII字符。本题中X=97对应的ASCII码是字符a,所以显示的结果应该是a。

  • 第3题:

    在Visual FoxPro的程序调试器中,用于显示所有内存变量、数组、对象情况的窗口是()。

    • A、局部窗口
    • B、监视窗口
    • C、调用堆栈窗口
    • D、跟踪窗口

    正确答案:A

  • 第4题:

    双击窗体中的对象后,Visual Basic将显示的窗口是()

    • A、项目(工程)窗口
    • B、工具箱
    • C、代码窗口
    • D、属性窗口

    正确答案:C

  • 第5题:

    在Visual Studio.NET窗口,()窗口显示了当前Visual Studio解决方案的树型结构。

    • A、类视图
    • B、解决方案资源管理器
    • C、资源视图
    • D、属性

    正确答案:B

  • 第6题:

    在Visual Studio.Net窗口中,()窗口提供了连接到本地或远程计算机上数据库并进行管理的功能。

    • A、工具箱
    • B、资源视图
    • C、解决方案资源管理器
    • D、服务器资源管理器

    正确答案:D

  • 第7题:

    Visual Studio.Net开发平台是()公司提供的.NET应用程序集成开发工具。

    • A、Borland
    • B、Microsoft
    • C、Intel
    • D、IBM

    正确答案:B

  • 第8题:

    You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.  You host the application on a server named ContosoTest that runs Microsoft IIS 6.0. You set up remote  | English | Chinese | Japan | Korean | - 127 - Test Information Co., Ltd. All rights reserved. debugging on the ContosoTest server.  You need to debug the application remotely from another computer named ContosoDev. What should you do?()

    • A、Attach Microsoft Visual Studio.NET to the w3wp.exe process.
    • B、Attach Microsoft Visual Studio.NET to the inetinfo.exe process.
    • C、Attach Microsoft Visual Studio.NET to the Msvsmon.exe process.
    • D、Attach Microsoft Visual Studio.NET to the WebDev.WebServer.exe process.

    正确答案:A

  • 第9题:

    单选题
    You are employed as a network administrator at Certkiller.com. You are in the process of creatingan Asp.Net application using Microsoft .NET Framework v3.5.  The application is hosted on a server named CERTKILLER-SR01. CERTKILLER-SR01 isconfigured to run Microsoft IIS 6.0. You receive several requests from management to set upCERTKILLER-SR01 for remote debugging. You need to make use of CERTKILLER-WS01 inorder to debug the application remotely.  What should you do?()
    A

    This can be accomplished by attaching Microsoft Visual Studio.NET to the inetinfo.exe process.

    B

    This can be accomplished by attaching Microsoft Visual Studio.NET to the Msvsmon.exeprocess.

    C

    This can be accomplished by attaching Microsoft Visual Studio.NET to theWebDev.WebServer.exe process.

    D

    This can be accomplished by attaching Microsoft Visual Studio.NET to the w3wp.exe process.


    正确答案: C
    解析: 暂无解析

  • 第10题:

    单选题
    在visual studio.Net窗口中,在()窗口中可以浏览与当前项目相关的菜单`字符串表,对话框等信息.
    A

    解决方案资源管理器

    B

    类视图

    C

    资源视图

    D

    属性


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    在Visual Studio.Net窗口中,()窗口提供了连接到本地或远程计算机上数据库并进行管理的功能。
    A

    工具箱

    B

    资源视图

    C

    解决方案资源管理器

    D

    服务器资源管理器


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    在Visual Studio.NET窗口中,在()窗口中可以察看当前项目的类和类型的层次信息。
    A

    解决方案资源管理器

    B

    类视图

    C

    资源视图

    D

    属性


    正确答案: C
    解析: 暂无解析

  • 第13题:

    在Visual Basic的集成开发环境中创建 Visual Basic应用程序时,除了工具箱窗口、窗体设计窗口、属性窗口外,必不可少的窗口是( )。

    A. 窗体布局窗口

    B. 立即窗口

    C. 代码窗口

    D. 监视窗口


    正确答案:C

  • 第14题:

    在Visual:Basic的立即窗口内输入以下语句:X=65 Print Chr$(x)在窗口中显示的结果是A.65B

    在Visual:Basic的立即窗口内输入以下语句: X=65 <CR> Print Chr$(x) <CR> 在窗口中显示的结果是

    A.65

    B.A

    C.a

    D.x


    正确答案:B
    解析:[命题目的] 考查考生对转换函数Chr$()的使用情况。
      [解题要点] Chr$()是求ASCII字符的函数,格式是Chr$(表达式),其中“表达式”应该是合法的ASCII码值,Chr$()函数把“表达式”的值转换为相应的ASCII字符。本题中X=65对应的ASCII码是字符A,所以显示的结果应该是A。
      [错解分析] Chr$(KeyCode)转换函数中的KeyCode参数值是一个数值型数据,该函数返回值是—个字符串型数据。
      [考点链接] 转换函数的应用。

  • 第15题:

    在Visual Studio.NET窗口中,在()窗口中可以察看当前项目的类和类型的层次信息。

    • A、解决方案资源管理器
    • B、类视图
    • C、资源视图
    • D、属性

    正确答案:B

  • 第16题:

    在命令窗口中输入()命令,主屏幕上将显示"Visual Foxpro6.0".

    • A、Visual Foxpro6.0回车
    • B、?Visual Foxpro6.0回车
    • C、?{Visual Foxpro6.0}回车
    • D、?"Visual Foxpro6.0"回车

    正确答案:D

  • 第17题:

    下列哪一项正确描述了Visual Studio.NET与.NET Framework之间的关系()。

    • A、Visual Studio.NET与.NET Framework之间没有关系
    • B、可以使用Visual Studio.NETIDE或者简单的文本编辑器创建应用程序,应用程序运行时需要使用.NET Framework
    • C、开发应用程序时需要.NET Framework,但是在运行Visual Studio.NET创建的应用程序时不需要它
    • D、都不对

    正确答案:D

  • 第18题:

    在visual studio.Net窗口中,在()窗口中可以浏览与当前项目相关的菜单`字符串表,对话框等信息.

    • A、解决方案资源管理器
    • B、类视图
    • C、资源视图
    • D、属性

    正确答案:C

  • 第19题:

    You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You host the application on a server named ContosoTest that runs Microsoft IIS 6.0. You set up remote debugging on the ContosoTest server.  You need to debug the application remotely from another computer named ContosoDev.  What should you do?()

    • A、Attach Microsoft Visual Studio.NET to the w3wp.exe process. 
    • B、Attach Microsoft Visual Studio.NET to the inetinfo.exe process. 
    • C、Attach Microsoft Visual Studio.NET to the Msvsmon.exe process. 
    • D、Attach Microsoft Visual Studio.NET to the WebDev.WebServer.exe process.

    正确答案:A

  • 第20题:

    You are employed as a network administrator at Certkiller.com. You are in the process of creatingan Asp.Net application using Microsoft .NET Framework v3.5.  The application is hosted on a server named CERTKILLER-SR01. CERTKILLER-SR01 isconfigured to run Microsoft IIS 6.0. You receive several requests from management to set upCERTKILLER-SR01 for remote debugging. You need to make use of CERTKILLER-WS01 inorder to debug the application remotely.  What should you do?()

    • A、This can be accomplished by attaching Microsoft Visual Studio.NET to the inetinfo.exe process.
    • B、This can be accomplished by attaching Microsoft Visual Studio.NET to the Msvsmon.exeprocess.
    • C、This can be accomplished by attaching Microsoft Visual Studio.NET to theWebDev.WebServer.exe process.
    • D、This can be accomplished by attaching Microsoft Visual Studio.NET to the w3wp.exe process.

    正确答案:D

  • 第21题:

    填空题
    在Visual Studio.NET窗口,()窗口显示了当前Visual Studio解决方案的树型结构。

    正确答案: 解决方案资源管理器
    解析: 暂无解析

  • 第22题:

    单选题
    下列哪一项正确描述了Visual Studio.NET与.NET Framework之间的关系()。
    A

    Visual Studio.NET与.NET Framework之间没有关系

    B

    可以使用Visual Studio.NETIDE或者简单的文本编辑器创建应用程序,应用程序运行时需要使用.NET Framework

    C

    开发应用程序时需要.NET Framework,但是在运行Visual Studio.NET创建的应用程序时不需要它

    D

    都不对


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    在Visual Studio.NET窗口,()窗口显示了当前Visual Studio解决方案的树型结构。
    A

    类视图

    B

    解决方案资源管理器

    C

    资源视图

    D

    属性


    正确答案: A
    解析: 暂无解析