MGT201 GDB Solution 2018

MGT201 GDB Solution

Discussion Question:
Selection of an efficient stock from the stock market is a crucial decision that is not only vital for investment but also paves the ways for value addition.  Stocks are selected on a returns and volatility basis that carries a tradeoff.  In this context, the calculation of required return (RR) with the help of Security Market Line (SML) and stock beta may help a lot to any investor. Assume you are going to invest in a stock exchange where you are a new investor and you are facing an issue of the selection of stock among different alternative available in the market. Following information regarding stocks and market are available to you:
Particulars
Stock A (%)
Stock B (%)
Market (%)
Standard Deviation
27
28
18
Correlation of stocks with market
0.8
0.5

Market Return


15
Risk-Free Return


8
1.        You are required to calculate the required rate of return of Stock A and Stock B


Fall 2017 Mid Term Examinations: Result declared and published


Published On:  Tuesday, January 9, 2018

Fall 2017 Mid Term Examinations result has been declared and published on LMS. Students are advised to check their LMS grade books.



NOTE: For any result related query, please contact result@vu.edu.pk

VU student awarded second prize at Huawei ICT Skills Competition

A Virtual University of Pakistan’s student of BS Software Engineering “Shamim Iqbal” has received an honor to walk away with second prize at Middle East Huawei’s International ICT Skill Competition finals held at Shenzhen, China.
Mr. Shamim Iqbal represented Pakistan and distinguished himself from over 7,000 students of more than 50 higher education institutes across Pakistan. He worked in real laboratories and tackled some of the industry’s most complex challenges related to cloud computing, switching, routing, and other key ICT solutions and technologies related to digital transformation. He performed well in the finals and eventually secured second position.
This is pertinent to mention that HEC Chairman Dr. Mukhtar Ahmed also praised the performance and selection of VU student during his address at International Social Sciences Conference as this contest nurtured higher standards of performance in Pakistan’s ICT sector.

http://www.vu.edu.pk/NewsManager/GetImage.aspx?img=mmexport1514261730880_20180110%20125037.jpg

http://www.vu.edu.pk/NewsManager/GetImage.aspx?img=mmexport1514471392074_20180110%20125355.jpg


Endowment Fund voucher, Fall, 2017


Published On:  Wednesday, January 10, 2018
Students are informed that the University has issued Endowment Fund voucher to newly admitted students of Fall, 2017, amounting to Rs. 1,000/- for local students and $10 for overseas students with due date January 22, 2018.
You may visit following links for further information about Endowment Fund:
 http://handbook.vu.edu.pk/HandBook_Pages/StudentEndowmentFund.htm
http://handbook.vu.edu.pk/HandBook_Pages/EndowmentFAQs.html

MTH501 assignment no 2 Solution 2018


MTH501 assignment no 2 Solution






ISL201 - Islamic Studies GDB No.1 Solution 2018

ISL201 - Islamic Studies GDB No.1 Solution Fall 2017 Due Date January 9, 2018




Describe just four duties of Brotherhood in your own words.


  • 1:Personal Aid. I owe my siting-companion three things: On his approach I greet him; on his arrival I make him welcome; when he sits I make him comfortable.
  • 2:Holding one’s tongue. One of you listen to gossip about his brother, then adds to it and passes it to exaggerated.
  • 3:Speaking out. The Muslim is brother to the Muslim. He does not wrong him, does not forsake him, does not betray him.
  • 4:Loyalty and sincerity. Among the seven whom God keeps in his shadow are also two men who love each other for God’s sake, constant whether together or apart.




  • MTH202 Discrete Mathematics GDB no 2 Solution 2018


    • The purpose of this GDB is to assess your knowledge and computational skills.
    • Produce you own work. Copying the text from any other student or from any website is strictly prohibited. You will get zero marks in this case.
    • Last date of this GDB is January 4, 2018. There will not any relaxation after due date. You have almost 4 days to complete this task. Submit your answers at the earliest to avoid losing your marks.

    A new functionality (Preview) has been added in GDB to verify that your post is correctly displaying. So before posting your comments you should first preview the post and if the equations are correctly displaying then you can post the comment. 

    Remember once you post the comments on GDB then you cannot edit or repost your comment.

    MOST IMPORTANT:

    1)      If a student posts his/her solution in MDB to show up others, he/she would be awarded ZERO marks. Your solution must be posted in GDB.
    2)      Use only Google Chrome.

    Question:

    Using Mathematical Induction, prove that

    SOLUTION BELOW 

    CS201 Introduction to Programming GDB Solution 2018

    CS201 GDB solution
    In my opinion, switch statements id better than If-Else. Switch statements have its best uses then there are more environments. As we know that if statements checks for all the conditions and then when the condition is matched then the following body inside it is executed but this is not the case with switch condition as it directly checks for the compatible conditions and executes the code.
    The reason behind the selection of switch statement is;
    Working speed of switch statement is much faster than if-else.
    The reason is that compiler produces a jump table for a switch in the course of assembling. Thus, during accomplishment, as a substitute of testing which case is contented, it only picks which case has to be accomplished.
    It is more understandable and in parallel to if-else testimonials.
    Switch statement is more manageable for taking higher level of transactions than if-else

    ----------------------------------------



    Dont Be Confused Keep Keen Attention on Question :) 
    This is your gdb solution: 
    Switch statement is much faster than if-else due to the following reasons:
    Switch statement is better because
    1) compiler generates a jump table during compilation.
    2) instead of checking which case is true, it only moves to that case which has to be executed.
    3) It is more readable.
    4) It is more manageable regarding above scenario.


    ------------------------------------------

    I asked Teacher about it and here is her reply:
    Dear Student,
    First of all, in GDB coding is not required. You have to select a decision structure according to the given scenario and have to provide the reasons. Then login the VULMS, click on GDB icon and post your comments.
    Transaction examples are:
    a user deposit cash in his/her account.
    A user withdraws some cash from his/her account.
    A user checks the balance of his/her account etc.
    Regards,

    Instructor CS201
    Department of Computer Sciences
    VU, Pakistan

    PSC201 International Relation ASSIGNMENT NO.3 Solution 2018

    Question: 01

    International relations are an exceptionally important aspect of citizenship in a global society, explain this concept in detail and support your answer with logical arguments.

    (Marks: 10)




    Question: 02

    You are supposed to write a critical paragraph about Pakistan Iraq Saudi Relation with reference to promote
    Islamic positivity in the world.

    Give logical arguments to support your stance. (Marks: 10)


    CS101 Introduction to Computing Assignment no 2 Solution 2018





    <html>
                    <head>
                                    <title>homepage</title>
                                    <script>
                                                    function check(){
                                                                    var x;
                                                                                    x = document.getElementById('in_kg').value;
                                                                                    if (isNaN(x) || x <= 0) {
                                                                                                    window.alert("Enter value grater than 0");
                                                                                    }else{
                                                                                                    var num;
                                                                                                    num = x * 1000 ;
                                                                                                    document.getElementById('grams').value = num;
                                                                                                    num = x * 2.2046 ;
                                                                                                    document.getElementById('pounds').value = num;
                                                                                                    num = x * 1000000 ;
                                                                                                    document.getElementById('mg').value = num;
                                                                                                    num = x * 0.0011023 ;
                                                                                                   

    CS610 Computer Network Assignment 2 Solution

                                    CS610 Assignment 2 Solution
               
    IP addresses
    Default Subnet Mask of related class

    Subnet Mask of given IP
    CIDR notation
    /CIDR Length

    Total no of Subnets
    172.0.0.5
    255.255.0.0
    255.255.254.0
    /23
    512
    210.1.1.2
    255.255.255.0
    255.255.255.252
    /30
    4
    110.0.1.2
    255.0.0.0
    255.248.0.0
    /13
    524,286
    169.1.0.0
    255.255.0.0
    255.255.224.0

    /19
    8192
    198.2.1.0
    255.255.255.0
    255.255.255.192
    /26
    64


    BIF731 - Advanced Bioinformatics Assignment No. 1 Solution Fall 2016

    BIF731 - Advanced Bioinformatics Assignment No. 1 Solution Fall 2016 Due Date: Nov 25, 2016
    Presentation
    For the presentation activity, students are required to record their presentations and upload it on VULMS. MS PowerPoint allows to record audio and embed it in a PPT file. Therefore, each student is required to prepare PPTs for his/her presentation and then record his/her voice presentation within the PPT file. Following are the guidelines in this regard:
    1. Prepare presentation slides related to any topic.
    2. There must not be more than 12 slides in your PPT file.
    3. First slide should contain student-ID, student-name, topic and course-name.
    4. Record your presentation using voice recorder of the Microsoft power point.
    5. The total time for recording should not exceed 5 minutes.
    6. Save your presentation slides in .ppt or .pptx format and submit on VULMS interface opened for this purpose.
    7. Double check your file before submission. If your voice is not recorded or submitted file is corrupt then you will receive zero marks.
    8. Students should submit presentation individually with their own voice recording.
    9. A guideline on how to record your presentation is uploaded in the assignment package for presentation assignment.
    10. It should be recorded in English. A good communication/ style of presenting may be awarded good marks. Objective of this assignment is to improve your soft skills.

    BIF731 - Advanced Bioinformatics - Academic Research Paper Instructions

    BIF731 - Advanced Bioinformatics

    Academic Research Paper Instructions


    As part of your course grading, you are required to submit an academic research paper during the semester. This exercise is meant to inculcate in you the research temperament and skills by carrying out a deep study of any research topic/area relevant to this course. You may choose any topic, of your interest, relevant to the course. Following are the details of academic research paper: requirements, deadlines and marks.

    Academic Research Paper Requirements:
    Following are the requirements for the academic research paper:
    a)      Paper Length
    Your paper should not be less than 6 pages and not more than 12 pages.
    b)      Quality of Writing
    The clarity and style of expression, the degree to which your paper obeys the rules to formal academic grammar, punctuation, spelling, formatting details like paragraph indentation and location of page breaks, are part of quality of writing. Write and edit your paper carefully for good organization, clear language with good spelling, punctuation, etc.