<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Date

What is the use of @ Register directives
What is the use of @ Register directives ? @Register directive informs the compiler of any custom server control added to the page.
2007-10-24, 5879👍, 0💬

How To Define a Bookmark
How To Define a Bookmark? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs A bookmark is a named reference point in a XHTML document. If a bookmark can be included in the URL that represents this document, the browser will automatically move the display window to the reference point as soo...
2007-05-12, 5878👍, 0💬

Which are the important namespaces during localization and globalization
Which are the important namespaces during localization and globalization? There are two most important namespaces: System.Globalization - contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currenc...
2007-11-01, 5877👍, 0💬

How To Count Groups Returned with the GROUP BY Clause
How To Count Groups Returned with the GROUP BY Clause? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries 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 nu...
2007-05-11, 5877👍, 0💬

Latest Version of HTML Specification?
What Is the Latest Version of HTML Specification? The latest HTML specification is HTML 4.01 specification published in December 1999 by W3C. If you are professional HTML developer, you should get a copy of this specification at http://www.w3.org/TR/html4/ . HTML 4 extends HTML with mechanisms for s...
2007-03-03, 5876👍, 0💬

Name the seven layers of the OSI Model and describe them briefly
Name the seven layers of the OSI Model and describe them briefly Physical Layer - covers the physical interface between devices and the rules by which bits are passed from one to another. Data Link Layer - attempts o make the physical link reliable and provides the means to activate, maintain, and d...
2007-11-11, 5873👍, 0💬

How does the race condition occur
How does the race condition occur? It occurs when two or more processes are reading or writing some shared data and the final result depends on who runs precisely when.
2007-11-11, 5873👍, 0💬

Can you explain how End points, Contract, Address and Bindings are done in WCF
Can you explain how End points, Contract, Address and Bindings are done in WCF?
2007-11-04, 5873👍, 0💬

Do session use cookies
How can we make session to not to use cookies ? Left to the user, you will enjoy to find this answer.
2007-10-24, 5871👍, 0💬

Acquiring Locks on Classes
Can a lock be acquired on a class? Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object.
2007-03-03, 5871👍, 0💬

Under What Conditions Should You Test set() and get() Methods?
Under What Conditions Should You Test set() and get() Methods? This is a good question for a job interview. It shows your experience with test design and data types. Tests should be designed to target areas that might break. set() and get() methods on simple data types are unlikely to break. So no n...
2008-02-12, 5870👍, 0💬

What is Absolute and Sliding expiration
What is Absolute and Sliding expiration? Absolute Expiration allows you to specify the duration of the cache, starting from the time the cache is activated. The following example shows that the cache has a cache dependency specified, as well as an expiration time of one minute. Cache.Insert("announc...
2007-10-23, 5869👍, 0💬

What is the difference between Factory and Abstract Factory Patterns
What is the difference between Factory and Abstract Factory Patterns? Note: - This is quiet a confusing architect question especially in design pattern section. Interviewer can take you for a nice ride. So get the difference in your heart. First read the definition provided in the first question abo...
2007-10-24, 5866👍, 0💬

How Long a Transaction Will Wait for a Data Lock
How Long a Transaction Will Wait for a Data Lock? - MySQL FAQs - Transaction Management: Commit or Rollback If you issue a UPDATE or DELETE statement on a row that has an exclusive lock owned by another session, your statement will be blocked to wait for the other session to release the lock. But th...
2007-05-11, 5866👍, 0💬

What Is the Scope of a Local Variable
What Is the Scope of a Local Variable? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions The scope of a variable can be described with these rules: A variable is valid within the procedure or function where it is defined. A variable is also valid inside a sub procedure or function...
2007-04-21, 5866👍, 0💬

What Is a Procedure
What Is a Procedure? - Oracle DBA FAQ - Understanding PL/SQL Language Basics A procedure is a named program unit. It consists of three parts: Declaration Part - Defining the procedure name, calling parameters, local variables and local procedures. Declaration part is required. Execution Part - Defin...
2007-04-30, 5863👍, 0💬

What Is ISAM
What Is ISAM? - MySQL FAQs - Database Basics and Terminologies ISAM (Indexed Sequential Access Method) was developed by IBM to store and retrieve data on secondary storage systems like tapes.
2007-05-10, 5861👍, 0💬

fork()
main() { int i = 2; int ret_val; while(i > 0) { ret_val = fork(); if (ret_val==0) { printf(“In child %d. \n”, i); } else{ printf(“In parent %d. \n”, i);} i=i-1; } } } The logic of this code looks clear. But what is the question?
2009-04-19, 5859👍, 0💬

Why Not Just Write a main() Method for Unit Testing?
Why Not Just Write a main() Method for Unit Testing? It is possible to write a main() method in each class that need to be tested for unit testing. In the main() method, you could create test object of the class itself, and write some tests to test its methods. However, this is not a recommended app...
2008-02-06, 5859👍, 0💬

Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive.
2007-10-31, 5859👍, 0💬

What are wait handles ?
.NET INTERVIEW QUESTIONS - What are wait handles ?(What is a mutex object ?) Wait handles sends signals of a thread status from one thread to other thread. There are three kind of wait modes :- * WaitOne. * WaitAny. * WaitAll. When a thread wants to release a Wait handle it can call Set method. You ...
2009-12-22, 5858👍, 0💬

How To Use DIV Elements to Change CSS Properties
How To Use DIV Elements to Change CSS Properties? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements As elements containers, "div" elements are perfect places to set CSS properties which will be applied to all elements in the container. Here is a tutorial example of how to set CSS propertie...
2007-05-12, 5858👍, 0💬

What is DMAIC and DMADV
What is DMAIC and DMADV ? Six Sigma has two key methodologies DMAIC and DMADV. DMAIC is used to improve an existing business process. DMADV is used to create new product designs or process designs in such a way that it results in a more predictable, mature and defect free performance. DMAIC Basic me...
2007-10-30, 5855👍, 0💬

How To Create a Table for Transaction Testing
How To Create a Table for Transaction Testing? - MySQL FAQs - Transaction Management: Commit or Rollback If you want to learn transaction management, you should create a table with the InnoDB storage engine. The default storage engine MyISAM does not support the transaction concept. The tutorial exe...
2007-05-11, 5855👍, 0💬

<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Date