<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date

In below sample code if we create a object of class2 which constructor will fire first
In below sample code if we create a object of class2 which constructor will fire first? Public Class Class1 Sub New() End Sub End Class Public Class class2 Inherits Class1 Sub New() End Sub End Class
2007-10-23, 8380👍, 0💬

What are the different accessibility levels defined in .NET
What are the different accessibility levels defined in .NET ? Following are the five levels of access modifiers :- ã Private : Only members of class have access. ã Protected :-All members in current class and in derived classes can access the variables. ã Friend (internal in C#) :- Only members...
2007-10-23, 8340👍, 0💬

What is triple constraint triangle in project management
What is triple constraint triangle in project management ? Project Management triangle is depicted as Cost, Schedule and scope.These three aspects form the sides of triangle and the customer is the center point.As customer is always concerned about Cost,Scope and Schedule, so in order to get custome...
2007-10-30, 8333👍, 0💬

What is Windows DNA architecture
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come to you. The Windows Distributed interNet Applications Architecture (DNA) is a Microsoft blueprint for robust, scalable, distributed business software. Windows DNA has evolved over time and was not pr...
2007-10-24, 8322👍, 0💬

What are unadjusted function points and how is it calculated?
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF + EI + EQ + EO. Below is the table referred for getting ILF, EIF, EI, EQ and EO.
2007-10-30, 8321👍, 0💬

How Large Can a Single Cookie Be
How Large Can a Single Cookie Be? - PHP Script Tips - Understanding and Managing Cookies How large can a single cookie be? The answer is depending what is the Web browser your visitor is using. Each browser has its own limit: Internet Explorere (IE): about 3904 bytes Mozilla FireFox: about 3136 byte...
2007-04-24, 8317👍, 0💬

How do I force the Dispose method to be called automatically , as clients can forget to call Dispose method
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose method? Call the Dispose method in Finalize method and in Dispose method suppress the finalize method using GC.SuppressFinalize. Below is the sample code of the pattern. This is the best way we do cle...
2007-10-23, 8311👍, 0💬

Can you explain why your project needed XML
Can you explain why your project needed XML? Remember XML was meant to exchange data between two entities as you can define your user friendly tags with ease. In real world scenarios XML is meant to exchange data. For instance you have two applications who want to exchange information. But because t...
2007-10-31, 8304👍, 0💬

How To Set Background to Transparent or Non-transparent
How To Set Background to Transparent or Non-transparent? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements If you want to set the background of a block element to be transparent or non-transparent, you can use the background-color style property as shown below: {background...
2007-05-11, 8297👍, 0💬

Who Developed HTML
Who Developed HTML? HTML was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser developed at NCSA. During the course of the 1990s it has blossomed with the explosive growth of the Web. Tim now holds the 3Com Founders chair at the Laboratory for Computer Scie...
2007-03-03, 8294👍, 0💬

What is a XML parser
What are the standard ways of parsing XML document? XML parser sits in between the XML document and the application who want to use the XML document. Parser exposes set of well defined interfaces which can be used by the application for adding, modifying and deleting the XML document contents. Now w...
2007-10-31, 8276👍, 0💬

Convert an integer or a float to a string
Does there exist any other function which can be used to convert an integer or a float to a string? Some implementations provide a nonstandard function called itoa(), which converts an integer to string. char *itoa(int value, char *string, int radix); DESCRIPTION - The itoa() function constructs a s...
2007-02-26, 8275👍, 0💬

Tag &lt;?= ... ?&gt; in PHP
What does a special set of tags &lt;?= and ?&gt; do in a PHP script page? &lt;?= expression ?&gt; allows you to output the value of the specified expression into the HTML document directly.
2006-09-01, 8254👍, 0💬

Can you explain duplex contracts in WCF
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the server service provides a reference call back Uri back to the client. So the client initiates a call using the proxy class and when server finishes its work it notifies the client using the callback c...
2007-11-04, 8173👍, 0💬

What's a HashTable
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array, but how many times you know the real value of index. Hashtable provides way of accessing the index using a user identified KEY value, thus removing the INDEX problem.
2021-03-07, 8159👍, 0💬

What is COM ?
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software development. It is a binary standard which is language independent. DCOM is a distributed extension of COM.
2010-01-12, 8145👍, 0💬

How do we assign page specific attributes
How do we assign page specific attributes ? Page attributes are specified using the @Page directive.
2018-01-23, 8134👍, 1💬

💬 2018-01-23 parvash: love

What are some advantages and disadvantages of Java Sockets
What are some advantages and disadvantages of Java Sockets? Advantages of Java Sockets: Sockets are flexible and sufficient. Efficient socket based programming can be easily implemented for general communications. Sockets cause low network traffic. Unlike HTML forms and CGI scripts that generate and...
2007-11-13, 8134👍, 0💬

System.setOut() - Setting Standard Console Output to
How could Java classes direct program messages to the system console, but error messages, say to a file? The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both connected to the system console. But...
2007-03-03, 8104👍, 0💬

Can you explain steps in function points
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, EIF, EI, EQ, RET, DET, FTR and use the rating tables. After you have counted all the elements you will get the unadjusted function points. Put rating values 0 to 5 to all 14 GSC. Adding total of all 1...
2007-10-30, 8093👍, 0💬

If XML does not have closing tag will it work
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a closing tag. For instance in the top if I remove &lt;/discount> tag that XML will not be understood by lot of application.
2007-10-31, 8084👍, 0💬

How To Call a Sub Procedure
How To Call a Sub Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions To call a sub procedure, just use the sub procedure name as a statement. Here is another example of calling a sub procedure: SQL> CREATE OR REPLACE PROCEDURE WELCOME AS 2 PROCEDURE WELCOME_PRINT(S CHAR)...
2007-04-25, 8077👍, 0💬

If we have two version of same assembly in GAC how do we make a
If we have two version of same assembly in GAC how do we make a choice ? OK first let’s try to understand what the interviewer is talking about. Let’s say you have made an application and its using a DLL which is present in GAC. Now for some reason you make second version of the same DLL and put it ...
2007-10-22, 8073👍, 0💬

What does address of operator do in background?
What does address of operator do in background? The AddressOf operator creates a delegate object to the BackgroundProcess method. A delegate within VB.NET is a type-safe, object-oriented function pointer. After the thread has been instantiated, you begin the execution of the code by calling the Star...
2009-03-06, 8052👍, 0💬

<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date