<< < 17 18 19 20 21 22 23 24 25 26 27 > >>   Sort: Date

What Is JUnit TestCase?
What Is JUnit TestCase? JUnit TestCase is the base class, junit.framework.TestCase, used in JUnit 3.8 that allows you to create a test case. TestCase class is no longer supported in JUnit 4.4. A test case defines the fixture to run multiple tests. To define a test case Implement a subclass of TestCa...
2008-02-26, 6126👍, 0💬

How many ways can we express string in Perl
How many ways can we express string in Perl? Many. For example 'this is a string' can be expressed as: 'this is a string' "this is a string" qq/this is a string like double-quoted string/ qq^this is a string like double-quoted string^ q/this is a string/ q&this is a string&amp; q(this is a s...
2007-11-26, 6125👍, 0💬

Can you explain the process areas part 1
Can you explain the process areas? part 1 Each process area is defined by a set of goals and practices. There are two categories of goals and practices: generic and specific. Generic goals and practices are a part of every process area. Specific goals and practices are specific to a given process ar...
2007-10-30, 6124👍, 0💬

Latest Versions of Qualitycenter, QTP, LoadRunner
what are that latest versions of Qualitycenter, QTP, Winrunner and LoadRunner
2008-07-14, 6123👍, 0💬

What Is Rollback
What Is Rollback? - MySQL FAQs - Database Basics and Terminologies Rollback is a way to terminate a transaction with all database changes not saving to the database server.
2007-05-10, 6122👍, 0💬

Give the Details of XML files used in Validator Framework
Give the Details of XML files used in Validator Framework? The Validator Framework uses two XML configuration files validator-rules.xml and validation.xml. The validator-rules.xml defines the standard validation routines, these are reusable and used in validation.xml to define the form specific vali...
2007-12-28, 6121👍, 0💬

Set UI Focus on the First Field of a Form
How do I set the focus to the first form field? You cannot do this with HTML. However, you can include a JavaScript after the form that sets the focus to the appropriate field, like this: &lt;input type="text" id="myinput" name="myinput" ...> &lt;/form> &lt;script type="text/javascript">...
2007-03-03, 6121👍, 0💬

What Is a Session
What Is a Session? A session is a logical object created by the PHP engine to allow you to preserve data across subsequent HTTP requests. There is only one session object available to your PHP scripts at any time. Data saved to the session by a script can be retrieved by the same script or another s...
2007-02-27, 6118👍, 0💬

How you will make available any Message Resources Definitions file to the Struts Framework Environment
How you will make available any Message Resources Definitions file to the Struts Framework Environment? Message Resources Definitions file are simple .properties files and these files contains the messages that can be used in the struts project. Message Resources Definitions files can be added to th...
2007-12-14, 6117👍, 0💬

What is PHP
What is PHP? The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.
2007-02-27, 6116👍, 0💬

What Is an Anonymous Block
What Is an Anonymous Block? - Oracle DBA FAQ - Understanding PL/SQL Language Basics An anonymous block is a PL/SQL code block with no name. It consists of three parts: Declaration Part - Defining local variables and local procedures. Declaration part is optional. Execution Part - Defining execution ...
2007-04-30, 6111👍, 0💬

How To Write the Opening Tag of an XHTML Element
How To Write the Opening Tag of an XHTML Element? - XHTML Tutorials - Introduction To Tag and Attribute Syntax When you are writing an XHTML element, you must start with its opening tag, which contains the name of the element and attributes if needed. The opening tag is enclosed in a pair of angle b...
2007-05-12, 6109👍, 0💬

What is Perl one-liner
What is Perl one-liner? There are two ways a Perl script can be run: From a command line, called one-liner - That means you type and execute immediately on the command line. You'll need the -e option to start like "C:\ %gt perl -e "print \"Hello\";". One-liner doesn't mean one Perl statement. One-li...
2007-11-19, 6107👍, 0💬

How Many Versions of RSS Language Standards
How Many Versions of RSS Language Standards? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics RSS is relatively new. Many versions have been developed in recent years: RSS 0.90 - The earliest known version of RSS released to the public by Netscape in 1999. RSS 0.90 is based on RDF...
2007-05-12, 6105👍, 0💬

What Is JUnit TestSuite?
What Is JUnit TestSuite? JUnit TestSuite is a container class, junit.framework.TestSuite, used in JUnit 3.8 that allows you to group multiple test cases into a collection and run them together. TestSuite class is no longer supported in JUnit 4.4. Each test runs in its own fixture so there can be no ...
2008-03-04, 6096👍, 0💬

Relation between HTML and SGML
What Is the Relation between HTML and SGML? SGML (Standard Generalized Markup Language) is a metalanguage in which one can define markup languages, like HTML, for documents. SGML is a descendant of IBM's Generalized Markup Language (GML), developed in the 1960s by Charles Goldfarb, Edward Mosher and...
2007-03-03, 6095👍, 0💬

How Many Test Runners Are Supported in JUnit 3.8?
How Many Test Runners Are Supported in JUnit 3.8? JUnit 3.8 supports 3 test runners: junit.textui.TestRunner - A command line based tool to run tests. TestRunner expects the name of a TestCase class as argument. If this class defines a static suite method it will be invoked and the returned test is ...
2008-03-04, 6093👍, 0💬

What Is Atom
What Is Atom? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics Atom is an XML-based document format that describes lists of related information known as "feeds". Feeds are composed of a number of items, known as "entries", each with an extensible set of attached metadata. For exam...
2007-05-12, 6093👍, 0💬

What Is Primary Key
What Is Primary Key? - MySQL FAQs - Database Basics and Terminologies A primary key is a single column or multiple columns defined to have unique values that can be used as row identifications.
2007-05-10, 6087👍, 0💬

Can we have different access modifiers on get/set methods of a property
Can we have different access modifiers on get/set methods of a property ? No we can not have different modifiers same property. The access modifier on a property applies to both its get and set accessors.
2007-10-23, 6085👍, 0💬

Can you write a simple Action Class
Can you write a simple Action Class? Sure. Here is the code of Action Class that returns the ActionForward object: import javax.servlet.http.HttpServlet Request;import javax.servlet.http.HttpServlet Response;br>import org.apache.struts.action.Actio n;import org.apache.struts.action.Actio nForm;impor...
2007-12-19, 6083👍, 0💬

What is a fixed-width table and its advantages?
What is a fixed-width table and its advantages? Fixed width tables are rendered by the browser based on the widths of the columns in the first row, resulting in a faster display in case of large tables. Use the CSS style table-layout:fixed to specify a fixed width table. If the table is not specifie...
2008-05-13, 6082👍, 0💬

require(), include() and include_once() Functions
What are the differences between require(), include() and include_once() functions in PHP? All three functions are used to include and evaluate a file into the current script execution. The include_once() statement includes and evaluates the specified file during the execution of the script. This is...
2007-02-27, 6075👍, 0💬

What Is InnoDB
What Is InnoDB? - MySQL FAQs - Database Basics and Terminologies InnoDB is a transaction safe storage engine developed by Innobase Oy (an Oracle company now).
2007-05-10, 6073👍, 0💬

<< < 17 18 19 20 21 22 23 24 25 26 27 > >>   Sort: Date