<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[BIT701 Assignment No.2 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">BIT-701<br />
ASSIGNMENT DUE DATE: 5th August, 2019 MARKS: 10<br />
Topic: Constructors and Destruction<br />
Q1. Write a C++ program to show the order of constructor call in single inheritance and also show<br />
the output?<br />
Q2. Complete the code C++ program to show the order of constructor calls in Multiple Inheritance<br />
along with output?</p>
<pre><code>#include &lt;iostream&gt;
using namespace std;

// first base class
class Parent1
{

 public:

 // first base class's Constructor
 Parent1()
 {
 cout &lt;&lt; "Inside first base class" &lt;&lt; endl;
 }
};

// second base class
class Parent2
{
 public:

 // second base class's Constructor
 Parent2()
 {
 cout &lt;&lt; "Inside second base class" &lt;&lt; endl;
 }
};
</code></pre>
<p dir="auto">SEMESTER SPRING 2019<br />
Important:<br />
24 hours extra / grace period after the due date is usually available to overcome uploading<br />
difficulties. This extra time should only be used to meet the emergencies and above mentioned due<br />
date should always be treated as final to avoid any inconvenience.<br />
Other Important Instructions:<br />
Deadline:<br />
• Make sure to upload the solution file before the due date on VULMS.<br />
• Any submission made via email after the due date will not be accepted.<br />
Formatting guidelines:<br />
• Use the font style “Times New Roman” or “Arial” and font size “12”.<br />
• It is advised to compose your document in MS-Word format.<br />
• You may also compose your assignment in Open Office format.<br />
• Use black and blue font colors only.<br />
Referencing Guidelines:<br />
• Use APA style for referencing and citation. For guidance search “APA reference style” in<br />
Google and read various websites containing information for better understanding or visit<br />
<a href="http://linguistics.byu.edu/faculty/henrichsenl/apa/APA01.html" target="_blank" rel="noopener noreferrer nofollow ugc">http://linguistics.byu.edu/faculty/henrichsenl/apa/APA01.html</a>.<br />
Rules for Marking<br />
Please note that your assignment will not be graded or graded as Zero (0), if:<br />
• It is submitted after the due date.<br />
• The file you uploaded does not open or is corrupt.<br />
• It is in any format other than MS-Word or Open Office; e.g. Excel, PowerPoint, PDF etc.<br />
• It is cheated or copied from other students, internet, books, journals etc.<br />
Note related to load shedding: Please be proactive<br />
Dear students<br />
As you know that Post Mid-Term semester activities have started and load shedding problem is<br />
also prevailing in our country. Keeping in view the fact, you all are advised to post your activities<br />
as early as possible without waiting for the due date. For your convenience; activity schedule has<br />
already been uploaded on VULMS for the current semester, therefore no excuse will be entertained<br />
after due date.</p>
]]></description><link>https://community.secnto.com//topic/310/bit701-assignment-no-2-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 23:51:54 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/310.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 05 Aug 2019 16:13:12 GMT</pubDate><ttl>60</ttl></channel></rss>