eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 

Your Online Guide » Relationship Advice » Education Toys

[I162]Implementation Of Basel Ii
by Matthew Anderson, Mat
The Basel II Certification Institute is the leading certification authority on Basel II compliance and regulations. The increased demand for this certification in areas where the need already existed, and the expansion of that demand into new areas of the global market place has led them to strike up a deal with McCann Associates, who have developed similar testing systems for Industry giants such as General Electric, in order to take the examinations and certification to the people.

"We are thrilled about our worldwide partnership with Basel II Certification Institute" says Paul Edelblut, Vice President of McCann Associates. "Our commitment to instant, accurate compliance testing is something we take very seriously, and we are excited about the opportunity to provide the financial services industry with a proven solution on a global scale."

This is an excellent opportunity for all professional that need to have a Basel ii Certification in this forever changing industry.

The availability of online testing is proving its worth as gaining certification in the past has proven to be a burden to some due to a few limited locations in world actually offering it. Now that the exam is online and accessable 24/7, professionals who are looking to achieve certification are able to take the examination required to become certified at a time when it is convienent to them, as many people may not have been able to travel to the closest testing or training centre. This new facility has proven results in the past and although the examination can be taken online, it still remains a very secure form of testing. The questions which make up the online examination are picked at random from a vast database, this gives assurance that none of the examinations are identicle.

This online assessment, scoring, reporting and remediation program accurately and reliably measures the knowledge, skills and abilities of individuals taking the examination. Tests can now be delivered securely online, and control testing options such as the number of times a test may be taken, timer, warning messages, random item delivery, test navigation rules, and score report display can also be implemented.
Individuals will be able to receive immediate, reliable scoring of multiple choice, short answer, and essay questions immediately after taking it. Allowing them to be certified the moment they pass the exam.

"As the demand for Basel II certification continues to grow worldwide, we made it our mission to develop the most efficient, most accurate testing system to accommodate our examinations" says Richard Nwanze, Chairperson of the Basel II Certification Institute.

Very often there is a need to use a data structure that keeps parameters in a form of key-value.
Associative Array (i.e. JavaScript Array Object)is such a solution.
Although it has low memory signature and quick data fetching we cannot iterate thru the array elements using direct key-value interface.

Web applications developed for IE based browsers have the option to use the Microsoft Dictionary object.
Massive use of the object may cause high memory signature and low application performance.

This article introduces a possible solution to this problem, a solution which is deployed in real world running applications.

JavaScript Hashtable Object

The idea behind using this object is having the properties of associative Array bundled with low order computational complexity data fetching,
by adding new methods and capabilities.

Let's start by defining the class members:

Hashtable.prototype.hash = null;
Hashtable.prototype.keys = null;
Hashtable.prototype.location = null;



We have defined 3 member variables:


  • hash - An associative Array that holds the data.

  • keys - A standard Array that holds the Array keys. We will use it when we need to iterate on our list of values.

  • location - Points at the current value.



After defining the class member variables we define the class constructor:

function Hashtable(){
this.hash = new Array();
this.keys = new Array();

this.location = 0;
}


Clear and simple. We initialize our two arrays and our pointer.

After finishing with the definitions part we can start coding...

The first two function that we implement are get and put.
These are the main functions for data storage and retrieval.

Hashtable.prototype.get = function (key)
return this.hash[key];
}

Hashtable.prototype.put = function (key, value){
if (value == null)
return null;

if (this.hash[key] == null)
this.keys[this.keys.length] = key;

this.hash[key] = value;
}


The get function simply returns the value from the Array by the supplied key, while put is required for a little more work.
It initially checks whether the value equals to null (if so the process stops). Then the function checks whether this key is already defined.
If so the value is replaced with the new argument supplied.
Otherwise, a new key is generated and the value is stored accordingly.

Another set of functions let us iterate thru the Array. Instead of introducing the code here we will show how we can use it:

//declare an instance
var items = new Hashtable();

//add 3 values to the hash
items.put("key1", "value1");
items.put("key2", "value2");
items.put("key3", "value3");

//just show that all works well
alert(items.get("key2"));

//start iterating the hash
//Just to be on the safe side (maybe someone has used it before?)
items.moveFirst();
while (tems.next()){ //While we have more elements
//print the key and the value
alert (items.getKey() + " = " + items.getValue());
}


The JavaScript Hashtable Object has some more interesting methods:

  • add - Merges two Hashtables

  • toString - Returns a textual representation of the Object (mainly for debugging)

  • getKeyOfValue - Returns a list of keys that hold a certain value

Article Source : Super Mario Plush Toys

About Author
Both Matthew Anderson & Uzi Refaeli are contributors for EditorialToday. The above articles have been edited for relevancy and timeliness. All write-ups, reviews, tips and guides published by EditorialToday.com and its partners or affiliates are for informational purposes only. They should not be used for any legal or any other type of advice. We do not endorse any author, contributor, writer or article posted by our team.

Matthew Anderson has sinced written about articles on various topics from Air Filters, Home Management and Education Toys. Here is some additional information about . Matthew Anderson's top article generates over 27100 views. to your Favourites.

Uzi Refaeli has sinced written about articles on various topics from Education Toys, Site Promotion. Uzi Refaeli is the CTO of Comet Information Systems which specialize with and. Uzi Refaeli's top article generates over 880 views. to your Favourites.
EditorialToday Relationship Advice has 2 sub sections. Such as Family Relationship and Relationship Communications. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors