Archive for the ‘IT Certification Exam’ Category

What is Requirement testing?

Published by admin on May 10th, 2011 - in IT Certification Exam

Requirement testing is conducted before any other levels of testing. It verifies whether or not an application fulfills all the requirements provided in the application specification. Following is a list of the main characteristics of Requirement testing:

  • Deterministic: There should not be any uncertainty involved in the testing process.
  • Unambiguous: It should be clear without any ambiguity.
  • Correct: It should be error-free.
  • Complete: It should be such that nothing else is required in the testing process.
  • Consistent: It should constantly adhere to the same principles.
  • Explicit: It should be very specific, clear, and detailed.
  • Traceable: It should be capable of being traced.

 >

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

uCertify President Day Sale

Published by admin on February 21st, 2011 - in IT Certification Exam

In honor of the birth anniversaries of two great men, George Washington and Abraham Lincoln, uCertify is pleased to offer fantastic savings on President’s Day!

Choose from over 300 IT certification prepkits, each backed with our 100% money back guarantee.

So, hurry! Sale begins Feb 21st and ends Feb 25th. ANY Prepkit, ONLY $95.99! or less

Happy Shopping & Happy Learning!

Guest Post By

uCertify Team

>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

uCertify Double Saving Sale

Published by admin on January 31st, 2011 - in IT Certification Exam

It seems like only yesterday that we welcomed in 2011, but as you may have noticed, it is already the end of January! Have you begun on your New Year’s resolutions to get your career goals in order? Getting certified is a great way to expand your skills prove your abilities to your employer.

uCertify has helped thousands of professionals achieve their IT certification goals. This week, we are making it easy on your check book. For 3 days only,order any 2 Prepkits of your choice for only $179.99. That’s a 36% savings off our regular prices.

uCertify

Join the thousands of IT professionals who have successfully earned their IT certifications using uCertify’s Prepkits. Our outstanding pass rate of over 98% is great testimony to the quality of our products.

So, hurry! Sale begins Jan 31st and ends Feb 2nd. Any two Prepkits for only $179.99 ( as compared to $279.98 )! To order, go to:

https://www.ucertify.com/cart/todays-deal.php

Guest Post By-:

uCertify>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

uCertify Christmas Sale

Published by admin on December 22nd, 2010 - in IT Certification Exam

Ho-ho-ho! ‘Tis the season to be jolly, etc. etc. We agree. In celebration of this special season, we bring happy tidings. uCertify has a special treat for the first 450 customers only! Check out our low, low sale prices on over 300 IT certification exams.

Sample Savings: Get any 6 Prepkits for only $56.67 each! That’s a savings of 60%! Or pick any 3 Prepkits for a savings of 40%!
See https://www.ucertify.com/cart/selectadeal.php for details

Hurry! Sale begins NOW! At these Santa sized savings, be sure you are one of the first, lucky 450 customers!

Save upto 60%

Buy more and Save more!

We guarantee that you will pass your certification exam in first attempt or we will provide full refund. Checkout our 100% money back guarantee!

Click here to view uCertify Christmas Offer online

Guest Post by

uCertify>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Last 2 Days for uCertify Cyber Monday Sale

Published by admin on November 29th, 2010 - in IT Certification Exam

We guarantee that you will pass your certification exam in first attempt or we will provide full refund. Checkout our 100% money back guarantee

Save upto 60%
Package Saving License
6 PrepKits
60% Home and Work
buy 6 prepktis
5 PrepKits
56% Home and Work
buy 5 prepktis
4 PrepKits
50% Home and Work
buy 4 prepktis
3 PrepKits
40% Home and Work
buy 3 prepktis
2 PrepKits
35% Home and Work
buy 2 prepktis

Check out these incredible savings!


60% off any 6 PrepKits

55% off any 5 PrepKits

50% off any 4 PrepKits

40% off any 3 Prepkits

35% off any 2 Prepkits

Click here to view Cyber Monday Offer online

Guest Post by uCertify>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Biggest Deal Of The Year – Save 60% from uCertify

Published by admin on November 24th, 2010 - in IT Certification Exam

uCertify has some terrific treats for you this Thanksgiving! Turkey and mashed potatoes are not the only things up for gobbling this week.

Check out these incredible savings!


60% off any 6 PrepKits

55% off any 5 PrepKits

50% off any 4 PrepKits

40% off any 3 Prepkits

35% off any 2 Prepkits

This is one feast you won’t want to miss! The best part … you won’t regret feasting! You will pass in your first attempt or your money back. No questions asked. This is one gift you won’t need to exchange.

Guest Post By:

uCertify>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Huge discount on uCertify Early Bird Sale

Published by admin on November 19th, 2010 - in IT Certification Exam

On this festive season uCertify is offering humongous discounts on worlds best practice tests.
uCertify is offering an amazing discount of upto 40%! You can save 40% by clicking the following link :

Buy any 3 PrepKits and Save 40%

The very interesting feature of uCertify is that all its PrepKits are backed by 100% money back guarantee, so you have nothing to loose.


>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

HTTP handlers in ASP.NET

Published by admin on November 11th, 2010 - in IT Certification Exam

HTTP handlers are the .NET components that implement the System.Web.IHttpHandler interface. A class which is implementing IHttpHandler interface can act as a target for the incoming HTTP requests. Handlers are very similar to Internet Server Application Programming Interface (ISAPI) extensions. The IHttpHandler interface has one method and one property with the following parameters:

void ProcessRequest(HttpContext);

bool IsReusable {get;}

Different Functions in Http Handler

The following are the 2 functions in Http Handlers.

Method Name Description?
ProcessRequest This function is used to call Http Requests.
IsReusable This function is used to check the reusability of same instance handler with a new request of same type.

The built-in HTTP handlers in ASP.NET are as follows:

Handler Description
ASP.NET page

handler (*.aspx)

It is the default HTTP handler for all ASP.NET pages.
Web service handler

(*.asmx)

It is the default HTTP handler for Web service pages created as .asmx files in

ASP.NET.

Generic Web handler (*.ashx) It is the default HTTP handler for all Web handlers that

neither have a UI nor the @ WebHandler directive.

Trace handler (trace.axd) It is used to display

current page trace information.

How To Configure HTTP Handlers

ASP.NET stores its configuration information in the following configuration files:

1. machine.config

2. web.config

The machine configuration file, Machine.config, contains settings that apply to an entire computer. This file is located in the %runtime install path%\Config directory.  Machine.config contains configuration settings for machine-wide assembly binding, built-in remoting channels, and all the web application stored on that computer.

Each web application has its own web.config file. The web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application specific items such as database connection strings.

We can use <httpHandlers> and <add> nodes for adding HTTP handlers to our Web applications. In fact the handlers are listed with <add> nodes in between <httpHandlers> and </httpHandlers> nodes. You can take help of the following example:

<httpHandlers>
<add verb=”[verb list]” path=”[path/wildcard]” type=”[COM+ Class], [Assembly]” validate=”[true/false]” />
<remove verb=”[verb list]” path=”[path/wildcard]” />
<clear />
</httpHandlers>>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Know DHTML ( Dynamic HTML ) with some interesting facts

Published by admin on November 9th, 2010 - in IT Certification Exam

Dynamic HTML (DHTML) is built on an object model that extends the traditional static HTML document. It enables Web authors to create highly interactive Web pages. DHTML provides a set of technologies for creating dynamic content for Web sites. Using DHTML, the content is dynamically rendered and altered on the client without having to make a round trip to the server.

DHTML has the following component technologies:

  • Document Object Model
  • Dynamic Styles
  • Dynamic Positioning
  • Dynamic Content
  • Data Binding

It is important to know about the Document Object Model (DOM). DOM is a road map through which any element in an HTML/XML document can be located. According to the World Wide Web Consortium, the DOM is a platform- and language-neutral interface that allows programs and scripts to dynamically access and update the contents, structure, and style of a document. The document can be further processed, and the results of the processing can be incorporated back into the present page. DOM comprises the components listed below:

  • Objects
  • Properties
  • Events
  • Methods
  • Collections

Here are some interesting and  important facts about DHTML:

  • DHTML uses the DOM interface to manipulate HTML and XML documents and to provide them the logical structure.
  • DHTML is a combination of scripts, style, and HTML objects that provide Web site interactivity.
  • DHTML can be used as an alternative to server-side technologies such as ASP.
  • A major difference between DHTML and HTML is Web site interactivity. DHTML enhances HTML for Web site interactivity.
  • DHTML is often used to make rollover buttons or drop-down menus on a Web page.
  • DHTML is less commonly used for creating browser-based action games.

There are some disadvantages too of using DHTML. It is difficult to develop and debug Web pages due to varying degrees of support among Web browsers of the technologies involved. Due to the variety of screen sizes available, it becomes a difficult task for developers to fine-tune the page for all browsers and screen-size combinations.

>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Difference between Exceptions and Assertions

Published by admin on October 25th, 2010 - in IT Certification Exam

An exception is an event, which occurs during the execution of a program, that interrupts the normal flow of the program’s instructions.
When an error occurs within a method, the method creates an object and hands it off to the runtime system. The object, called an exception object, contains information about the error, including its type and the state of the program when the error occurred. Creating an exception object and handing it to the runtime system is called throwing an exception.

An assertion is a statement in the Java that enables you to test your assumptions about your program.
Each assertion contains a boolean expression that you believe will be true when the assertion executes. If it is not true, the system will throw an error. By verifying that the boolean expression is indeed true, the assertion confirms your assumptions about the behavior of your program, increasing your confidence that the program is free of errors.

Exceptions Assertions
An exception tells the user of the program that something in the program went wrong. An assertion documents a program. When it fails, it informs that the program has a bug.
Exceptions are created to deal with problems that might occur in the program. Assertions are written to state the concepts of a program.
Exceptions are used to test input/output as well as whether parameters are legal or not. Assertions are documentations that can be checked by running the program.

>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare
© Exam Directory
CyberChimps WordPress Themes