Windows Server 2003 IIS and Scripting interview questions

  1. What is presentation layer responsible for in the OSI model? The presentation layer establishes the data format prior to passing it along to the network application’s interface. TCP/IP networks perform this task at the application layer.
  2. Does Windows Server 2003 support IPv6? Yes, run ipv6.exe from command line to disable it.
  3. Can Windows Server 2003 function as a bridge? Yes, and it’s a new feature for the 2003 product. You can combine several networks and devices connected via several adapters by enabling IP routing.

Windows Server 2003 IIS and Scripting interview questions II

  1. What’s the role of http.sys in IIS? It is the point of contact for all incoming HTTP requests. It listens for requests and queues them until they are all processed, no more queues are available, or the Web server is shut down.
  2. Where’s ASP cache located on IIS 6.0? On disk, as opposed to memory, as it used to be in IIS 5.
  3. What is socket pooling? Non-blocking socket usage, introduced in IIS 6.0. More than one application can use a given socket.

Windows Server 2003 IIS and Scripting interview questions III

  1. Which characters should be enclosed in quotes when searching the index? &, @, $, #, ^, ( ), and |.
  2. How would you search for C++? Just enter C++, since + is not a special character (and neither is C).
  3. What about Barnes&Noble? Should be searched for as Barnes’&’Noble.
  4. Are the searches case-sensitive? No.
  5. What’s the order of precedence of Boolean operators in Microsoft Windows 2003 Server Indexing Service? NOT, AND, NEAR, OR.

Microsoft Win32 Interview Question

  1. Tell the differences between Windows 95 and Windows NT? Lack of Unicode implementation for most of the functions of Win95. Different extended error codes. Different number window and menu handles. Windows 95 implements some window management features in 16 bits. Windows 95 uses 16-bit world coordinate system and the coordinates restricted to 32K. Deletion of drawing objects is different. Windows 95 does not implement print monitor DLLs of Windows NT. Differences in registry. Windows 95 does not support multiprocessor computers. NT implementation of scheduler is quite different. Different driver models. Win95 was built with back-compatibility in mind and ill-behaving 16-bit process may easily corrupt the system. Win95 starts from real DOS, while WinNT uses DOS emulation when one needs a DOS. Win95’s FAT is built over 16-bit win3.1 FAT (not FAT32!, actually, Win95’s FAT contains two FATs).

Microsoft Win32 Interview Questions

  1. What types of threads are supported by MFC framework? A: Working thread and windows thread. Working thread usually does not have a user interface and easier to use. Windows thread has an user interface and usually used to improve responsiveness of the user input. Message Map
  2. When ON_UPDATE_COMMAND_UI is called? (message may vary) A: When a user of your application pulls down a menu, each menu item needs to know whether it should be displayed as enabled or disabled. The target of a menu command provides this information by implementing an ON_UPDATE_COMMAND_UI handler.

Pages (98): « First ... « 7 8 9 [10] 11 12 13 » ... Last »