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

Two Sets of Links with Different Colors
How can I have two sets of links with different colors? You can suggest this presentation in a style sheet. First, specify colors for normal links, like this: a:link {color: blue; background: white} a:visited {color: purple; background: white} a:active {color: red; background: white} Next, identify ...
2007-03-03, 5809👍, 0💬

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, 5797👍, 0💬

Define XPATH
Define XPATH? It is an XML query language to select specific parts of an XML document. Using XPATH you can address or filter elements and text in a XML document. For instance a simple XPATH expression like “Invoice/Amount” states find “Amount” node which are children of “Invoice” node.
2007-10-31, 5796👍, 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, 5795👍, 0💬

What is the difference between “Web farms” and “Web garden”?
What is the difference between “Web farms” and “Web garden”? “Web farms” are used to have some redundancy to minimize failures. It consists of two or more web server of the same configuration and they stream the same kind of contents. When any request comes there is switching / routing logic which...
2007-10-24, 5784👍, 0💬

What Needs To Be Considered When Designing Page Layout
What Needs To Be Considered When Designing Page Layout? - CSS Tutorials - Page Layout and Background Image Design There are a number of technical issues you need to consider when designing Web pages: Screen resolution - How many graphical points per inch on a computer screen? Browser resolution - Ho...
2007-05-11, 5783👍, 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, 5782👍, 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, 5778👍, 0💬

How do I align a table to the right (or left)?
Can I nest tables within tables? You can use &lt;TABLE ALIGN="right"> to float a table to the right. (Use ALIGN="left" to float it to the left.) Any content that follows the closing &lt;/TABLE> tag will flow around the table. Use &lt;BR CLEAR="right"> or &lt;BR CLEAR="all"> to mark t...
2007-03-03, 5777👍, 0💬

What Is JUnit
What is JUnit? You need to remember the following points when answering this question: It is a software testing framework to for unit testing. It is written in Java and designed to test Java applications. It is an Open Source Software maintained by the JUnit.org community. Answer from the JUnit FAQ:...
2008-01-02, 5776👍, 0💬

What is BCP utility in SQL SERVER
What is BCP utility in SQL SERVER ? BCP (Bulk Copy Program) is a command line utility by which you can import and export large amounts of data in and out of SQL SERVER database. Below is a sample which shows BCP in action.
2007-10-25, 5776👍, 0💬

How To Write a JUnit Test Method
How To Write a JUnit Test Method? This interview question is to check if you know the basic rules about writing a JUnit test method: You need to mark the method as a JUnit test method with the JUnit annotation: @org.junit.Test. A JUnit test method must be a "public" method. This allows the runner cl...
2008-01-22, 5767👍, 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, 5767👍, 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, 5761👍, 0💬

How to prevent my .NET DLL to be decompiled
How to prevent my .NET DLL to be decompiled? By design .NET embeds rich Meta data inside the executable code using MSIL. Any one can easily decompile your DLL back using tools like ILDASM (owned by Microsoft) or Reflector for .NET which is a third party. Secondly there are many third party tools whi...
2007-10-22, 5761👍, 0💬

What is equivalent for regsvr32 exe in .NET ?
.NET INTERVIEW QUESTIONS - What is equivalent for regsvr32 exe in .NET ? Regasm
2010-02-02, 5748👍, 0💬

Why do you use Perl
Why do you use Perl? Perl is a powerful free interpreter. Perl is portable, flexible and easy to learn.
2007-11-19, 5746👍, 0💬

If we write a goto or a return statement in try and catch block will the finally block execute
If we write a goto or a return statement in try and catch block will the finally block execute ? The code in then finally always run even if there are statements like goto or a return statements.
2007-10-23, 5745👍, 0💬

What Is the Relation between RSS and XML
What Is the Relation between RSS and XML? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. RSS (Really Simple Syndication) is an extension o...
2007-05-12, 5741👍, 0💬

What Happens to the Current Transaction If a DDL Statement Is Executed
What Happens to the Current Transaction If a DDL Statement Is Executed? - MySQL FAQs - Transaction Management: Commit or Rollback If a DDL statement is executed, the current transaction will be committed and ended. All the database changes made in the current transaction will become permanent. This ...
2007-05-11, 5737👍, 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, 5729👍, 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, 5727👍, 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, 5724👍, 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, 5723👍, 0💬

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