-
Total Marks 10
Starting Date Friday, May 29, 2020
Closing Date Thursday, June 04, 2020
Status Open
Question Title GDB 01
Question DescriptionIntroduction to Programming (BIT 701)
Semester: Spring 2020 GDB No. 1
Due Date: June 04, 2020 Total Marks: 10
Objective of the Assignment:
To highlight the differences of “While” and “Do-While” loop in C/C++ programming languages.
Learning Outcomes:
After attempting this GDB students should be able to: Identify the core difference between “While” and “Do-While” loop.Requirement(s):
Question:
Write down the key difference between “While” and “Do-While” loop in terms of ‘condition checks’ and ‘entry-controlled/exit-controlled’?
The maximum words limit is 250, try to summarize your answer within this word limit.IMPORTANT INSTRUCTIONS
Do not copy any material from original article. Copied material will be treated as cheating & will be marked as zero. Your discussion must be based on logical arguments. The GDB will open and close at above specified date and time. Please note that no grace day or extra time will be given for posting comments on GDB. Use the font style “Times New Roman” and font size “12”. Your answer should be relevant to the topic i.e. clear and concise. Do not copy or exchange your answer with other students. Two identical / copied comments will be marked Zero (0) and may damage your grade in the course. Material found plagiarized will be marked zero. For acquiring the relevant knowledge watch the course video lectures and read additional material available online or in any other mode. Books, websites and other reading material may be consulted before posting your comments; but copying or reproducing the text from books, websites and other reading materials is strictly prohibited. Such comments will be marked as Zero (0) even if you provide references. You should post your answer on the Graded Discussion Board (GDB), not on the Moderated Discussion Board (MDB). Both will run parallel to each other during the time specified above. Therefore, due care will be needed. Obnoxious or ignoble answer should be strictly avoided. You cannot participate in the discussion after the due date via email. Questions / queries related to the content of the GDB, which may be posted by the students on MDB or via e-mail, will not be replied till the due date of GDB is over. For planning your semester activities in an organized manner, you are advised to view schedule of upcoming Assignments, Quizzes and GDBs in the overview tab of the course website on VU-LMS.Good Luck!
-
SEMESTER FALL 2019
#include<stdio.h> void main() { int marks; printf("Enter your marks "); scanf("%d",&marks); if(marks<0 && marks>100) { printf("Wrong Entry"); } if(marks<50) { printf("Grade F"); } if(marks>=50 || marks<60) { printf("Grade D"); } if(marks>=60 || marks<70) { printf("Grade C"); } if(marks>=70 || marks<80) { printf("Grade B"); } if(marks>=80 || marks<90) { printf("Grade A"); } else { printf("Grade A+"); } }
INTRODUCTION TO PROGRAMMING (BIT-701)
ASSIGNMENT
DUE DATE: 2nd December, 2019 MARKS: 10
Topic: Conditional Statements and Loop
Q.1 Write a C/C++ language program to make the output (display on console) in a vertical position rather then in horizontal when the size of the multidimension array is n[3][3].? (5)
Q.2 Find out and highlight the errors in the following code. Also mention the output? (5)Important:
24 hours extra / grace period after the due date is usually available to overcome uploading difficulties. This extra time should only be used to meet the emergencies and above mentioned due date should always be treated as final to avoid any inconvenience.
Other Important Instructions: Deadline: Make sure to upload the solution file before the due date on VULMS.
Any submission made via email after the due date will not be accepted. Formatting guidelines:
Use the font style “Times New Roman” or “Arial” and font size “12”.
It is advised to compose your document in MS-Word format.
You may also compose your assignment in Open Office format.
Use black and blue font colors only.
Referencing Guidelines:
Use APA style for referencing and citation. For guidance search “APA reference style” in Google and read various websites containing information for better understanding or visit http://linguistics.byu.edu/faculty/henrichsenl/apa/APA01.html.
Rules for Marking
Please note that your assignment will not be graded or graded as Zero (0), if:
It is submitted after the due date.
The file you uploaded does not open or is corrupt.
It is in any format other than MS-Word or Open Office; e.g. Excel, PowerPoint, PDF etc.
It is cheated or copied from other students, internet, books, journals etc. Note related to load shedding: Please be proactive
Dear students
As you know that Pre Mid-Term semester activities have started and load shedding problem is also prevailing in our country. Keeping in view the fact, you all are advised to post your activities as early as possible without waiting for the due date. For your convenience; activity schedule has already been uploaded on VULMS for the current semester, therefore no excuse will be entertained after due date. -
BIT-701
#include <iostream> using namespace std; // first base class class Parent1 { public: // first base class's Constructor Parent1() { cout << "Inside first base class" << endl; } }; // second base class class Parent2 { public: // second base class's Constructor Parent2() { cout << "Inside second base class" << endl; } };
ASSIGNMENT DUE DATE: 5th August, 2019 MARKS: 10
Topic: Constructors and Destruction
Q1. Write a C++ program to show the order of constructor call in single inheritance and also show
the output?
Q2. Complete the code C++ program to show the order of constructor calls in Multiple Inheritance
along with output?SEMESTER SPRING 2019
Important:
24 hours extra / grace period after the due date is usually available to overcome uploading
difficulties. This extra time should only be used to meet the emergencies and above mentioned due
date should always be treated as final to avoid any inconvenience.
Other Important Instructions:
Deadline:
• Make sure to upload the solution file before the due date on VULMS.
• Any submission made via email after the due date will not be accepted.
Formatting guidelines:
• Use the font style “Times New Roman” or “Arial” and font size “12”.
• It is advised to compose your document in MS-Word format.
• You may also compose your assignment in Open Office format.
• Use black and blue font colors only.
Referencing Guidelines:
• Use APA style for referencing and citation. For guidance search “APA reference style” in
Google and read various websites containing information for better understanding or visit
http://linguistics.byu.edu/faculty/henrichsenl/apa/APA01.html.
Rules for Marking
Please note that your assignment will not be graded or graded as Zero (0), if:
• It is submitted after the due date.
• The file you uploaded does not open or is corrupt.
• It is in any format other than MS-Word or Open Office; e.g. Excel, PowerPoint, PDF etc.
• It is cheated or copied from other students, internet, books, journals etc.
Note related to load shedding: Please be proactive
Dear students
As you know that Post Mid-Term semester activities have started and load shedding problem is
also prevailing in our country. Keeping in view the fact, you all are advised to post your activities
as early as possible without waiting for the due date. For your convenience; activity schedule has
already been uploaded on VULMS for the current semester, therefore no excuse will be entertained
after due date.
UNSOLVED BIT701 Assignment No.2 Solution and Discussion
-
BIT-701
ASSIGNMENT DUE DATE: 5th August, 2019 MARKS: 10
Topic: Constructors and Destruction
Q1. Write a C++ program to show the order of constructor call in single inheritance and also show
the output?
Q2. Complete the code C++ program to show the order of constructor calls in Multiple Inheritance
along with output?#include <iostream> using namespace std; // first base class class Parent1 { public: // first base class's Constructor Parent1() { cout << "Inside first base class" << endl; } }; // second base class class Parent2 { public: // second base class's Constructor Parent2() { cout << "Inside second base class" << endl; } };
SEMESTER SPRING 2019
Important:
24 hours extra / grace period after the due date is usually available to overcome uploading
difficulties. This extra time should only be used to meet the emergencies and above mentioned due
date should always be treated as final to avoid any inconvenience.
Other Important Instructions:
Deadline:
• Make sure to upload the solution file before the due date on VULMS.
• Any submission made via email after the due date will not be accepted.
Formatting guidelines:
• Use the font style “Times New Roman” or “Arial” and font size “12”.
• It is advised to compose your document in MS-Word format.
• You may also compose your assignment in Open Office format.
• Use black and blue font colors only.
Referencing Guidelines:
• Use APA style for referencing and citation. For guidance search “APA reference style” in
Google and read various websites containing information for better understanding or visit
http://linguistics.byu.edu/faculty/henrichsenl/apa/APA01.html.
Rules for Marking
Please note that your assignment will not be graded or graded as Zero (0), if:
• It is submitted after the due date.
• The file you uploaded does not open or is corrupt.
• It is in any format other than MS-Word or Open Office; e.g. Excel, PowerPoint, PDF etc.
• It is cheated or copied from other students, internet, books, journals etc.
Note related to load shedding: Please be proactive
Dear students
As you know that Post Mid-Term semester activities have started and load shedding problem is
also prevailing in our country. Keeping in view the fact, you all are advised to post your activities
as early as possible without waiting for the due date. For your convenience; activity schedule has
already been uploaded on VULMS for the current semester, therefore no excuse will be entertained
after due date.