<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free practice test , mock test, driving test, interview questions &#187; Education</title>
	<atom:link href="http://www.skill-guru.com/blog/category/education/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skill-guru.com/blog</link>
	<description>Find free mock and practice test, create and sell tests</description>
	<lastBuildDate>Mon, 16 Jan 2012 16:53:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Market motive launches online SEO learning</title>
		<link>http://www.skill-guru.com/blog/2010/03/24/market-motive-launches-online-seo-learning/</link>
		<comments>http://www.skill-guru.com/blog/2010/03/24/market-motive-launches-online-seo-learning/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 01:46:39 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=1813</guid>
		<description><![CDATA[Avinash kaushik is author of best selling book, Web Analytics: An hour a day and blogs on Occam&#8217;s razor .
I had been following his blog regulalry and he is a heck of smart guy and one can definitely learn so much about web analytics. Avainahs is co founder of online learning learning startup Market Motive, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kaushik.net/">Avinash kaushik</a> is author of best selling book, <strong>Web Analytics: An hour a day</strong> and blogs on <a href="http://www.kaushik.net/avinash/">Occam&#8217;s razor</a> .</p>
<p>I had been following his blog regulalry and he is a heck of smart guy and one can definitely learn so much about web analytics. Avainahs is co founder of online learning learning startup <a href="http://www.marketmotive.com/">Market Motive</a>, which will help you to learn and expertise in the field of SEO. Market Motive offers  three month structured course (with exams and quizzes) and costs $3500.</p>
<p>It may not pinch US and Europeans (although with plunging value of pound and Euro , I think it might !!) but is definitely a big investment for Asian community.</p>
<p>Pricing aside , if you look the the faculty, it is impressive and I think it would be worth your money. One cannot learne everything by reading from the book.</p>
<p>Good luck Avinash with this new venture.</p>
<p>Don&#8217;t forget to check out our <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=39&amp;testName=SEO-Skill-Test-A">SEO Interview Questions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2010/03/24/market-motive-launches-online-seo-learning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>One-to-One mapping in Hibernate using Foreign Key Association</title>
		<link>http://www.skill-guru.com/blog/2010/02/16/one-to-one-mapping-in-hibernate-using-foreign-key-association/</link>
		<comments>http://www.skill-guru.com/blog/2010/02/16/one-to-one-mapping-in-hibernate-using-foreign-key-association/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 09:56:26 +0000</pubDate>
		<dc:creator>smitha</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Programming / tutorials]]></category>
		<category><![CDATA[hibernate]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=1689</guid>
		<description><![CDATA[One-to-One mapping can be done in 2 ways:

Primary key association:
Foreign key association.

My previous post described about the Primary key one-to-one mapping in Hibernate. This post gives an example of Foreign key one-to-one association in Hibernate.
In Foreign key one-to-one mapping,  2 entities will have one to one association using foreign keys. one  table holds primary key of 2nd [...]]]></description>
			<content:encoded><![CDATA[<p>One-to-One mapping can be done in 2 ways:</p>
<ol>
<li><a href="http://www.skill-guru.com/blog/2010/02/08/one-to-one-mapping-in-hibernate/">Primary key association</a>:</li>
<li>Foreign key association.</li>
</ol>
<p>My <a href="http://www.skill-guru.com/blog/2010/02/08/one-to-one-mapping-in-hibernate/">previous post </a>described about the Primary key one-to-one mapping in Hibernate. This post gives an example of Foreign key one-to-one association in Hibernate.<span id="more-1689"></span></p>
<p>In Foreign key one-to-one mapping,  2 entities will have one to one association using foreign keys. one  table holds primary key of 2nd table. Eg: consider Customer and address entities. In primary key association,  both the tables share same primary key. In foreign key association, customer table will have a address_id columns, in which primary key (address_id) of the customer’s address will be saved. Both customer and address tables will have different primary keys.</p>
<p>The tables would look like below:</p>
<p><strong><strong>create table address(<br />
    address_id int(11) not null auto_increment,<br />
    address_line1 varchar(100) not null,<br />
    address_line2 varchar(100),<br />
    city varchar(50) not null,<br />
    state varchar(50) not null,<br />
    pincode int(10) not null,<br />
    primary key(address_id));</strong></strong></p>
<p><strong></strong> </p>
<p><strong>create table customer(<br />
    customer_id int(11) not null auto_increment,<br />
    name varchar(50) not null,<br />
    email_id varchar(100),<br />
    contact_no varchar(20),<br />
    address_id int(11),<br />
    primary key(customer_id),<br />
    foreign key(address_id) references address(address_id));</strong></p>
<p><strong></strong> </p>
<p>Address is a simple table and customer table contains a column to store the corresponding address_id.</p>
<p>Corresponding Beans would be with following fields and their getter and setter methods:</p>
<blockquote><p>public class Address {</p>
<p> long addressId;<br />
 String addressLine1;<br />
 String addressLine2;<br />
 String city;<br />
 String state;<br />
 Integer pincode;<br />
 Customer customer;</p></blockquote>
<p> </p>
<blockquote><p>public class Customer {<br />
 Long customerId;<br />
    String name;<br />
    String emailAddress;<br />
    String contactNo;<br />
    Address address;</p></blockquote>
<p> </p>
<p>The Hibernate mapping files would look like below:</p>
<p>Address.hbm.xml:</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243;?&gt;<br />
&lt;!DOCTYPE hibernate-mapping PUBLIC<br />
&#8220;-//Hibernate/Hibernate Mapping DTD 3.0//EN&#8221;<br />
&#8220;<a href="http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd</a>&#8220;&gt;</p>
<p>&lt;hibernate-mapping&gt;<br />
  &lt;class name=&#8221;entities.Address&#8221; table=&#8221;ADDRESS&#8221;&gt;<br />
    &lt;id name=&#8221;addressId&#8221; type=&#8221;long&#8221; column=&#8221;address_id&#8221; &gt;<br />
     &lt;generator/&gt;<br />
  &lt;/id&gt;<br />
  <br />
  &lt;property name=&#8221;addressLine1&#8243;&gt;<br />
     &lt;column name=&#8221;address_line1&#8243; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;addressLine2&#8243;&gt;<br />
     &lt;column name=&#8221;address_line2&#8243; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;city&#8221;&gt;<br />
     &lt;column name=&#8221;city&#8221; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;state&#8221;&gt;<br />
     &lt;column name=&#8221;state&#8221; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;pincode&#8221;&gt;<br />
     &lt;column name=&#8221;pincode&#8221; /&gt;<br />
    &lt;/property&gt;<br />
  &lt;/class&gt;<br />
&lt;/hibernate-mapping&gt;</p></blockquote>
<p> </p>
<p>address.hbm.xml is simple and there is no much complications.</p>
<p>Customer.hbm.xml:</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243;?&gt;<br />
&lt;!DOCTYPE hibernate-mapping PUBLIC<br />
&#8220;-//Hibernate/Hibernate Mapping DTD 3.0//EN&#8221;<br />
&#8220;<a href="http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd</a>&#8220;&gt;</p>
<p>&lt;hibernate-mapping&gt;<br />
  &lt;class name=&#8221;entities.Customer&#8221; table=&#8221;CUSTOMER&#8221;&gt;<br />
    &lt;id name=&#8221;customerId&#8221; type=&#8221;long&#8221; column=&#8221;customer_id&#8221; &gt;<br />
     &lt;generator/&gt;<br />
  &lt;/id&gt;<br />
  <br />
  &lt;property name=&#8221;name&#8221;&gt;<br />
     &lt;column name=&#8221;NAME&#8221; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;emailAddress&#8221;&gt;<br />
     &lt;column name=&#8221;email_id&#8221; /&gt;<br />
    &lt;/property&gt;<br />
   <br />
    &lt;property name=&#8221;contactNo&#8221;&gt;<br />
     &lt;column name=&#8221;contact_no&#8221; /&gt;<br />
    &lt;/property&gt;</p>
<p>    <strong>&lt;many-to-one name=&#8221;address&#8221;<br />
                column=&#8221;address_id&#8221;<br />
                cascade=&#8221;all&#8221;  unique=&#8221;true&#8221;<br />
                /&gt;<br />
</strong>  &lt;/class&gt;<br />
&lt;/hibernate-mapping&gt;</p></blockquote>
<p> </p>
<p>Point to note here is the Many-to-one tag. We are associating the entities with one-to-one but we are using a many-to-one tag. When using many-to-one in one-to-one mapping, we ignore the ‘many’ part. We are not caring how many address are bound to a customer, but here we ensure that only one customer (to-one part) is bound to an address.</p>
<p>In customer class, by defining the address variable as below:</p>
<p> Address address;</p>
<p> (As its not a List/Set or collection) we ensure that its just an one-to-one relationship.</p>
<p> Now we can test it using following code:</p>
<p>// save customer<br />
         Customer customer = new Customer();<br />
         customer.setName(&#8220;Surya&#8221;);<br />
         customer.setEmailAddress(&#8220;<a href="mailto:surya@gmail.com">surya@gmail.com</a>&#8220;);<br />
         customer.setContactNo(&#8220;91-932686876&#8243;);<br />
         Address address = new Address();<br />
         address.setAddressLine1(&#8220;xxx-street, near Surya Complex&#8221;);<br />
         address.setCity(&#8220;Pune&#8221;);<br />
         address.setState(&#8220;Maharashtra&#8221;);<br />
         address.setPincode(11111);<br />
        <br />
         customer.setAddress(address);<br />
         address.setCustomer(customer);<br />
         session.save(customer);</p>
<p>   //fetch all customers<br />
           <br />
            Query query = session.createQuery(&#8220;from Customer customer&#8221;);<br />
            for(Iterator it=query.iterate();it.hasNext();){<br />
             Customer customer1 = (Customer) it.next();<br />
             Address address1 = customer1.getAddress();<br />
                System.out.println(&#8220;customer ID: &#8221; + customer1.getCustomerId());<br />
                System.out.println(&#8220;Name: &#8221; + customer1.getName());<br />
                System.out.println(&#8220;address: &#8221; + address1.getAddressLine1());<br />
                System.out.println(address1.getAddressId());<br />
                System.out.println(address1.getAddressLine2());<br />
                System.out.println(address1.getCity());<br />
                System.out.println(address1.getState());<br />
                System.out.println(address1.getPincode());<br />
              }</p>
<p> </p>
<p>To download full code of above example please <a href="http://www.skill-guru.com/blog/wp-content/uploads/2010/02/HibernateExample1.zip">click here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2010/02/16/one-to-one-mapping-in-hibernate-using-foreign-key-association/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Spring Certification in India</title>
		<link>http://www.skill-guru.com/blog/2010/02/04/spring-certification-in-india/</link>
		<comments>http://www.skill-guru.com/blog/2010/02/04/spring-certification-in-india/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 05:35:38 +0000</pubDate>
		<dc:creator>smitha</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Mock  Exam / Certifications]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=1648</guid>
		<description><![CDATA[Spring framework is very popular and need of spring knowledge among the IT industry is raising. But I found that getting a spring certification is not very easy.  To get the spring certification voucher you have to take spring training from spring source, which are available in few major cities of India or you have [...]]]></description>
			<content:encoded><![CDATA[<p>Spring framework is very popular and need of spring knowledge among the IT industry is raising. But I found that getting a spring certification is not very easy.  To get the spring certification voucher you have to take spring training from spring source, which are available in few major cities of India or you have to have a prior work experience in spring.</p>
<p>You can find spring training locations here&#8230;</p>
<p><span id="more-1648"></span></p>
<p><a href="http://mylearn.vmware.com/portals/springsource/search/findcourse.cfm?ui=s2">http://mylearn.vmware.com/portals/springsource/search/findcourse.cfm?ui=s2</a></p>
<p>You need to get registered to see information on fees, location etc.</p>
<p>If you don’t want to go for spring training then you must have experience in working on spring. Spring source such candidates as &#8216;grandfathered&#8217; candidates. You need to provide a ‘Grandfather Application’ providing proof of their experience on spring. Some more details are given below</p>
<blockquote><p>Spring Framework is offered to two groups of people: those who have attended a 4-day Core Spring training course and those who haven&#8217;t attended the course but have gained knowledge of Spring from other sources, such as private study, client projects, forums etc.  We call this second group, &#8216;grandfathered&#8217; candidates.</p>
<p>A grandfathered candidate is a person who has not attended the four-day Core Spring class but who has satisfied any one of the following criteria:</p>
<p>•             Demonstrable evidence of (1) successful Spring solution completed. Evidence will include customer name and contact information reference.</p>
<p>•             Demonstrable evidence of adding value to Spring Products and/or the Community. Candidate should provide supporting information from one or more of the following examples:</p>
<p>a. Forum post<br />
b. Software patches<br />
c. Articles promoting Spring or explaining Spring<br />
d. User Group involvement</p>
<p>•             Possession of a Spring Framework Professional Certification from a previous version of Spring.</p>
<p>These are the only ways in which you can obtain a voucher in order to take the certification exam and become a Certified Spring Professional. More information including sample questions and costs can be found here: <a href="http://www.springsource.com/training/certification/springprofessional">http://www.springsource.com/training/certification/springprofessional</a></p></blockquote>
<p><a href="http://www.skill-guru.com/blog/wp-content/uploads/2010/02/SpringSource-Certification-Program-Grandfather-Application_APAC.doc">Clck here </a>to see the Grandfather Application.</p>
<p><strong>Update</strong> : Danielbutcher has added a <a href="http://www.skill-guru.com/test/81/core-spring-certification">Spring Certification practice test</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2010/02/04/spring-certification-in-india/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How Good is your Business English ?</title>
		<link>http://www.skill-guru.com/blog/2010/01/11/how-good-is-your-business-english/</link>
		<comments>http://www.skill-guru.com/blog/2010/01/11/how-good-is-your-business-english/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:39:21 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[business english]]></category>
		<category><![CDATA[English Language/TOEFL/IELTS]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=1443</guid>
		<description><![CDATA[For those whose English is not the mother tongue or it is not their first language , they might not realize that they make some minor mistakes in day to day communication. The mistakes might not seem obvious , but they do not leave a good impression especially if you are dealing with customers and [...]]]></description>
			<content:encoded><![CDATA[<p>For those whose English is not the mother tongue or it is not their first language , they might not realize that they make some minor mistakes in day to day communication. The mistakes might not seem obvious , but they do not leave a good impression especially if you are dealing with customers and clients.</p>
<p>Steve who runs <a href="http://www.proesl.com">Pro-ESL</a> is Business English expert and is the business language Guru at <a href="http://www.skill-guru.com">Skill-Guru</a>. He has created a small test for our reader . Take this <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=59&amp;testName=Business-English-Test">business english test</a> to check if you  make some of the common mistakes or not.</p>
<p>Do you want Steve to cover some specific topic on business English ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2010/01/11/how-good-is-your-business-english/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Prometric fails to Deliver &#8211; Online Cat crashes</title>
		<link>http://www.skill-guru.com/blog/2009/11/30/prometric-fails-to-deliver-online-cat-crashes/</link>
		<comments>http://www.skill-guru.com/blog/2009/11/30/prometric-fails-to-deliver-online-cat-crashes/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:31:22 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CAT]]></category>
		<category><![CDATA[prometric]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=1174</guid>
		<description><![CDATA[Over 250,000  students take the prestigious CAT exam every year in India . The test was conducted using pencil and paper.  Indian Institutes of Management, a network of India’s top business schools in India which conducts CAT had a  $40 million deal to computerize IIM’s Common Admission Test. This deal was bagged by none other [...]]]></description>
			<content:encoded><![CDATA[<p>Over 250,000  students take the prestigious CAT exam every year in India . The test was conducted using pencil and paper.  Indian Institutes of Management, a network of India’s top business schools in India which conducts CAT had a  <a href=" Skill - Guru Validate your Skills - Take the Free Test » Home | » Tests | » Blog | » Forum | » How It Works? | » Contact Us |      * Home     * About     *  Home &gt; Education, Technology &gt; Prometric bags $40 million deal to computerize IIM’s Common Admission Test Prometric bags $40 million deal to computerize IIM’s Common Admission Test July 10th, 2009 Vinay Edit Leave a comment Go to comments  Common Admission Test also know as CAT,  is the main admission decider used in the selection process for the Indian Institutes of Management, a network of India’s top business schools in Ahmedabad, Bang­alore, Calcutta, Indore, Kozhikode, Lucknow and Shillong. Of the 250,000 students who take the exam each year, just over 1,500 are admitted, making it one of the most competitive admission exams in the world.  Baltimore-based Prometric, which is a wholly owned subsidiary of Educational Testing Service, focuses on technology-enabled testing and assessment services with test development, test delivery and data management services. The company delivers and administers more than 7 million tests a year for 450 clients in industries such as education, health care, government and information technology. It offers online testing or use of a network of more than 10,000 test centers in 163 countries.  To handle the CAT deal, Prometric will use its 185 employees in India and add resources, including test development and support staff, in India, according to the company. Prometric began doing business in India in 1997 and has worked with companies in the country such as Microsoft Inc., Oracle Corp., the Project Management Institute and Infosys Technologies Ltd.  Prometric had been in the middle of a strong stretch of growth, with five years of 7-8 percent growth annually. The company was purchased by Educational Testing Service in 2007. Brannick expects continued growth in 2009. This year, the company is also increasing investments in test center security and Web-based services and operations.  ShareThis Categories: Education, Technology Tags: CAT, prometric Related Posts :      * No Related Post  Comments (0) Trackbacks (0) Leave a comment Trackback     1. No comments yet.     1. No trackbacks yet.  Logged in as Vinay. Logout » Subscribe to comments feed Twitter has been written in which programming language ? LearningMate gets $10million investment from Helix ventures RSS feed      * Google     * Youdao     * Xian Guo     * Zhua Xia     * My Yahoo!     * newsgator     * Bloglines     * iNezha  Market you skills and services at Skill-Guru ------------------------------------------- SCJP Mock Test  EJB Interview Questions  Spring Certification Mock Test  Hibernate Interview Questions  Free Aptitude Test  QA Interview Questions  Java Interview Questions  Groovy Quiz  .Net Interview questions  C# Interview questions  Informatica Interview questions  Free DMV Permit Test  Recent Posts      * New Jersey driving test     * Advanced features of ASP .Net Chart Control     * Tips for clearing Road Test     * Analytics for twitter     * Free wordpress themes     * Problem solving through crowdsourcing – Netflix Challenge 2009     * Virtualization in Action     * Sun Certified Enterprise Architect Assignment  Blogroll      * Pre employment screening     * Reference Designer  Categories      * Aptitude Test     * Business     * Career     * driving tests     * Education     * Entrepreneurship     * Funding     * Google     * Interview questions     * Jobs     * Microsoft     * Miscellaneous     * Mock Exam / Certifications     * Programming / tutorials     * SCJP5 Mock exam     * search engine optimization     * Spring     * StartUp     * Tech news     * Technology     * Tutorials  Archives      * November 2009 (26)     * October 2009 (31)     * September 2009 (22)     * August 2009 (39)     * July 2009 (24)     * June 2009 (25)  Tags .NET acquisition amazon cloud computing Apple Aptitude Test C# cloud computing design driving tests EJB etattva Facebook Google grails grails tutorial groovy hibernate Hibernate Tutorial India Infosys Interview questions iPhone iphone os 3.0 j2ee java java mock exam JForum integration Jobs jpa jsf jsp Microsoft news oracle SCJP Mock Test seo Signal Integrity spring Spring Transactions struts2 sun java certification techcrunch Twitter UML virtualization SCJP Mock Test 	Hibernate Tutorial 	Spring interview questions 	EJB Interview Questions JSF tutorials for beginners 	Hibernate interview questions 	QA interview questions 	Free Aptitude tests Servlets and JSP Interview Questions 	JSF Interview questions 	Hibernate interview questions 	Java interview questions Spring JPA Tutorial 	Groovy Interview Questions 	Design Patterns Quiz 	Job Screening Tests SEO Interview questions 	PL/SQL interview questions 	.Net Interview questions 	C# Interview Questions Informatica Interview questions 	JMS interview questions 	Javascript Interview questions 	Hibernate Quiz Top">$40 million deal to computerize IIM’s Common Admission Test</a>. This deal was bagged by none other than Prometric.</p>
<p>For $40 million , Prometric has done a very lousy job.  When students went in to take the exam on 28 Nov, the servers crashed. And not all of the 250,000 students were taking the test. It was only 20% of them.</p>
<p>The students who took the online Common Admission Test, some of them were not quite convinced about the new format of the examination. And their fears had come true.</p>
<p>Well 50,000 stduents concurrently taking test should not be a rocket science . Compare to ebay , Amazon and twitter which handle multiples of traffic every minute. Looks like prometric did not even bothered to conduct a pilot run.</p>
<p>No update on when the service will be restored and if IIM can afford to have this kind of glitch again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/11/30/prometric-fails-to-deliver-online-cat-crashes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Interview questions</title>
		<link>http://www.skill-guru.com/blog/2009/08/04/spring-interview-questions/</link>
		<comments>http://www.skill-guru.com/blog/2009/08/04/spring-interview-questions/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 02:17:25 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Interview questions]]></category>
		<category><![CDATA[Mock  Exam / Certifications]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=252</guid>
		<description><![CDATA[You can test your knowledge of spring by taking the Spring technical test or Spring Interview questions
This test will also help in Spring Certification exams
If you have some more questions to share , register or upgrade as a guru and add the questions.
Related Post
SpringSource acquired by VMWare 
Which is better : Spring’s Transaction management or [...]]]></description>
			<content:encoded><![CDATA[<p>You can test your knowledge of spring by taking the <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=14" target="_blank">Spring technical test</a> or <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=14">Spring Interview questions</a></p>
<p>This test will also help in <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=14">Spring Certification exams</a></p>
<p>If you have some more questions to share , register or upgrade as a guru and add the questions.</p>
<p><strong>Related Post</strong></p>
<p><a href="http://www.skill-guru.com/blog/2009/08/11/springsource-acquired-by-vm/">SpringSource acquired by VMWare </a></p>
<p><a href="http://www.skill-guru.com/blog/2009/07/27/which-is-better-springs-transaction-management-feature-or-ejbs-container-managed-transaction/">Which is better : Spring’s Transaction management or EJB’s Container managed transaction</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/08/04/spring-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SCJP Mock test for Standard Edition 6 available</title>
		<link>http://www.skill-guru.com/blog/2009/07/29/scjp-mock-test-1-6-is-release/</link>
		<comments>http://www.skill-guru.com/blog/2009/07/29/scjp-mock-test-1-6-is-release/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 02:45:15 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Mock  Exam / Certifications]]></category>
		<category><![CDATA[java mock exam]]></category>
		<category><![CDATA[SCJP Mock Test]]></category>
		<category><![CDATA[SCJP6 mock test]]></category>
		<category><![CDATA[sun certification dump]]></category>
		<category><![CDATA[sun java certification]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=197</guid>
		<description><![CDATA[Skill-guru is pleased to announce the release of 56 questions for SCJP mock test.  Skill-guru is a test platform which allows users to create and publicize their tests on any subjects or topics.
SCJP 6 mock test is based on SCJP 1.6 syllabus of Sun Certified Programmer for the Java Platform, Standard Edition 6.0 (CX-310-065)
The questions [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.skill-guru.com" target="_self">Skill-guru</a> is pleased to announce the release of 56 questions for <a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=18" target="_self">SCJP mock test</a>.  <a href="http://www.skill-guru.com" target="_self">Skill-guru</a> is a test platform which allows users to create and publicize their tests on any subjects or topics.</p>
<p><a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=18" target="_self">SCJP 6 mock test</a> is based on SCJP 1.6 syllabus of <a href="http://www.sun.com/training/catalog/courses/CX-310-065.xml" target="_blank">Sun Certified Programmer for the Java Platform, Standard Edition 6.0 (CX-310-065)</a></p>
<p>The questions on the test are original and are completely free. We had these test running under our old site <a href="http://www.etattva.com">etattva</a>. Close to 6000 people had taken the test last one year. Now we heve moved the tests and the test taker database to this new site.  Here we plan to offer more tests to test takers on a variety of subjects.</p>
<p>The best part is that you can register your self as guru and create your own tests.</p>
<p>You would have to register to take the test. Please post in your comments and feedback which will help us make the test better.</p>
<p>So enjoy your<a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=18"> </a><a href="http://www.skill-guru.com/test/12/scjp-5-mock-test">free scjp mock test</a>.</p>
<p><strong>Update</strong> : There is one more<a href="http://www.skill-guru.com/test/67/scjp-6-mock-practice-test"> SCJP Mock test </a>with 125 questions and explanations added by Kalyan .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/07/29/scjp-mock-test-1-6-is-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prometric bags $40 million deal to computerize IIM&#8217;s  Common Admission Test</title>
		<link>http://www.skill-guru.com/blog/2009/07/10/prometric-bags-40-million-deal-to-computerize-the-indian-institutes-of-management%e2%80%99s-common-admissions-test/</link>
		<comments>http://www.skill-guru.com/blog/2009/07/10/prometric-bags-40-million-deal-to-computerize-the-indian-institutes-of-management%e2%80%99s-common-admissions-test/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 18:13:16 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CAT]]></category>
		<category><![CDATA[prometric]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=122</guid>
		<description><![CDATA[Common Admission Test also know as CAT,  is the main admission decider used in the selection process for the Indian Institutes of Management, a network of India’s top business schools in Ahmedabad, Bang­alore, Calcutta, Indore, Kozhikode, Lucknow and Shillong. Of the 250,000 students who take the exam each year, just over 1,500 are admitted, making [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Common Admission Test also know as CAT,  is the main admission decider used in the selection process for the Indian Institutes of Management, a network of India’s top business schools in Ahmedabad, Bang­alore, Calcutta, Indore, Kozhikode, Lucknow and Shillong. Of the 250,000 students who take the exam each year, just over 1,500 are admitted, making it one of the most competitive admission exams in the world.</p>
<p align="justify">Baltimore-based Prometric, which is a wholly owned subsidiary of Educational Testing Service, focuses on technology-enabled testing and assessment services with test development, test delivery and data management services. The company delivers and administers more than 7 million tests a year for 450 clients in industries such as education, health care, government and information technology. It offers online testing or use of a network of more than 10,000 test centers in 163 countries.</p>
<p align="justify">To handle the CAT deal, Prometric will use its 185 employees in India and add resources, including test development and support staff, in India, according to the company. Prometric began doing business in India in 1997 and has worked with companies in the country such as Microsoft Inc., Oracle Corp., the Project Management Institute and Infosys Technologies Ltd.</p>
<p align="justify">Prometric had been in the middle of a strong stretch of growth, with five years of 7-8 percent growth annually. The company was purchased by Educational Testing Service in 2007. Brannick expects continued growth in 2009. This year, the company is also increasing investments in test center security and Web-based services and operations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/07/10/prometric-bags-40-million-deal-to-computerize-the-indian-institutes-of-management%e2%80%99s-common-admissions-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LearningMate gets $10million investment from Helix ventures</title>
		<link>http://www.skill-guru.com/blog/2009/07/10/learningmate-gets-10million-investment-from-helix-ventures/</link>
		<comments>http://www.skill-guru.com/blog/2009/07/10/learningmate-gets-10million-investment-from-helix-ventures/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 17:29:25 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[helix Ventures]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[learningMate]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=120</guid>
		<description><![CDATA[Mumbai based private equity firm Helix Investments has invested under $10 million in LearningMate Solutions Pvt Ltd, a Mumbai based provider of e-learning education solutions.
LearningMate’s services include content development, learning application and learning management systems solutions. The company has its offices in US, UK and India and currently employs about 200 people.
This news was reported [...]]]></description>
			<content:encoded><![CDATA[<p>Mumbai based private equity firm Helix Investments has invested under $10 million in LearningMate Solutions Pvt Ltd, a Mumbai based provider of e-learning education solutions.</p>
<p>LearningMate’s services include content development, learning application and learning management systems solutions. The company has its offices in US, UK and India and currently employs about 200 people.</p>
<p>This news was reported by VCCircle . The complete news can be found <a href="http://www.vccircle.com/500/news/helix-invests-under-10-million-in-learningmate" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/07/10/learningmate-gets-10million-investment-from-helix-ventures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GE’s ex-CEO Jack Welch joins stampede to online education</title>
		<link>http://www.skill-guru.com/blog/2009/07/09/ge%e2%80%99s-ex-ceo-jack-welch-joins-stampede-to-online-education/</link>
		<comments>http://www.skill-guru.com/blog/2009/07/09/ge%e2%80%99s-ex-ceo-jack-welch-joins-stampede-to-online-education/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 15:06:51 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Jack Welch]]></category>
		<category><![CDATA[online education]]></category>

		<guid isPermaLink="false">http://www.skill-guru.com/blog/?p=118</guid>
		<description><![CDATA[Former General Electric Co. chief executive Jack Welch has endorsed online education by lending his name and investing his money in Cleveland based Chancellor University. The university is naming its MBA program the Jack Welch Management Institute.
There had been concerns about academic quality voiced by some traditionalists in online education. By lending his name Jack [...]]]></description>
			<content:encoded><![CDATA[<p>Former General Electric Co. chief executive Jack Welch has endorsed online education by lending his name and investing his money in Cleveland based Chancellor University. The university is naming its MBA program the Jack Welch Management Institute.</p>
<p>There had been concerns about academic quality voiced by some traditionalists in online education. By lending his name Jack Welsh is giving credibility to online eduction .</p>
<p>According to EduVentures, an industry research organization, online higher education is expected to generate $11.5 billion in revenue this year.</p>
<p>Read <a href="http://www.webwire.com/ViewPressRel.asp?aId=98630" target="_blank">here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skill-guru.com/blog/2009/07/09/ge%e2%80%99s-ex-ceo-jack-welch-joins-stampede-to-online-education/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

