<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date

Can one change the mouse pointer in Forms?
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms allows one to change the mouse pointer. Example: SET_APPLICATION_PROPERTY(CURSO R_STYLE,BUSY); The following cursor styles are supported: * BUSY - Specifies a busy symbol * CROSSHAIR - Specifies a crossh...
2011-04-19, 7407👍, 0💬

What does XmlValidatingReader class do
What does XmlValidatingReader class do? XmlTextReader class does not validate the contents of an XML source against a schema. The correctness of XML documents can be measured by two things is the document well formed and is it valid. Well-formed means that the overall syntax is correct. Validation i...
2007-10-31, 7397👍, 0💬

List of Waiting Threads on an Object
Can each Java object keep track of all the threads that want to exclusively access to it?
2007-03-03, 7387👍, 0💬

How To Get the Minimum or Maximum Value of an Array
How To Get the Minimum or Maximum Value of an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to get the minimum or maximum value of an array, you can use the min() or max() function. Here is a PHP script on how to use min() and max(): &lt;?php $array = array(5, 7, 6, 2,...
2007-04-22, 7383👍, 0💬

What is continuous and staged representation
What is continuous and staged representation? CMMI contains 25 key process areas which organization can follow to adapt CMMI. Causal Analysis and Resolution (CAR) Configuration Management (CM) Decision Analysis and Resolution (DAR) Integrated Project Management (IPM) Integrated Supplier Management (...
2007-10-30, 7382👍, 0💬

Can two catch blocks be executed
Can two catch blocks be executed? No, once the proper catch section is executed the control goes finally to block. So there will not be any scenarios in which multiple catch blocks will be executed.
2007-10-23, 7374👍, 0💬

What is the significance of Finalize method in .NET
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up activity for your objects. But unmanaged resources (ex: - Windows API created objects, File, Database connection objects, COM objects etc) is outside the scope of .NET framework we have to explicitly...
2007-10-23, 7373👍, 0💬

What are some uses of Intranets &amp; Extranets?
What are some uses of Intranets &amp; Extranets? An "intranet" is the generic term for a collection of private computer networks within an organization. Examples of intranets are internal networks with Web services and other services accessible only for internal users. An "extranet" is a compute...
2008-08-12, 7372👍, 0💬

Did VB6 support multi-threading ?
.NET INTERVIEW QUESTIONS - Did VB6 support multi-threading ? While VB6 supports multiple single-threaded apartments, it does not support a freethreading model, which allows multiple threads to run against the same set of data.
2009-11-03, 7370👍, 0💬

What is the concept of strong names
How do we generate strong names ? or What is use the of SN.EXE ? or How do we apply strong names to assembly? or How do you sign an assembly? Strong name is similar to GUID(It is supposed to be unique in space and time) in COM components.Strong Name is only needed when we need to deploy assembly in ...
2007-10-22, 7370👍, 0💬

Is versioning applicable to private assemblies?
.NET INTERVIEW QUESTIONS - Is versioning applicable to private assemblies? Versioning concept is only applicable to global assembly cache (GAC) as private assembly lie in their individual folders.
2010-03-16, 7365👍, 0💬

What is your company’s productivity factor
What is the FP per day in your current company?
2007-10-30, 7364👍, 0💬

How To Delete a User Account
How To Delete a User Account? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privileges If you want to delete a user account and its associated schema, you can log in as SYSTEM and use the DROP USER command as shown in the following example: >.\bin\sqlplus /nolog SQL> connect SYSTEM/fy...
2007-05-02, 7362👍, 0💬

How can we implement singleton pattern in .NET
How can we implement singleton pattern in .NET? Singleton pattern mainly focuses on having one and only one instance of the object running. Example a windows directory service which has multiple entries but you can only have single instance of it through out the network. Note:- May of developers wou...
2007-10-24, 7361👍, 0💬

Locking Objects for Exclusive Use
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by putting it in a "synchronized" block. The locked object is inaccessible to any thread other than the one that explicitly claimed it.
2007-03-03, 7338👍, 0💬

What is COCOMO I, COCOMOII and COCOMOIII
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepare software quotation. It has all the estimation technology that today’s software industry uses.
2007-10-30, 7337👍, 0💬

If we have multiple AFTER Triggers on table how can we define the sequence of the triggers
If we have multiple AFTER Triggers on table how can we define the sequence of the triggers ? If a table has multiple AFTER triggers, then you can specify which trigger should be executed first and which trigger should be executed last using the stored procedure sp_settriggerorder. All the other trig...
2007-10-25, 7335👍, 0💬

What is shadowing
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow the other one. So in such cases the element which shadowed the main element is referenced. Below is a sample code, there are two classes “ClsParent” and “ClsShadowedParent”. In “ClsParent” there is a...
2007-10-23, 7334👍, 0💬

What is V model in testing
What is V model in testing? V model map’s the type of test to the stage of development in a project. Unit Testing Starting from the bottom the first test level is "Unit Testing". It involves checking that each feature specified in the "Component Design" has been implemented in the component. In theo...
2007-10-30, 7332👍, 0💬

What Is the Difference between Formal Parameters and Actual Parameters
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions Formal parameter and actual parameter are two different terms related parameters used in the procedures and functions: A formal parameter is a term used to ref...
2007-04-25, 7317👍, 0💬

Is There Any XSD File to Validate Atom Feed Files
Is There Any XSD File to Validate Atom Feed Files? - RSS FAQs - Atom Feed Introduction and File Generation A XSD (XML Schema Definition) file contains a set of definitions of XML elements and attributes to form a new XML based language. The same DTD file can be used to validate XML files that comply...
2007-05-12, 7315👍, 0💬

How To Compile a JUnit Test Class
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java classes. The only thing you need watch out is that the JUnit JAR file must be included in the classpath. For example, to compile the test class HelloTest.java described previously, you should do this: ja...
2008-01-11, 7307👍, 0💬

What Is Finalization
What is the purpose of finalization? The purpose of finalization is to give an unreachable object the opportunity to perform any cleanup processing before the object is garbage collected.
2007-03-03, 7307👍, 0💬

What is test metrics?
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing and give a projection on how to go about testing activities by allowing us to set goals and predict future trends. test metrics should cover basically 3 things: 1. test coverage 2. time for one test c...
2008-04-14, 7297👍, 0💬

<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date