Skip to main content

Why Re-Training Programs may create/fix Jobs in US




Proven: Re-Training Programs Institutes has worked for India. The IT boom started decade ago in India and has employed several millions of its workforce and many of these folks has acquired required skills in these institutes.


When I say it worked it means people are trained cheaply and quickly in skills which are highly desired in the job market and are able to get a job without having any formal degree in Computers.

Most of the job's advertised requires a degree and some skills, and at the same time these organization's don't have enough resources to train their new hires who lacks needed skills so its a balance they look for some degree (not necessarily a formal degree in Computers) with right skills are preferred. 


Lets compare Re-Training Program Institutes with University Education.


University Education
  • Opportunity to be a student for a long time which helps us listen, observe and learn from others, and this is not possible at the workplace.
  • Very expensive
  • Requires longer commitment
  • Becomes extremely difficult if you are also working fulltime
  • Very generic course ware and you may not like all
  • And at the end you may not even get a degree for failing few classes
Affiliated College
  • They are less cheaper then Universities
  • Less greater environment or people around to learn
Self Learning
  • You have to try learn everything from the books
  • Works better for working folks
  • You may end up learning everything hard way 

Re Training Institutes
  • They are less expensive (10 times cheaper then affiliated college)
  • Mainly focus on what is required in the real market
  • Don't bother you with class attendance and degrees
  • Easy and quick way of acquiring new skills
  • Usually their course ware are for couple of weeks which is perfect for job seeker or someone who wants to add new skills to his resume or use at his work without the pain of self learning everything hard way
As you can see Re Training Institute model fits many people jobless or not and I believe it also fits to current US job market, and this doesn't have to be for IT as it can also be applied for any other industry.

Re-Training Institutes have really worked for India and they are popular, located almost every where and they bridge the gap between a university education and required real job skills.
One more thing very interesting about them is they pay no taxes in India.

I have experience studying at one of best universities in US, India and also being part of these Institutes and hiring people at many enterprises.










Comments

Popular posts from this blog

Access multiple Databases in JPA

According to JPA specification we can define multiple "persistence-unit" elements (i.e. like below) in persistence.xml file and can easily refer them inside Dao layers as this. public class PolarDaoImpl {     @PersistenceContext(unitName="PolarPU")     protected EntityManager entityManager; -- } public class BearDaoImpl {     @PersistenceContext(unitName="BearPU")     protected EntityManager entityManager; -- } Checkout sample persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">     <!-- Database 1 -->     <persistence-unit name="PolarPU" transaction-type="RESOURCE_LOCAL">         <

JPA 2 new feature @ElementCollection explained

@ElementCollection is new annotation introduced in JPA 2.0, This will help us get rid of One-Many and Many-One shitty syntax. Example 1: Stores list of Strings in an Entity @Entity public class Users implements Serializable {     private static final long serialVersionUID = 1L;     @Id     @GeneratedValue(strategy = GenerationType.AUTO)     private Long id;     @ElementCollection     private List<String> certifications = new ArrayList <String> ();     public Long getId() {         return id;     }     public void setId(Long id) {         this.id = id;     }     public List <String> getCertifications() {         return certifications;     }     public void setCertifications(List <String> certifications) {         this.certifications = certifications;     } .. }         Users u = new Users();         u.getCertifications().add("Sun Certified Java Programmer");         em.persist(u); Generated Tables    Users    Co

Reuse JPA Entities as DTO

Note : Major design advantages of JPA Entities are they can detached and used across tiers and networks and later can by merged. Checkout this new way of querying entities in JPA 2.0 String ql = " SELECT new prepclass2.Employee (e.firstname, e.lastname) FROM Employee e "; List<Employee> dtos = em.createQuery(ql).getResultList(); The above query loads all Employee entities but with subset of data i.e. firstname, lastname. Employee entity looks like this. @Entity @Table(name="emp") public class Employee implements Serializable {     private static final long serialVersionUID = 1L;     @Id     @GeneratedValue(strategy = GenerationType.AUTO)     private Long id;     @Column     private String firstname;     @Column     private String lastname;     @Column     private String username;     @Column     private String street;     @Column     private String city;     @Column     private String state;     @Column     private String zipc