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

How can we host a service on two different protocols on a single server
How can we host a service on two different protocols on a single server? Let’s first understand what this question actually means. Let’s say we have made a service and we want to host this service using HTTP as well as TCP. You must be wondering why to ever host services on two different types of pr...
2007-11-04, 5956👍, 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, 5947👍, 0💬

How In-Line Elements Are Mixed in Text Lines
How In-Line Elements Are Mixed in Text Lines? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements If an in-line element is mixed in a text line, it will be placed immediately after the preceding character. The vertical position of the in-line element will be determined by it...
2007-05-09, 5946👍, 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, 5945👍, 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, 5943👍, 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, 5938👍, 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, 5937👍, 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, 5936👍, 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, 5934👍, 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, 5929👍, 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, 5921👍, 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, 5919👍, 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, 5916👍, 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, 5907👍, 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, 5907👍, 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, 5898👍, 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, 5896👍, 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, 5893👍, 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, 5888👍, 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, 5876👍, 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, 5875👍, 0💬

What is equivalent for regsvr32 exe in .NET ?
.NET INTERVIEW QUESTIONS - What is equivalent for regsvr32 exe in .NET ? Regasm
2010-02-02, 5870👍, 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, 5862👍, 0💬

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