OOCP

 15 Demonstrate nesting of member function.

class Student
{     int marks;
    void showMarks()
    { cout << "Marks = " << marks << endl;        
    }
public:
    void getMarks()
    {  marks = 85;
        showMarks();  // Calling another member function
    }
};
int main()
{   Student s;
    s.getMarks();
    return 0;
}

4 Write a short note on defining member functions.1. Defining the function inside the class 

class Student
{   int age;

public:
    void display(

...

See on Student Notes »

GC BVBBNB

Q1 Graphically show that an increase in investment in the economy results in a

  proportionate increase in income in the simple Keynesian model.

Ans Graphical Demonstration: Increase in Investment and Proportionate Increase in Income
In the simple Keynesian model, national income is determined by aggregate expenditure. Assume a closed
economy with no government and no foreign trade.
Equilibrium condition: Y = C + I.
Let C = a + bY. When autonomous investment rises by ΔI, aggregate expenditure rises.

...

See on Wikiteka »

RomBot2



RB2 — Aide-mémoire d'opération par Roméo St-Cyr sept. 2026

1 — CONNEXION

• Allumer RB2 (batterie + interrupteur), laisser démarrer complètement.

• Rejoindre le Wi-Fi du robot : RB2-ROS (ou rester sur le réseau maison si le nanoHD est à portée).

• Ouvrir dans le navigateur : http://rb2-ros.local:5051/terrain4 http://192.168.2.221:5051/terrain4

Si ça ne répond pas : http://10.42.0.1/terrain4

2 — PAGES

• /terrain4 — page principale de conduite. C'est celle-ci qu'on...

See on Wikiteka »

Kgvvh

Q1. What is BCG Matrix? Explain.

The BCG (Boston Consulting Group) Matrix is a corporate planning tool used to evaluate a firm's portfolio of business units or product lines based on market growth rate and relative market share.

  • Stars: High market growth, high market share. Require heavy investment to finance rapid growth.
  • Cash Cows: Low market growth, high market share. Require less investment; generate cash used to support other units.
  • Question Marks: High market growth, low market share.
...

See on Student Notes »

micro

1. Android Application Design Essentials
  • Core Concept: Creating user interfaces and experiences optimized for mobile devices using XML layouts and Material Design principles.
  • Key Applications: Implementing responsive UI design, managing resources efficiently, and adhering to platform guidelines for usability and accessibility.
  • Example: Designing a weather app interface that adapts seamlessly to different screen sizes and orientations while maintaining intuitive navigation
2. Anatomy of an
...

See on Student Notes »

cell division

Cell division is the process in which a parent cell (cell that is the source of other cells) divides into two or more daughter cells (identical cells that form when a cell divides).Mitosis is a type of cell division where one cell divides into 2 genetically identical daughter cells.The main purposes of mitosis are to allow for growth and to repair and reproduction of cells.DNA from the parent cell is replicated so that the two daughter cells have full copies of the necessary genetic information....

See on Student Notes »

gfhfdjgfkscc

2. Describe the evolution of Cloud Computing with key technological developments that led to modern cloud computing.

== Cloud computing evolved through these stages: // Mainframe Computing – Centralized computers shared by many users. // Client-Server Computing – Services provided through servers to clients. // Distributed Computing – Work distributed among multiple computers. // Virtualization – Physical resources divided into multiple virtual machines. // Grid Computing – Resources from

...

See on Wikiteka »

gfsggdfgdfcccl

2. What is Business Ethics? What are the reasons to pursue CSR and good business ethics?

== Business ethics refers to moral principles and values that guide the behavior and decisions of a business.

Reasons: Builds good reputation and customer trust. // Improves employee satisfaction. // Helps follow laws and regulations. //Increases long-term profit and business success.

3. Define Intellectual Property. How can we protect such property using Copyright?

== Intellectual property is the creation of

...

See on Wikiteka »

OOCP SEM 3

1. Compare text files and binary files with respect to storage, processing speed, memory utilization, and applications.

1. Comparison Between Text Files and Binary Files

Basis Text Files Binary Files
Storage Data is stored as characters (ASCII/Unicode). Numbers are stored in readable form. Data is stored in binary (0s and 1s) in the format used by the computer.
Processing Speed Generally slower because data may need to be converted between characters and internal formats. Generally faster
...

See on Wikiteka »