<< < 39 40 41 42 43 44 45 46 47 48 49 > >>   Sort: Date

What is a CLR?
.NET INTERVIEW QUESTIONS - What is a CLR? Full form of CLR is Common Language Runtime and it forms the heart of the .NET framework. All Languages have runtime and its the responsibility of the runtime to take care of the code execution of the program. For example VC++ has MSCRT40.DLL,VB6 has MSVBVM6...
2010-02-09, 5456👍, 0💬

Who is a stakeholder
Who is a stakeholder ? A stakeholder is anyone who has something to gain or lose as a result of the completion or failure of this project or phase Note:- It’s not only the end customer the stakeholder. Project managers, Project Lead, even programmers, testing department etc. are stake holders of pro...
2007-10-30, 5456👍, 0💬

What Are the Differences between NUMBER and BINARY_FLOAT
What Are the Differences between NUMBER and BINARY_FLOAT? - Oracle DBA FAQ - Understanding SQL Basics The main differences between NUMBER and BINARY_FLOAT are: NUMBER stores values as fixed-point numbers using 1 to 22 bytes. BINARY_FLOAT stores values as single precision floating-point numbers.
2007-04-24, 5455👍, 0💬

What Is Mutating Table
What Is Mutating Table? Mutating Table is a table that is currently being modified by an Insert, Update or Delete statement. Constraining Table is a table that a triggering statement might need to read either directly for a SQL statement or indirectly for a declarative Referential Integrity constrai...
2007-04-15, 5455👍, 0💬

C question
What is the difference between: myObj *x = new myObj[100]; delete x; and myObj *x = new myObj[100]; delete [] x;
2009-07-16, 5454👍, 0💬

How can we implement observer pattern in .NET
How can we implement observer pattern in .NET? Observer patterns can be implemented using “Delegates” and “Events”. I leave this to the readers to implement one sample code for observer patterns.
2007-10-24, 5453👍, 0💬

Who makes the Strut
Who makes the Strut? Struts is developed by by the Apache Software Foundation(ASF) as part of its Jakarta project, like Tomcat, Ant and Velocity. See Website http://struts.apache.org/.
2007-11-28, 5452👍, 0💬

What Is the Timeout Period on Session Values
What Is the Timeout Period on Session Values? - PHP Script Tips - Understanding and Using Sessions The PHP engine has no direct settings on session timeout period. But it has a session garbage collection mechanism that you can set to remove those special files containing session values. There are 3 ...
2007-04-18, 5452👍, 0💬

How can we fine tune the command object when we are expecting a single row
How can we fine tune the command object when we are expecting a single row ? Again CommandBehaviour enumeration provides two values SingleResult and SingleRow. If you are expecting a single value then pass “CommandBehaviour.SingleResult ”and the query is optimized accordingly, if you are expecting s...
2007-10-24, 5451👍, 0💬

What Are the Input Values of SELECT Tags
What Are the Input Values of SELECT Tags? - PHP Script Tips - Processing Web Forms SELECT tags are used in forms to provide dropdown lists. Entris in a dropdown list are defined by OPTION tags, which can provide input values in two ways: Implicit value - Provided as &lt;OPTION>input_value& ;lt...
2007-04-23, 5451👍, 0💬

Can you explain different software development life cycles - part I
Can you explain different software development life cycles ? Note:- This questions is asked to test that as a project manager do you have a know how of all the project life cycles.In PMP (Project management plan) you have to specify saying which software development model you will follow. Definitely...
2007-10-30, 5449👍, 0💬

How To Use "hidden" Input Fields
How To Use "hidden" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "hidden" input field is defined as &lt;input type="hidden" .../&gt;. "hidden" input fields can be used to create invisible fields with predefined input values hidden in the form. There are other ...
2007-05-12, 5449👍, 0💬

How To Count Groups Returned with the GROUP BY Clause
How To Count Groups Returned with the GROUP BY Clause? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you use the COUNT(*) function on groups returned with the GROUP BY clause, it will count the number of rows within each group, not the number of groups. If you want to count the num...
2007-04-19, 5449👍, 0💬

How To Build Hyper Link Indexes within the Same Document
How To Build Hyper Link Indexes within the Same Document? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs If you want build some hyper link indexes within the same document, you need use "a" elements to define some bookmarks, then use "a" elements to define hyper links that pointing to th...
2007-05-12, 5448👍, 0💬

How To Set Font Sizes to Relative Length Units
How To Set Font Sizes to Relative Length Units? - CSS Tutorials - Page Layout and Background Image Design Knowing that setting font sizes to absolute length units will cause problems on text sizes with different browser resolutions, you can set your font sizes to relative length units, like px (pixe...
2007-05-11, 5448👍, 0💬

Can we have multiple threads in one App domain
Can we have multiple threads in one App domain ? One or more threads run in an AppDomain. An AppDomain is a runtime representation of a logical process within a physical process. Each AppDomain is started with a single thread, but can create additional threads from any of its threads. Note :- All th...
2007-10-22, 5446👍, 0💬

What Are the Main Differences between Atom 1.0 and RSS 2.0
What Are the Main Differences between Atom 1.0 and RSS 2.0? - RSS FAQs - Atom Feed Introduction and File Generation Main differences between Atom 1.0 and RSS 2.0: Atom has separate "summary" and "content" elements, while RSS only has one "description" element. Atom standardizes auto-discovery in con...
2007-05-12, 5446👍, 0💬

What are the different locks in SQL SERVER
What are the different locks in SQL SERVER ? Depending on the transaction level six types of lock can be acquired on data Intent The intent lock shows the future intention of SQL Server's lock manager to acquire locks on a specific unit of data for a particular transaction. SQL Server uses intent lo...
2007-10-25, 5445👍, 0💬

How do we access viewstate value of this page in the next page
How do we access viewstate value of this page in the next page ? View state is page specific; it contains information about controls embedded on the particular page. ASP.NET 2.0 resolves this by embedding a hidden input field name, __POSTBACK . This field is embedded only when there is an IButtonCon...
2007-10-23, 5445👍, 0💬

What Is View
What Is View? - MySQL FAQs - Database Basics and Terminologies A view is a logical table defined by a query statement.
2007-05-10, 5445👍, 0💬

How To Create a Testing Table
How To Create a Testing Table? - Oracle DBA FAQ - Understanding SQL Transaction Management If you want to practice DML statements, you should create a testing table as shown in the script below: >cd (OracleXE home directory) >.\bin\sqlplus /nolog SQL> connect HR/fyicenter Connected. SQL> CREATE TABL...
2007-04-18, 5445👍, 0💬

Stoping Errors Displayed on JSP Pages
How do you restrict page errors display in the JSP page? You first set "Errorpage" attribute of PAGE directory to the name of the error page (ie Errorpage="error.jsp") in your jsp page. Then in the error jsp page set "isErrorpage=TRUE". When an error occur in your jsp page it will automatically call...
2007-04-03, 5445👍, 0💬

What Is MySQL
What Is MySQL? - MySQL FAQs - Downloading and Installing MySQL on Windows MySQL is an open source database management system developed by MySQL AB, http://www.mysql.com. MySQL has the following main features: Works on many different platforms. APIs for C, C++, Eiffel, Java, Perl, PHP, Python, Ruby, ...
2007-05-10, 5444👍, 0💬

How To Import One Table Back from a Dump File
How To Import One Table Back from a Dump File? - Oracle DBA FAQ - Loading and Exporting Data If you only want to import one table back to the database, you can use a dump file that was created by full export, schema export or a table export. The following tutorial exercise shows you how to import th...
2007-05-02, 5443👍, 0💬

<< < 39 40 41 42 43 44 45 46 47 48 49 > >>   Sort: Date