<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Date

What is Java
What is Java? Java is an object-oriented programming language developed initially by James Gosling and colleagues at Sun Microsystems. The language, initially called Oak (named after the oak trees outside Gosling's office), was intended to replace C++, although the feature set better resembles that ...
2007-03-03, 6245👍, 0💬

Some nested data structure
Assume that $ref refers to a scalar, an array, a hash or to some nested data structure. Explain the following statements: $$ref; # returns the scalar pointed by $ref. $$ref[0]; # returns the first element of the array pointed by $ref. $ref-&gt;[0]; # returns the first element of the array pointe...
2007-11-21, 6239👍, 0💬

What Happens If You Lost a Data File
What Happens If You Lost a Data File? - Oracle DBA FAQ - Managing Oracle Tablespaces and Data Files After you shuting down an Oracle database, you accidently deleted a data file from the operating system. If you try to start the database again you will get error when Oracle tries to open the databas...
2007-05-03, 6228👍, 0💬

Types of parameters available in QTP
How many types of Parameters are available in QuickTest Professional (QTP)? QTP provides three types of Parameter- * Method Argument * Data Driven * Dynamic (The above answer is from your web page) But I got that there are 4 types of parameters used in QTP. There are 4 types of parameters available ...
2008-12-22, 6227👍, 0💬

What is Struts Validator Framework
What is Struts Validator Framework? Struts Framework provides the functionality to validate the form data. It can be use to validate the data on the users browser as well as on the server side. Struts Framework emits the Java Scripts and it can be used validate the form data on the client browser. S...
2007-12-26, 6207👍, 0💬

How To Run a "@Suite.SuiteClasses" Class in JUnit 4.4?
How To Run a "@Suite.SuiteClasses" Class in JUnit 4.4? If you define create "@Suite.SuiteClasses" class as described in the previous question, you run it with the core runner: org.junit.runner.JUnitCore: java -cp .;junit-4.4.jar org.junit.runner.JUnitCore AllTests JUnit version 4.4 ....E.E Time: 0.0...
2008-01-31, 6196👍, 0💬

How To Query Multiple Tables Jointly
How To Query Multiple Tables Jointly? - MySQL FAQs - Managing Tables and Running Queries with PHP Scripts If you want to query information stored in multiple tables, you can use the SELECT statement with a WHERE condition to make an inner join. Assuming that you have 3 tables in a forum system: "use...
2007-05-11, 6191👍, 0💬

Are CAO stateful in nature
Are CAO stateful in nature ? Yes. In CAO remoting model client creates a instance on server and instance variable set by client on server can be retrieved again with correct value.
2007-10-23, 6190👍, 0💬

How To Declare a Local Variable
How To Declare a Local Variable? - Oracle DBA FAQ - Understanding PL/SQL Language Basics A local variable can be defined in the declaration part with a declaration statement, which is a variable name followed a data type identifier. Below are some examples of declaration statements: PROCEDURE proc_v...
2007-04-30, 6181👍, 0💬

Simplest HTML Page
What is the simplest HTML page? &lt;HTML&gt; &lt;HEAD&gt; &lt;TITLE&gt;Simplest HTML Page!&lt;/TITLE&gt; &lt;/HEAD&gt; &lt;BODY&gt; Welcome to interview.fyicenter.com! &lt;/BODY&gt; &lt;/HTML&gt;
2007-03-03, 6177👍, 0💬

What Is HTML
What is HTML? HTML stands for Hyper-Text Markup Language. HTML is a scripting language that authors can use to embed text tags into a text document to add structural and formatting information. More precisely, HTML gives authors the means to: Publish online documents with headings, text, tables, lis...
2007-03-03, 6171👍, 0💬

Nesting Tables within Tables
Can I nest tables within tables? Yes, a table can be embedded inside a cell in another table. Here's a simple example: &lt;table&gt; &lt;tr&gt; &lt;td&gt;this is the first cell of the outer table&lt;/td&gt; &lt;td&gt;this is the second cell of the outer table,...
2007-03-03, 6167👍, 0💬

Frameset and frame
How do I create frames? What is a frameset? Frames allow an author to divide a browser window into multiple (rectangular) regions. Multiple documents can be displayed in a single window, each within its own frame. Graphical browsers allow these frames to be scrolled independently of each other, and ...
2007-03-03, 6167👍, 0💬

What Is Transaction
What Is Transaction? - MySQL FAQs - Database Basics and Terminologies A transaction is a logical unit of work requested by a user to be applied to the database objects. MySQL server introduces the transaction concept to allow users to group one or more SQL statements into a single transaction, so th...
2007-05-10, 6166👍, 0💬

What are different types of locks in SQL SERVER
What are different transaction levels in SQL SERVER? Transaction Isolation level decides how is one process isolated from other process.Using transaction levels you can implement locking in SQL SERVER. There are four transaction levels in SQL SERVER READ COMMITTED The shared lock is held for the dur...
2007-10-25, 6162👍, 0💬

What Tools to Use to Write HTML Documents
What Tools to Use to Write HTML Documents? The basic tool you need to write HTML documents is any text editor, like notepad on Windows system, or vi on Unix system. If you are looking for some advanced tools to help you writing HTML documents, you can select any one from the following three categori...
2007-03-03, 6150👍, 0💬

Submitting Forms by Hitting ENTER
How do I make a form so it can be submitted by hitting ENTER? You need add JavaScript code to the input fields. When you hit the Enter key, the JavaScript code will be called to submit the form for you.
2007-03-03, 6147👍, 0💬

Eliminating the Extra White Space after Forms
How can I eliminate the extra space after a form? HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example: &lt;form style="margin-bottom:0;" action=...> ... &lt;/form>
2007-03-03, 6142👍, 0💬

What is ActionForm
What is ActionForm? An ActionForm is a JavaBean that extends org.apache.struts.action.Actio nForm.ActionForm maintains the session state for web application and the ActionForm object is automatically populated on the server side with data entered from a form on the client side.
2007-12-24, 6140👍, 0💬

How To Estimate Disk Space Needed for an Export Job
How To Estimate Disk Space Needed for an Export Job? - Oracle DBA FAQ - Loading and Exporting Data If you just want to know how much disk space for the dump without actually exporting any data, you can use the ESTIMATE_ONLY=y parameter on the expdp command. The following tutorial exercise shows you ...
2007-05-01, 6139👍, 0💬

Why Not Just Use System.out.println() for Unit Testing?
Why Not Just Use System.out.println() for Unit Testing? Inserting debug statements into code is a low-tech method for debugging it. It usually requires that output be scanned manually every time the program is run to ensure that the code is doing what's expected. It generally takes less time in the ...
2008-02-12, 6134👍, 0💬

What is a IL
What is MSIL or CIL , What is JIT? (IL)Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. This IL is then converted to machine code at the point where the software is installed, or at run-time b...
2007-10-22, 6133👍, 0💬

How Many Categories of Data Types
How Many Categories of Data Types? - Oracle DBA FAQ - Understanding PL/SQL Language Basics PL/SQL data types are grouped into 4 categories: Scalar Data Types: A scalar data type holds a single value. Composite Data Types: A composite data type has internal components, such as the elements of an arra...
2007-04-30, 6129👍, 0💬

How To Set Up Autotrace for a User Account
How To Set Up Autotrace for a User Account? - Oracle DBA FAQ - Introduction to Command-Line SQL*Plus Client Tool If an Oracle user wants to use the autotrace feature, you can use the tutorial as an example to create the required table PLAN_TABLE, the required security role PLUSTRACE, and grant the r...
2007-04-30, 6129👍, 0💬

<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Date