Advertisement

Vulms Tutorial for vu students

This tutorial is for vu students it will show you how to operate Vulms from your given id.

CS 101 Introductions to Computing Assignment # 7

Upload Instructions
Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.
Rules for Marking
1. You have to develop the assignment in Notepad. If you use any tool other than Notepad. Your marks will be deducted.
2. You have to submit the .html or .htm file. None of the other files will be acceptable.
3. The assignments will not be graded if it will be submitted after the due date mentioned above.
4. The assignment will not be graded if the solution file will not be opened.


Objective
This assignment has been designed to provide you some hands-on experience on Java script and HTML.

Question

1. You have to develop a web page visible in the snap shot using notepad, HTML and JAVA SCRIPT.

2. On page load a message should display “Welcome from roll no” : Please specify your roll number here, for example, if your roll no is mc040700xxx, it should display a message “Welcome from mc040700xxx”. Put your own ID instead of mc040700xxx.

3. At the top centre of the page, time should be displayed with postfix AM or PM. Please refer to the snap shot for correct format.
Hint: var date=new Date();

4. Display the centre aligned text “Please, Click on your favourite colour”.

5. Choose any five colours of your choice, and develop one button for each colour.
6. When someone clicks on the button, background colour of the webpage should change accordingly. For example, if you click on button “red”, colour of the background should change to red. Use only on click event. On mouse over is not acceptable.

7. On page unload display “Thanks for visiting”.


Assignment # 5 Introduction to Computing (CS 101)

Upload Instructions
Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.
Rules for Marking
Please note that your assignment will not be graded if:
• It is submitted after due date
• The file you upload does not open
• The file you uploaded is copied from some one else
• Submit only Excel file with extension .xls , no other file like Notepad or word file should be submitted.
Objective
This assignment has been designed to enable you to draw graphs and use functions in MS Excel.

Assignment
You have to make an Excel sheet, similar to the one provided in the snapshot at the end of the document. Following things ought to be part of your solution:

• Enter the provided marks in the sheet, and then calculate the Total marks using Sum function provided in Excel or use a formula to calculate the Total marks. You will not get any marks if you entered these two values manually. Also draw borders around the values entered in the sheet. (Marks 7)
• Make a graph of these marks using Column Chart, as shown in the snapshot. The graph should have a title named Assignments’ Marks and the x-axis and y-axis should be labeled Assignments and Marks respectively. (Marks 8)



Assignment # 4 Introduction to Computing (CS 101)

Upload Instructions
Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.
Rules for Marking
Please note that your assignment will not be graded if:
• It is submitted after due date
• The file you upload does not open
• The file you uploaded is copied from some one else
• It is developed using any tool / software like MS Front Page, Dreamweaver etc. (Only Use HTML Tags in Notepad).
• Submit only html file with extension .html / .htm . No other file like Notepad or word file should be submitted.
Objective
This assignment has been designed to enable you to draw a table in a webpage and use mouse event-handler in JavaScript.
Assignment
You have to develop a web page similar to the one given below. (Find the Screen Capture attached below) This page must have the following properties:

• Use HTML tags that you studied in Web Development lectures of CS101.
• The title of the page should be “My student ID is xxxxxxxxxxx”. Instead of writing x’s you should display your own ID, not of someone else or not the one shown in the screenshot.
• Use H1 tag for the heading “Fall-2007 CS101 Assignment # 4”.
• Draw a table with the given columns and rows. The size of table border should be “1”, the background color should be “SkyBlue”, and it should be aligned in the center. The following text must be written in the caption of the table “Wheat and Rice Production in South Asia”. The table should be exactly like the one shown in the screen capture.
• Use H4 tag for the heading “Displaying the title of the webpage on the Status bar”.
• Draw a button “Display Status”. When this button is clicked, the status bar should display the text written in title of the webpage. The title of the page can be read using the “title” property of the “document”. For this assignment use “onClick” event-handler. If you use “onMouseOver” event-handler, marks will be deducted for that.



Assignment # 3 Introduction to Computing (CS 101) Solution Total Marks: 25

Assignment # 3 Introduction to Computing (CS 101) Total Marks: 25

Deadline
Your assignment must be uploaded before or on 5th of November 2007
Upload Instructions
Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.
Rules for Marking
Please note that your assignment will not be graded if:
• It is submitted after due date
• The file you upload does not open
• The file you uploaded is copied from some one else
• It is in some format other than .doc

Objective
The objective of this assignment is to give the students some hands-on experience to develop a word document.

Assignment
You have been given the screen shot of VU Book Invoice. Make the invoice similar to the following one by using Microsoft Word features. Following points should be kept in mind while developing this assignment.
 Use Header for writing VU BOOK INVOICE
 Use clip arts to add three Bullets (circles visible at top)
 Use Text Box to write the name Virtual University with Size 28 and Font Style Arial. Text should be center aligned in the text box.
 Size of Book Invoice Text should be 14 (text under text box)
 Draw a table with given fields. The colors should be according to the screen shot.
 Draw another table giving details of invoice with fields in screen shot. First Row of the table should be aligned centered with given background color Green and font color White. The text in the lower rows should also be center aligned with Font 12.
 Write Remittance Bolded and Underlined.
 Use Bullets with details as given in screen shot
 At the end of the page give Complete Address along with web and email Addresses as given in the screen shot.
 Do follow the given below sample in screen shot.

Solution Assignment # 2 Introduction to Computing (CS 101) Spring 2007

Question No. 1: Convert the following Binary Number into Decimal Numbers. Show full procedure

a. 1100100

Solution:
1100100

= 0*20 + 0*21 + 1*22 + 0*23 + 0*24 + 1*25 +1*26
= 0 + 0 + 4 + 0 + 0 + 32 + 64
= 100 Ans

b. 110001
Solution:
110001
= 1*20 + 0*21 +0*22 + 0* 23 + 1*24 + 1*25
= 1 + 0 + 0+ 0 + 16 + 32
= 49 Ans


Question No. 2: Convert the following Decimal Numbers into Binary Numbers. Show complete procedure.
a. 459
2 459 Remainder
2 229 1
2 114 1
2 57 0
2 28 1
2
14 0
2 7 0
2 3 1
1 1

Ans: 111001011

b. 19
2 19 Remainder
2 9 1

2 4 1
2 2 0
1 0

Ans: 10011


Question No. 3: x, y, w and z are Boolean variables. Make the truth table for the expression given below.

z = NOT( x XOR y ) AND w


Solution:
The symbol of XOR is

x y w x XOR y NOT( x XOR y ) z = NOT( x XOR y ) AND w
0 0 0 0 1 0
0 0 1 0 1 1
0 1 0 1 0 0
0 1 1 1 0 0
1 0 0 1 0 0
1 0 1 1 0 0
1 1 0 0 1 0
1 1 1 0 1 1

Question No. 4: Why cache memory is faster than main memory. Explain it briefly.

CPU spends huge time on accessing data from Main Memory to reduce this time wastage Architect designers introduce cache concepts.
Cache is a temporary storage area where frequently accessed data can be stored for rapid access. Once the data is stored in the cache, future use can be made by accessing the cached copy rather than re-fetching original data, so that the average access time is shorter. Cache is small memories close to the CPU chip can be made faster than the much larger main memory. Cache, therefore, helps accelerate data access that the CPU would otherwise need to fetch from main memory.

Assignment # 2 Introduction to Computing (CS 101)

Deadline
Your assignment must be uploaded before or on 26th October 2007.
Upload Instructions
Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.
Rules for Marking
Please note that your assignment will not be graded if:
• It is submitted after due date
• The file you upload does not open
• The file you uploaded is copied from some one else
• It is in some format other than .doc (Word Document).
Objective
This assignment is designed to help you enable understand the conversion between different number systems; how truth tables are constructed for logical operations and hardware details.

Assignment

Question No. 1: Convert the following Binary Number into Decimal Numbers. Show full procedure (Marks 3 + 3 = 6)

a. 1100100
b. 110001

Question No. 2: Convert the following Decimal Numbers into Binary Numbers. Show complete procedure.
(Marks 3 + 3 = 6)
a. 459
b. 19






Question No. 3: x, y, w and z are Boolean variables. Make the truth table for the expression given below. (Marks 8)

z = NOT( x XOR y ) AND w


Question No. 4: Why cache memory is faster than main memory. Explain it briefly.
(Marks 5)

Assignment # 1 Introduction to Computing (CS 101)

Upload Instructions

Please view the assignment submission process document provided to you by the Virtual University to upload the assignment.

Rules for Marking

Please note that your assignment will not be graded if:

· It is submitted after due date

· The file you upload does not open

· The file you uploaded is copied from some one else

· It is developed using any tool / software like MS Front Page, Dreamweaver etc. (Only Use HTML Tags in Notepad).

· Submit only html file with extension .html / .htm . No other file like Notepad or word file should be submitted.

Objective

This assignment has been designed to enable you in developing a simple web page.

Assignment

You have to develop a web page similar to the one given below.( find the Screen Capture attached below) This page must have following properties:

· Use HTML tags that you studied in lecture 6.

· Use font tag to give the heading “Computer Systems”. Use font “Verdana”, size is ‘8’ and colors the text “Brown”. The word “Computer Systems” should be aligned in center.

· Use H1 tag for the heading “Computer Types According to Capability”. Use H2 tag for writing the names of different types of computer (Super Computers, Mainframes etc.)

· Instead of such lines

----Write at least 2-3 lines about supercomputers here----

You have to write brief introduction of each type of computer. You can take this text from your handouts or from the internet.

· When you click to hyperlinked words “Click here” in the second last line of the page, then the website vulms.vu.edu.pk must be opened.

· When you click xxxxxxxxxx@vu.edu.pk in the last line, the outlook express should open in result to send a mail to your VU ID.

· You must use all the essential tags like , , , <body> etc while developing your assignment. All tags carry marks.</p> <div style='clear: both;'></div> </div> <div class='clear'></div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <div class='info'> <span class='category'> </span> <span class='bubble'> <a href='https://www.blogger.com/comment.g?blogID=4815259294062442917&postID=4260344796597516832' onclick=''>0 comments</a> </span> </div> <span class='reaction-buttons'> </span> <span class='star-ratings'> </span> <span class='post-backlinks'> </span> </div> <div class='post-footer-line post-footer-line-2'> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> <div class='post' id='post'> <div class='post_top'> <a name='9150789069860508638'></a> <h2 class='post_title'> <a href='http://vuexpert.blogspot.com/2009/10/vu-will-open-on-27th-of-october.html'>Vu will open on 27th of OCTOBER</a> </h2> <div class='post_date'> <script type='text/javascript'> var timestamp = "Friday, April 17, 2009"; if (timestamp != '') { var timesplit = timestamp.split(","); var date_yyyy = timesplit[2]; var timesplit = timesplit[1].split(" "); var date_dd = timesplit[2]; var date_mmm = timesplit[1].substring(0, 3); } </script> <div class='post_date_d'><script type='text/javascript'>document.write(date_dd);</script></div> <div class='post_date_m'><script type='text/javascript'>document.write(date_mmm);</script></div> </div> </div> <div class='post_author'> <span class='post-author vcard'> by <span class='fn'>Pakistan</span> </span> </div> <div class='post-header-line-1'></div> <div class='entry'> <span class="Apple-style-span" style=" ;font-size:large;"><b>Please wait www.vuhelp.com will be back soon.</b></span><div><span class="Apple-style-span" style=" ;font-size:large;"><b>ANNOUNCEMENT VU (Virtual University) Is closed all the assignments are suspended. Wait for the new instructions from unversity. Keep checking the notice board. So the datesheet which they mention and published on 19th of October is changed and the university schedule is also changed. Wait for the new one. and get register to </b></span></div><div><span class="Apple-style-span" style=" ;font-size:large;"><b>vuexpert.blogspot.com</b></span></div><div><span class="Apple-style-span" style=" ;font-size:large;"><b>regards</b></span></div><div><span class="Apple-style-span" style=" ;font-size:large;"><b>vuExpert</b></span></div> <div style='clear: both;'></div> </div> <div class='clear'></div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <div class='info'> <span class='category'> </span> <span class='bubble'> <a href='https://www.blogger.com/comment.g?blogID=4815259294062442917&postID=9150789069860508638' onclick=''>0 comments</a> </span> </div> <span class='reaction-buttons'> </span> <span class='star-ratings'> </span> <span class='post-backlinks'> </span> </div> <div class='post-footer-line post-footer-line-2'> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> <!--Can't find substitution for tag [adEnd]--> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://vuexpert.blogspot.com/search?updated-max=2009-10-25T22:35:00%2B06:00&max-results=2&reverse-paginate=true' id='Blog1_blog-pager-newer-link' title='Newer Posts'>Newer Posts</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://vuexpert.blogspot.com/search?updated-max=2009-10-23T17:11:00%2B06:00&max-results=2' id='Blog1_blog-pager-older-link' title='Older Posts'>Older Posts</a> </span> <a class='home-link' href='http://vuexpert.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='blog-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://vuexpert.blogspot.com/feeds/posts/default' target='_blank' type='application/atom+xml'>Posts (Atom)</a> </div> </div> </div></div> </div> <div id='sidebar-wrapper'> <div class='sidebar section' id='sidebar'><div class='widget HTML' data-version='1' id='HTML4'> <div class='widget-content'> <a href="http://www.pknews.info" target="_blank"> <img src="http://vuhelp.net/images/pk/pknews.jpg" border="2" alt="Pknews Job Ads website" /> </a> </div> <div class='clear'></div> </div><div class='widget LinkList' data-version='1' id='LinkList2'> <h2>Links to other sites</h2> <div class='widget-content'> <ul> <li><a href='http://vustudents.info/'>Vustudents</a></li> <li><a href='http://www.urducell.com/'>Urdu Sms</a></li> <li><a href='http://www.vuhelp.net/forum'>Virtual University of Pakistan</a></li> <li><a href='http://www.pknews.info/'>Pakistan Job Ads</a></li> <li><a href='http://www.vuproxy.info/'>Vuproxy</a></li> <li><a href='http://www.vuhelp.com/forum'>Vuhelp forum</a></li> <li><a href='http://vustudents.info/'>Vustudents</a></li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Vuhelp Community for Students</h2> <div class='widget-content'> <a href="http://vuhelp.com/forum" target="_blank"> <img src="http://vuhelp.net/ads.gif" /></a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>Discussion Forum</h2> <div class='widget-content'> <a href="http://www.urducell.com/forum" target="_blank"><img src="http://urducell.com/add/discussion.gif" /></a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML1'> <h2 class='title'>Counter</h2> <div class='widget-content'> <!-- Histats.com START --> <a href="http://www.histats.com" target="_blank" title="free log"><script language="javascript" type="text/javascript"> var s_sid = 884541;var st_dominio = 4; var cimg = 111;var cwi =175;var che =25; </script></a> <script language="javascript" src="http://s10.histats.com/js9.js" type="text/javascript"></script> <noscript><a href="http://www.histats.com" target="_blank"> <img border="0" alt="free log" src="http://s4.histats.com/stats/0.gif?884541&1"/></a> </noscript> <!-- Histats.com END --> </div> <div class='clear'></div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(2)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2011/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2011_07_21_archive.html'> Jul 21 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2011/04/'> April </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2011_04_01_archive.html'> Apr 01 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2010/01/'> January </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2010_01_05_archive.html'> Jan 05 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(313)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009/12/'> December </a> <span class='post-count' dir='ltr'>(113)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_18_archive.html'> Dec 18 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_15_archive.html'> Dec 15 </a> <span class='post-count' dir='ltr'>(22)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_12_archive.html'> Dec 12 </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_11_archive.html'> Dec 11 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_10_archive.html'> Dec 10 </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_09_archive.html'> Dec 09 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_08_archive.html'> Dec 08 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_07_archive.html'> Dec 07 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_06_archive.html'> Dec 06 </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_05_archive.html'> Dec 05 </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_04_archive.html'> Dec 04 </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_03_archive.html'> Dec 03 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_02_archive.html'> Dec 02 </a> <span class='post-count' dir='ltr'>(18)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_12_01_archive.html'> Dec 01 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009/11/'> November </a> <span class='post-count' dir='ltr'>(142)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_30_archive.html'> Nov 30 </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_27_archive.html'> Nov 27 </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_26_archive.html'> Nov 26 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_25_archive.html'> Nov 25 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_24_archive.html'> Nov 24 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_23_archive.html'> Nov 23 </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_22_archive.html'> Nov 22 </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_21_archive.html'> Nov 21 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_20_archive.html'> Nov 20 </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_19_archive.html'> Nov 19 </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_18_archive.html'> Nov 18 </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_17_archive.html'> Nov 17 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_16_archive.html'> Nov 16 </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_15_archive.html'> Nov 15 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_14_archive.html'> Nov 14 </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_13_archive.html'> Nov 13 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_12_archive.html'> Nov 12 </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_11_archive.html'> Nov 11 </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_09_archive.html'> Nov 09 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_08_archive.html'> Nov 08 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_07_archive.html'> Nov 07 </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_06_archive.html'> Nov 06 </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_05_archive.html'> Nov 05 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_04_archive.html'> Nov 04 </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_03_archive.html'> Nov 03 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_02_archive.html'> Nov 02 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_11_01_archive.html'> Nov 01 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009/10/'> October </a> <span class='post-count' dir='ltr'>(58)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_31_archive.html'> Oct 31 </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_30_archive.html'> Oct 30 </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_26_archive.html'> Oct 26 </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_25_archive.html'> Oct 25 </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_24_archive.html'> Oct 24 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_23_archive.html'> Oct 23 </a> <span class='post-count' dir='ltr'>(10)</span> <ul class='posts'> <li><a href='http://vuexpert.blogspot.com/2009/10/vulms-tutorial-for-vu-students.html'>Vulms Tutorial for vu students</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/cs-101-introductions-to-computing.html'>CS 101 Introductions to Computing Assignment # 7</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-5-introduction-to-computing.html'>Assignment # 5 Introduction to Computing (CS 101)</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-4-introduction-to-computing.html'>Assignment # 4 Introduction to Computing (CS 101)</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-3-introduction-to-computing_23.html'>Assignment # 3 Introduction to Computing (CS 101) ...</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-3-introduction-to-computing.html'>Assignment # 3 Introduction to Computing (CS 101) ...</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/solution-assignment-2-introduction-to.html'>Solution Assignment # 2 Introduction to Computin...</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-2-introduction-to-computing.html'>Assignment # 2 Introduction to Computing (CS 101)</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/assignment-1-introduction-to-computing.html'>Assignment # 1 Introduction to Computing (CS 101)</a></li> <li><a href='http://vuexpert.blogspot.com/2009/10/vu-will-open-on-27th-of-october.html'>Vu will open on 27th of OCTOBER</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_18_archive.html'> Oct 18 </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_16_archive.html'> Oct 16 </a> <span class='post-count' dir='ltr'>(13)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://vuexpert.blogspot.com/2009_10_12_archive.html'> Oct 12 </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div><div class='widget LinkList' data-version='1' id='LinkList1'> <div class='widget-content'> <ul> <li><a href='http://epkjob.blogspot.com/'><span><span>Job Ads</span></span></a></li> <li><a href='http://vuhelp.com/index.php?option=com_content&view=category&id=41&Itemid=76'><span><span>Vu Live Tv</span></span></a></li> <li><a href='http://vuhelp.com/forum/ucp.php?mode=register&sid=542eccd3e90ac225cc250fd16477d030'><span><span>Register</span></span></a></li> <li><a href='http://vuhelp.com/index.php?option=com_content&view=category&id=34&Itemid=74'><span><span>Download past papers</span></span></a></li> <li><a href='http://www.vuhelp.com/forum'><span><span>VuHelp Community</span></span></a></li> </ul> </div> </div></div> </div> <!-- spacer for skins that want sidebar and main to be the same height--> <div class='clear'> </div> </div> <!-- end content-wrapper --> <div id='footer-wrapper'> <div class='footer no-items section' id='footer'></div> </div> </div></div> <!-- end outer-wrapper --> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/517362887-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY44UkI7Sr5zFLtXtd3RZylwkiX_kg:1713572960302';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d4815259294062442917','//vuexpert.blogspot.com/2009_10_23_archive.html','4815259294062442917'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '4815259294062442917', 'title': 'vuexpert@gmail.com', 'url': 'http://vuexpert.blogspot.com/2009_10_23_archive.html', 'canonicalUrl': 'http://vuexpert.blogspot.com/2009_10_23_archive.html', 'homepageUrl': 'http://vuexpert.blogspot.com/', 'searchUrl': 'http://vuexpert.blogspot.com/search', 'canonicalHomepageUrl': 'http://vuexpert.blogspot.com/', 'blogspotFaviconUrl': 'http://vuexpert.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22vuexpert@gmail.com - Atom\x22 href\x3d\x22http://vuexpert.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22vuexpert@gmail.com - RSS\x22 href\x3d\x22http://vuexpert.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22vuexpert@gmail.com - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/4815259294062442917/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-5228591636676446', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/d86c8c5eadffdf93', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'archive', 'pageName': 'Friday, October 23, 2009', 'pageTitle': 'vuexpert@gmail.com: Friday, October 23, 2009'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'vuexpert@gmail.com', 'description': '', 'url': 'http://vuexpert.blogspot.com/2009_10_23_archive.html', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2009, 'month': 10, 'day': 23, 'rangeMessage': 'Showing posts from October 23, 2009'}}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'crosscol', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3538472454-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/13464135-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList2', 'sidebar', document.getElementById('LinkList2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'sidebar', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'sidebar', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'sidebar', document.getElementById('LinkList1'), {}, 'displayModeFull')); </script> </body> </html>