What are the types of sybase index?
Clustered index and Nonclustered indexes are the two type’s index handled by Sybase. In the case of Clustered index the physical and logical order are maintained in the same order by the process...
What is the default table size in sybase?
The minimum table size is equal to 1 extent (that is equal to 8 pages).
How is picture displayed in background in a HTML?
In CSS,
body
{
background: url(image-filename) left top no-repeat;
}
What is body in HTML document?
The effects which we want in the window are mentioned with the help of tags in the body. It is the place where the actual data is given in html. All the changes can be viewed by changing the tagsconte...
The body element defines the documents' body. It contains all the contents of the document (like text, images, colors, graphics, etc.).
What are the wireless test capabilities for mobile testing?
What are the techniques available in equivalence partitioning (ep) and boundary value analysis?
In Equaliance class portion we perform the data entered in the text boxes that is valid characters and Nummers and combination of both it depends on the funcationality of the text box
In Boundary value anyalasis we calculate Maximum and minum values accpted the text box
What are the levels of testing in which white box testing takes its presence?
There are three levels
1.UnitTesting
2.Integretion Testing
3.Regression testing
cheers
srv
How is whitebox testing used with integration testing?
Integration testing looks at how all components of an application interact. White box integration tests specifically look at the interfaces between the components.
How is oncalcfields event handler used in delphi?
Hi Robert OnCalculate is event in Delphi it trigerrs when you are reading data from the database .NOTE : It trigerrs on reading each row Stupid Example :if you want to subtract two coolumns ...
Container is used to hold the components. It's the responsibility of the container to request the visible controls placed on it to paint themselves. The container is also responsible for creating and...
What is project file in delphi?
File with .dpr extension is the project file. It comprises all the unit names used in the application along with their path in the hard disk (and the form name if the unit is associated with a .dfm fi...
What are the editors supported by ruby?
vim for editing
rubymine for general developing
Do not forget about TextMate :-)
What is the scope of a local variable in ruby?
A new scope for a local variable is introduced in the toplevel, a class (module) definition, a method defintion. In a procedure block a new scope is introduced but you can access to a local variabl...
How is an iterator handled in ruby?
Iterator is handled using keyword 'each' in ruby.
For example
$no=[1,2,3]
then we can use iterator as
$no.each do |l|
puts l
end
Above prints the values of an array $no which is accomplished using iterator.
Query Cache stores both SELECT statenment and its result; if any similar query recives later it will retrive result from query plan;
Query Cache is not use full for server side Prepared Statement
What are the vital advantages of MySQL?
It is opensourse sw easy to download and install and very easy forsall application
How is sequences handled in MySQL?
sequence handle is a concept by which we can provide a auto a auto genrated key to database like we have to provide primary key that is unique then we can use the squence
Sequences are handled by primary key or by unique in which primary keys don't allow any duplicate rows and null values are not accepted. Sequences and unique allows multiple NULL values and duplicates values are not allowed
How is stored procedures managed in MySQL?
Details of existing stored procedures in MySQL can be obtained from ROUTINES table in INFORMATION_SCHEMA database.
Stored Procedures can be managed using the following:
CREATE [FUNCTION|PROCEDURE]
ALTER [FUNCTION|PROCEDURE]
DROP [FUNCTION|PROCEDURE]
SHOW CREATE [FUNCTION|PROCEDURE]
What are the performance and scalability characteristics of MySQL?
MySQL has got a lot to do with..It can perform very well..It has got different storage engines like myisam, innodb, memory, federated for different purposes.Like if the application requires mostly ins...
The Opacity declaration sets how opaque an element is. An opacity value of 1 means the element is fully opaque; an opacity value of 0 means an element is not at all opaque, i.e. fully transparent.This...
What are the properties associated with CSS3 multi-column feature?
The properties associated with multi-columns would be column-count, column-gap and column-rule. column-count : used to specify the number of columns, colum-gap : used to specify the width of the gap b...
What are the differences between table queries and select queries in Microsoft access database?
Why is communication skill very vital for a project manager?
Communication is the basis for any relationship - it can make or break it. A project depends on several human components - customers, management, stakeholders, various dependency groups, direct teams,...
PM is Role model for total team and he should be very strong in communication skills. Apart from that he/she should be able to understand the requirements which includes listening skills, messenger skills (communicating between business clients and Tech team) and leadership skills.
Mention some common errors in a voiceXML application?
error.badnext A 'next' resulted in a failed fetch. These may be further subdivided into error.badnext.http.404, and so on for applications that require fine-grained error handling. error.semantic A ru...
Explain about light scans in informix?
Light scans occur under the following conditions: The optimizer chooses a sequential scan of the table. The number of pages in the table is greater than the number of buffers in the buffer pool. The i...
In some circumstances, the database server can bypass the overhead of the buffer pool when it performs a sequential scan. Such a sequential scan is termed a light scan.Light scans can be used only for...
What is mirroring in informix?
Mirroring is the process of replicating a dbspace for the purpose of reducing the risk of data loss in the event of a hardware failure. When mirroring is in place, both the primary and the mirror chun...
What option is used to ftp files to or from the coldfusion server?
You may use cfftp tag to access, upload and list files inside a secure ftp server.
If you already have an FTP account with a remote host, you can use the CFFTP tag to transfer files between your computer and your host right in your ColdFusion application.
D:
What are the disadvantages of the python programming language?
One of the disadvantage of the Python programming language is it is not suited for fast and memory intensive tasks.
Why isn't all memory freed when python exits?
Objects referenced from the global namespaces of Python modules are not always deallocated when Python exits. This may happen if there are circular references. There are also certain bits of memory ...
The table in Sybase can be deleted by using the command drop table. The syntax of this command is as below:drop table Then the window waits for entering the table name where the table name to be delet...