Technology Questions

Q:

List the major benefits of E-commerce.

Answer

The major benefits of Ecommerce are:


- Secure       : More secure than a cheque.


- Fast           : The transactions take not more than a few seconds


- Always on  : The purchases can be made 24/7


- Convenient:  Ease of purchasing


-Reduced cost price : Reduction of Marketing and Advertising Costs

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1614
Q:

What is CSS selector?

Answer

- Basically it is a string that identifies the elements to which a particular declaration or set of declarations will apply. 


- It can also be referred to as a link between the HTML document and the style sheet. 


- It is equivalent of HTML elements.


For example : 


A {text-indent: 12pt}


Here, the selector is A, which is called as type selector.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1612
Q:

How can you have different number of cells for each row of a table?

Answer

By setting the columnSpan property for cells of each row as required.

Report Error

View answer Workspace Report Error Discuss

0 1611
Q:

What are the the different ways for creating a thread?

Answer

A thread can be created by subclassing Thread, or by implementing the Runnable interface.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1611
Q:

What does INVEST stand for?

Answer

INVEST stands for Independent, Negotiable, Value, Estimable, Sized Appropriately and Testable. It is a tool designed to assist technical teams and deliver quality products.

Report Error

View answer Workspace Report Error Discuss

0 1608
Q:

How to Add a new column to an existing table?

Answer

New column can be added using the ALTER TABLE command as shown below:
Example:
ALTER TABLE employee ADD DateOfBirth date

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 1608
Q:

What do you understand by private, protected and public?

Answer

These are accessibility modifiers. Private is the most restrictive, while public is the least restrictive. There is no real difference between protected and the default type (also known as package protected) within the context of the same package, however the protected keyword allows visibility to a derived class in a different package.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1608
Q:

What is EXtensible Application Markup Language (XAML)?

Answer

XAML is a markup language used to define dynamic or static UIs for .NET applications. Though Windows Vista would be used to design XAML UIs, they can be applied to Windows XP or Windows 2003 too.


XAML is similar to MVC in terms of the separation of the UI code from application logic.


XAML is bound to Windows Presentation foundation to build a UI in .NET 3.0 and Windows Vista.


XAML Features:


- XAML inherits all XML definitions and rules.


- It also contains HTML, XHTML and other markup languages for UI.


- Every XAML element represents a .NET CLR class due to which working with XAML becomes simple.


- The application logic can be put in a separate file or be embedded in XAML file itself as XAML in conjunction with Windows Presentation Foundation model to provide the developers design a good UI in ASP.NET.


- XAML files get compiled to BAML files which are smaller than XAML and easier to read which make them faster to load.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1607