This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Nazir Ahmad liked +M.Tariq Malik's discussion CS201 Assignment 01 Fall 2020 Solution / Discussion

Nazir Ahmad liked +M.Tariq Malik's discussion CS201 Assignment 01 Fall 2020 Solution / Discussion


from Latest Activity on Virtual University of Pakistan https://ift.tt/2UN0HiW

+M.Tariq Malik added a discussion to the group EDU201 Learning Theories

+M.Tariq Malik added a discussion to the group EDU201 Learning Theories
Thumbnail

EDU201 Learning Theories Assignment 01 Fall 2020 Solution / Discussion

EDU201 Learning Theories Assignment 01 Fall 2020 Solution / Discussionedu201 assignment 1 solution fall 2020Q No 1: What is the importance of “Learning Theories” for a teacher? Write down any five points.Q No.2:What is the difference between “classical conditioning and operant conditioning”?Q No 3: In your opinion, what are the weaknesses in the Theory of Cognitive Development presented by Piaget? Write down any two weaknesses.Q No 4: Write down any two activities that a teacher can use in the classroom at the concrete operational stge of the development of a child?See More


from Latest Activity on Virtual University of Pakistan https://ift.tt/2IVqymB

+M.Tariq Malik liked +M.Tariq Malik's discussion CS506 Assignment 01 Fall 2020 Solution / Discussion

+M.Tariq Malik liked +M.Tariq Malik's discussion CS506 Assignment 01 Fall 2020 Solution / Discussion


from Latest Activity on Virtual University of Pakistan https://ift.tt/36Olb0g

Rose added a discussion to the group CS608 Software Verification and Validation

Rose added a discussion to the group CS608 Software Verification and Validation
Thumbnail

CS608 Assignment No 01 Fall 2020 Solution & Discussion Due Date: 28-11-2020

Software Verification and Validation (CS608)Fall 2020Assignment # 01        Total marks = 20                                                                               Due Date:28th November, 2020 Please carefully read the following instructions before attempting assignment.INSTRUCTIONSIt should be clear that your assignment would not get any credit if:The assignment is submitted after the due date.The submitted assignment does not open or file is corrupt.Strict action will be taken if submitted solution is copied from any other student or from the internet.You should concern the recommended books to clarify your concepts as handouts are not sufficient.You are supposed to submit your assignment in .doc or docx format.Any other formats like scanned images, PDF, zip, rar, ppt and bmp etc. will not be accepted. Topics Covered:·         Control Flow Graph NOTENo assignment will be accepted after the due date via email in any case (whether it is the case of load shedding or Internet issues etc.). Hence refrain from uploading assignment in the last hour of deadline. It is recommended to upload solution file well before its closing date.If you find any mistake or confusion in the assignment (Question statement), please consult with your Instructor before the deadline. After the deadline no queries will be entertained in this regard.For any query, feel free to email at cs608@vu.edu.pk  Question No. 1.                                                                                                          (Marks 12)Draw the Control Flow Graph for the following piece of code. namespace AssigmntONE{    public class MyAverage    {        public double ReturnAverage(int[] value, int MIN, int MAX)        {int i, tv, sum;double av;i = 0; tv = 0; sum = 0;while (i < MAX)            { if (value[i] >= MIN && value[i] <= MAX)                {tv++;sum = sum + value[i];                }i++;            }if (tv > 0)av = (double)sum / tv;elseav = (double)-999;return (av);        }     }}    Question No. 2.                                                                                                          (Marks 8)Find all the independent paths for the graph developed in question 1.   Note:You should use Microsoft Visio or some other drawing tool to develop the required Graph for question#1.The diagram should be pasted in the MS Word file as an image, and the MS Word (.docx) file should be uploaded on VULMS. Your solution must be uploaded on or before 28th Nov 2020   vSee More


from Latest Activity on Virtual University of Pakistan https://ift.tt/3nBAekW

Rose joined +M.Tariq Malik's group

Rose joined +M.Tariq Malik's group
Thumbnail

CS608 Software Verification and Validation

CS608 Software Verification and Validation. Download / Upload Video Lectures, Handouts, Helping Materials, Assignment Solution, Online Quizzes, GDB, Past Papers, Solved Papers & more….See More


from Latest Activity on Virtual University of Pakistan https://ift.tt/2PJGB5l

+M.Tariq Malik liked +M.Tariq Malik's discussion CS508 Assignment 01 Fall 2020 Solution / Discussion

+M.Tariq Malik liked +M.Tariq Malik's discussion CS508 Assignment 01 Fall 2020 Solution / Discussion


from Latest Activity on Virtual University of Pakistan https://ift.tt/2IZAQ4B

Muhammad Umer Tariq, Madiha bibi, ASAD MUSHTAQ and 10 more joined Virtual University of Pakistan

Muhammad Umer Tariq, Madiha bibi, ASAD MUSHTAQ and 10 more joined Virtual University of Pakistan
ThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnailThumbnail


from Latest Activity on Virtual University of Pakistan https://ift.tt/2Ku5W5m

+M.Tariq Malik added a discussion to the group CS508 Modern Programming Languages

+M.Tariq Malik added a discussion to the group CS508 Modern Programming Languages
Thumbnail

CS508 Assignment 01 Fall 2020 Solution / Discussion

CS508 Assignment 01 Fall 2020 Solution / DiscussionProblem Statement:Problem Statement:The following code snippet contains some conditional (nested if else based) statements. Which are difficult to understand as they do not contain any starting or ending keywords against each statement. You, being a programing language expert, are required to put "then" and "end if/else" at appropriate places to get the desired result.Code Snippet:At start, x contains 100 (i.e. x = 100)        if (x > 50)          x = x * 5          if (x > 500)          x = x - 350          if (x > 350)          x = x - 150          else          x = x + 150          else          x = x - 100          if (x > 500)          x = x - 150          if (x < 500)           x = x + 150          if (x == 500)           x = x + 200          else          x = x + 100          if (x > 650)          x = x - 100          else if (x < 650)          x = x + 100          else          x = x * 5          else          x = x + 50At end, x contains 3250.Note: This is a language-free code, which does not require any specific programming language to compile or execute. You are simply required to guess the flow of execution on the basis of value of x and put "then" and "end if/else" at appropriate places (see the hint given below). Furthermore, you can also add extra lines or spaces in your solution as well.Hint: Difficult to Understand Easily Understandable    if (a > b)b = 5elsea = 5 if (a > b) thenb = 5end ifelse thena = 5end else  See More


from Latest Activity on Virtual University of Pakistan https://ift.tt/2IZAQ4B

Nazim Ali added a discussion to the group CS504 Software Engineering - I

Nazim Ali added a discussion to the group CS504 Software Engineering - I
Thumbnail

Assignment No. 01 Semester: Fall 2020 Software Engineering-1 (CS504)

Scenario We want to develop a mobile App “Light Wave” that offers sensor-based services to end users about nearby restaurants, café, and coffee shops for breakfast, brunch, lunch / dinner etc. A combination of sensors works with this context-aware app to change themselves according to their external environment. Major system requirements for the proposed Mobile App are: • This Mobile App should provide a user-friendly interface to user to view nearby restaurant, café, and coffee shops• This Mobile App can find nearby restaurants by taking advantage of sensors like GPS, accelerometer, time, etc.• This App should provide user with interface for setting priorities for his mealtime (lunch, dinner etc.) alerts using time.• The App will take context aware decision based on user’s location, activities, etc. • The App should be able to detect if the person is busy or free to use the App.• Admin can maintain, update, repair and add modules in this App• User of the App can open interface, view list, set/edit mealtime, set/edit ScheduleQuestion: (15) Using the above mentioned scenario, you are required to draw use case model from the given functional requirements.Note: • Only one diagram (model) is required which should cover the whole scenario. • You should use Microsoft Visio or some other drawing tool (supporting the UML notations) to develop the required diagram. • The diagram should be pasted in the MS Word file as an image, and the MS Word (.docx) file should be uploaded on VULMS. Your solution must be uploaded on or before 27th Nov 2020See More


from Latest Activity on Virtual University of Pakistan https://ift.tt/32ZT7WT