GeekInterview.com
Submitted Questions

What is the method for deleting a table in sybase?

Asked By: Robert | Asked On: Apr 4th, 2007

Answered by: StephenRaj on: May 5th, 2007

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...

What are the types of sybase index?

Asked By: Robert | Asked On: Apr 4th, 2007

Answered by: christia on: May 5th, 2007

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?

Asked By: Robert | Asked On: Apr 4th, 2007

Answered by: Sushil Kumar on: Jun 23rd, 2007

The minimum table size is equal to 1 extent (that is equal to 8 pages).

How is picture displayed in background in a HTML?

Asked By: Robert | Asked On: Mar 31st, 2007

Answered by: gladys.jeba on: Apr 6th, 2009

In CSS,
body
{
  background: url(image-filename) left top no-repeat;
}

Answered by: sandy kondhare on: Aug 11th, 2008

you have to use in to the

thanks
sandy

What is body in HTML document?

Asked By: Robert | Asked On: Mar 31st, 2007

Answered by: rinumca on: Jul 6th, 2008

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...

Answered by: jbanx on: Apr 3rd, 2007

The body element defines the documents' body. It contains all the contents of the document (like text, images, colors, graphics, etc.).

What are the special features of wireless test tools?

Asked By: Robert | Asked On: Mar 31st, 2007

What are the challenges in wireless testing?

Asked By: Robert | Asked On: Mar 31st, 2007

What are the techniques available in equivalence partitioning (ep) and boundary value analysis?

Asked By: Robert | Asked On: Mar 31st, 2007

Answered by: Narender reddy on: Apr 4th, 2007

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?

Asked By: Robert | Asked On: Mar 31st, 2007

Answered by: kokkikumar on: Jul 9th, 2008

There are three levels

1.UnitTesting
2.Integretion Testing
3.Regression testing

cheers
srv

How is whitebox testing used with integration testing?

Asked By: Robert | Asked On: Mar 31st, 2007

Answered by: Sandhya.Kishan on: Mar 9th, 2012

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: Dusko Acevski on: Jul 28th, 2007

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 ...

What is the use of container?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: mahaswetha on: Sep 8th, 2008

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: mahaswetha on: Sep 8th, 2008

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: karmue on: Apr 1st, 2013

vim for editing
rubymine for general developing

Answered by: Sergey on: Feb 18th, 2012

Do not forget about TextMate :-)

What is the scope of a local variable in ruby?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: natchiar on: Aug 17th, 2007

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: Ayyappan K on: Sep 21st, 2007

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.

What is query cache in MySQL?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: kalyan c y on: May 14th, 2007

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: sampra on: Mar 10th, 2008

It is opensourse sw easy to download and install and very easy forsall application

How is sequences handled in MySQL?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: sampra on: Mar 10th, 2008

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

Answered by: M.V.S.Arun Kumar on: May 10th, 2007

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: Lokesh M on: Nov 30th, 2011

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?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: umapathi.b on: Jul 24th, 2010

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...

What is opacity in CSS3?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: ankit srivastava on: Dec 20th, 2012

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...

Answered by: Sandeep on: Jan 6th, 2012

Opacity is used to show or hide the html element For example 0 for hide and 1 for show

Code
  1. <p style="opacity: 0">Show Me</p>
  2. <p style="opacity: 0.5">Show Me</p>
  3. <p style="opacity: 1">Show Me</p>

What are the powerful features of CSS3?

Asked By: Robert | Asked On: Mar 25th, 2007

What are the properties associated with CSS3 multi-column feature?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: Neelima Sailaja on: Feb 24th, 2013

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...

Why is communication skill very vital for a project manager?

Asked By: Robert | Asked On: Feb 5th, 2007

Answered by: SomGollakota on: Jun 14th, 2007

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,...

Answered by: raghu on: Feb 21st, 2007

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?

Asked By: Robert | Asked On: Feb 1st, 2007

Answered by: rao_soft27 on: Jul 9th, 2007

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?

Asked By: Robert | Asked On: Jan 29th, 2007

Answered by: Bessie on: May 2nd, 2007

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...

Answered by: RyanJames on: May 2nd, 2007

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?

Asked By: Robert | Asked On: Jan 29th, 2007

Answered by: blenda on: May 2nd, 2007

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?

Asked By: Robert | Asked On: Jan 14th, 2007

Answered by: yoosafabdulla on: Jan 6th, 2011

You may use cfftp tag to access, upload and list files inside a secure ftp server.

Answered by: djoxer on: Oct 13th, 2009

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?

Asked By: Robert | Asked On: Jan 8th, 2007

Answered by: sripri on: Apr 9th, 2007

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?

Asked By: Robert | Asked On: Jan 8th, 2007

Answered by: stranger1 on: Sep 28th, 2007

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 ...

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us: