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

Can I use percentage values for the WIDTH attributes of TD tags?
How can I avoid using the whole URL? Yes. It should be noted that Netscape and Microsoft's browsers interpret percentage values for &lt;TD WIDTH=...> differently. However, their interpretations (and those of other table-aware browsers) happen to match when combined with &lt;TABLE WIDTH="100%...
2007-03-03, 6130👍, 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💬

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

What Is BDB (BerkeleyDB)
What Is BDB (BerkeleyDB)? - MySQL FAQs - Database Basics and Terminologies BDB (BerkeleyDB) is transaction safe storage engine originally developed at U.C. Berkeley. It is now developed by Sleepycat Software, Inc. (an Oracle company now).
2007-05-10, 6101👍, 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, 6099👍, 0💬

Memorizing HTML Tags
Do I have to memorize a bunch of HTML tags? Yes. Most programs that help you write HTML code already know most tags, and create them when you press a button. But you must understand what a tag is, and how it works. That way you can correct errors in your page more easily.
2007-03-03, 6099👍, 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, 6095👍, 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, 6095👍, 0💬

How to test software requirements specification (SRS)?
How to test software requirements specification (SRS)? Do you know “Most of the bugs in software are due to incomplete or inaccurate functional requirements?” The software code, doesn’t matter how well it’s written, can’t do anything if there are ambiguities in requirements. It’s better to catch t...
2009-03-20, 6091👍, 0💬

What is internal change request
What is internal change request? Internal change request are not normally billable change request, it has no financial gains from the client. Example your architecture division of your company has said in mid of the project that the architecture has to be modified. Definitely this has nothing to do ...
2007-10-30, 6091👍, 0💬

How To Convert Character Types to Numeric Types
How To Convert Character Types to Numeric Types? - Oracle DBA FAQ - Understanding PL/SQL Language Basics You can convert character types to numeric types in two ways: Explicitly by using TO_NUMBER() function. Implicitly by putting character data in a numeric operation. The sample script below shows ...
2007-04-30, 6090👍, 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, 6088👍, 0💬

Can one bypass the Oracle login screen?
Can one bypass the Oracle login screen? The first thing that the user sees when using runform is the Oracle logon prompt asking them for their username, password, and database to connect to. You can bypass this screen or customise it by displaying your own logon screen. Eg: -- ON-LOGON Trigger decla...
2011-03-22, 6082👍, 0💬

What is CRUD testing and how does a tester test this?
What is CRUD testing and how does a tester test this? CRUD testing is actually Black Box testing. CRUD stands for (Create, Read, Update, Delete). I.e., whether you can Create or Add data, Whether you can Read or Access The Data after it is saved once, or whether you can Deteted the data along with i...
2011-03-31, 6079👍, 0💬

SQL Joins
What is the difference between Inner Join and Outer Join? 1. You use INNER JOIN to return all rows from both tables where there is a match. ie. in the resulting table all the rows and colums will have values. In OUTER JOIN the relulting table may have empty colums. Outer join may be either LEFT or R...
2008-09-25, 6079👍, 0💬

What is Collection API
What is Collection API? The Collection API is a set of classes and interfaces that support operation on collections of objects. These classes and interfaces are more flexible, more powerful, and more regular than the vectors, arrays, and hashtables. Example of classes: HashSet, HashMap, ArrayList, L...
2007-03-03, 6079👍, 0💬

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

What Is Foreign Key
What Is Foreign Key? - MySQL FAQs - Database Basics and Terminologies A foreign key is a single column or multiple columns defined to have values that can be mapped to a primary key in another table.
2007-05-10, 6074👍, 0💬

How Are the Parent Padding Spaces Collapsed with the Child Margins
How Are the Parent Padding Spaces Collapsed with the Child Margins? - CSS Tutorials - Understanding Multiple Element Formatting Rules If child block element is enclosed in a parent block element, the vertical margins of the child element could be collapsed with the padding spaces of the parent eleme...
2007-05-11, 6069👍, 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, 6069👍, 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, 6068👍, 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, 6062👍, 0💬

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