Skip to main content

About Applying to Canadian University


*About Applying to Canadian University (specially University of Calgary)*


Many of you are applying for FALL 2011 and I am receiving many mails about what will make a successful application. As much as I will love to answer all those emails but things are getting very busy for me now a days with courses, research and  teaching. So I have decided to cheat and write a blog about it instead.. yay :).

Before giving you any suggestions one big suggestion is graduate study is 
quite stressful and if you are not really passionate about research you can get bored very soon. So try to select a research area that really interests you!.

It is hard to tell what exactly will make a successful application but I can definitely share my own experience with you.

  1. Firstly, I have contacted with some senior alumni from BUET expressing my interest to apply to University of Calgary. I have requested them to send me some information about the type of research that are going on at U of C and a list of Professor with good funding who are also willing to recruit new grad students.
  2. After receiving that information from kind BUETians, I have sent a brief email to those professor’s about my interest to work with them. I was very lucky to receive positive response from most of them!.
  3. Then, I prepared my application package and applied to U of C. [in Canada it is important to have a positive reply from professor before you apply]
  4. About a months later, I received an email from one of the respected Professor. He expressed his interest to work with me and he wanted to take an interview via Skype. So we make an appointment for the interview.
  5. The Interview was about 40 minutes long and he asked me various questions from basic computer science and software engineering field.
  6. I have done some background study about the research area of that Professor and read some publications from his research lab. So I was quite confident during that interview :).
  7.  A week after the interview, I got a confirmation email from the professor and he also offered me a summer internship if I could come to Calgary in June!. [Which I happily accepted :)]
  8. Alhamdulillah, my application was successful!.

Everyone has his own experience about what makes an application successful and this will certainly be different from person to person. If we share our experience we can learn from each other. This will help us to prepare a strong application package and our chance of getting admission with full funding will definitely increase. So feel free to leave a comment about your experience!

Good luck with your application!.

Best
-Zabed
--
Md.Zabedul Akbar (Himel)
U of C Grad Student

Comments

Popular posts from this blog

Creating dynamic email templates using C# and Office Outlook

It is quite common for many applications to send automated email notifications. Couple of months ago, I have worked on improving our old email template format to make it more user friendly . In this tutorial I will walk you though regarding how I took advantage of Microsoft Outlook to quickly generate custom email template and later using the html template for building an automated custom email application using C#. Steps: Creating Templates: Using the rich text editor support  in Outlook create a nicely formatted email. Use placeholder text for the values you like to change dynamically based on your task completion status. To keep this tutorial simple, I have created a  simple table with placeholder text inside the third bracket  [place holder text]. However, you can use anything supported by outlook editor. Figure: Email Template Getting HTML code: Send the created email to your own address. After that, open the sent email and right click to view source . It

Why using XOR might not be a good hash code implementation?

Using XOR for computing hash codes works great for most of the cases specially when order of computation does not matter. It also has the following benefits: XOR has the best bit shuffling properties of all bit-operations and provides better distributions of hash values. It is a quick single cycle operation in most computer  Order of computation does not matter. i.e. a^b = b^a However, if ordering of elements matter then it is often not a good choice. Example For simplicity consider you have a class with two string properties named Prop1 and Prop2  and your GetHashCode returns the xor of their hash code. It will work fine for most of the cases except cases where same values are assigned to different properties. It will generate same hash-code i.e. collision in that case as can be seen in the below example . However, using the modified approach as recommenced by Joshua Bloch's in Effective Java which uses prime multiplication and hash chaining provides more unif

SQL Performance improvement for User defined table types

Recently, I have dealt with an interesting performance issue with one of my SQL query and thought I will share the experience here. Context: We had a legacy stored procedure responsible for saving large amount of excel row data to our database tables. It was using   User Defined Table Types as one of the parameter to get a list of row data from excel. However, the stored procedure was taking very long time to save the large data set. Root Cause: After quite a bit of investigation using execution plan in SSMS, I was able to narrow down the performance issue to the following: Joining with User defined table type was taking >90 percent of the time A custom hash function which has been used multiple times as a join criteria was also quite expensive to compute. After doing additional research using stack overflow , I was able to figure out that the primary reason for the poor performance doing a  JOIN on Table Valued parameters is that : it does not keep statistics and a