Saturday 20 September 2014

Best Engineering colleges in India

Hey guys i am back again!

I recently viewed the times of India rankings and India today also.Seriously on what basis they rank colleges? maybe the amount of money they get ranking a third tier college above tier 1 or 2 insti,who knows. 

outlook fares better than the former but again is not good ,infact i find dataquest rankings far better than the above three but still it is not upto a level that it can boast of or students should take reference!

so here I am presenting you the most authentic list of India's best engineering colleges/top engineering colleges(hope you find it the best ranking done so far and please share it if you like it so that prospective students future remains safe as he/she is not brain washed and if you have some suggestions comment below please don't mail me as i don't reply back via mails :) )


To all the #VIT and #SRM lovers this list is not for you so you can go back and enjoy toi and india today rankings just to please you!

The reason i have ranked new IIT's in groups is coz they are still new and nobody knows how well they can be five or six years down the line they can emerge as good as iit rkee/bhu/g and can end up lower than top 5 nit's,dtu and bit mesra.

The ranking is done on the basis of academic excellence,performance in various competitions by insti students,placements and research work done.


1. #iit bombay
2. #iit delhi
3. #iit kanpur
4. #iit kgp 
5.#iit madras
6. #iiit hyderabad
7. # iit rorkee
8.#iit bhu
9.#iit g
10.#bits pilani
11.#iit hyderabad,#iit indore, #bit mesra~ #nit t/w/allahabad/karnataka/calicut/#dtu
20.#iit ropar,#iit gandhinagar,#iit jodhpur
23. #iit patna,#iit bhubaneswar,#iit mandi 
26.#nsit
27. #ism dhanbad,#iiit delhi
29 #nit jaipur/#iiit allahabad
31.# nit nagpur/kkr
33. #jadavpur university~ #nit bhopal~#iiit bangalore
36. #daiict(pec can be added here)
37..#nit surat/jalandhar
39.# nit durgapur/hamirpur
41.#nit silchar/jamshedpur/rourkela
44.#iiest shibpur
45.#thapar university/VJTI
47.#Lnmiit jaipur(jamia can be added here)
48.#sgsits,indore
49.#psg college of technology
50.#Manipal

Thursday 18 September 2014

Epic Systems Interview Question for Software Engineer/Developer

1>Given an NxN matrix with unique integers : Find and print positions of all numbers such that it is the biggest in its row and also the smallest in its collumn .
eg : In 3 x 3 with elements
1 2 3Given a Singly Linked List which has data members sorted in ascending order. Construct aBalanced Binary Search Tree which has same data members as the given Linked List.
Examples:
Input:  Linked List 1->2->3
Output: A Balanced BST 
     2   
   /  \  
  1    3 


Input: Linked List 1->2->3->4->5->6->7
Output: A Balanced BST
        4
      /   \
     2     6
   /  \   / \
  1   3  4   7  

Input: Linked List 1->2->3->4
Output: A Balanced BST
      3   
    /  \  
   2    4 
 / 
1

Input:  Linked List 1->2->3->4->5->6
Output: A Balanced BST
      4   
    /   \  
   2     6 
 /  \   / 
1   3  5   

4>
Inorder Tree Traversal without recursion and without stack!