Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

C++ SWAPPING CODE

Rating
-
Sold
-
Pages
11
Grade
A
Uploaded on
18-01-2026
Written in
2024/2025

Student Information Swap Task CODE, Managing expenses CODE , Key Exchange at a Security Checkpoint CODE , Organizing a Shelf of Books CODE , Finding the Tallest Person in a Group CODE

Institution
Course

Content preview

BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
O2-135242-006
02-135242-006



Task1: Student Information Swap Task

You're managing student information for a school. Your task is to implement a function that swaps
the information of two students. This task will help you understand how pointers can be applied
to real-world problems.




Code:
#include <iostream>
#include <string> // For using the string data type

using namespace std;

// Define a structure to hold student information
struct Student {
string name;
int age;
string grade;
};

// Function to swap the information of two students
void swapStudentInfo(Student &student1, Student &student2) {
// Temporary variable to hold student1's information
Student temp = student1;

// Swap the information between the two students
student1 = student2;
student2 = temp;
}

Department of Computer 1/10 Semester BS IT 1
Sciences CSL-113: Computer
Programming Lab

, BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
O2-135242-006
02-135242-006



int main() {
// Create two student objects and assign values to their attributes
Student student1 = {"John", 15, "10th"};
Student student2 = {"Alice", 16, "11th"};

// Print student information before the swap
cout << "Before swapping:" << endl;
cout << "Student 1: " << student1.name << ", Age: " << student1.age << ", Grade: " << student1.grade << endl;
cout << "Student 2: " << student2.name << ", Age: " << student2.age << ", Grade: " << student2.grade << endl;

// Call the function to swap the students' information
swapStudentInfo(student1, student2);

// Print student information after the swap
cout << "\nAfter swapping:" << endl;
cout << "Student 1: " << student1.name << ", Age: " << student1.age << ", Grade: " << student1.grade << endl;
cout << "Student 2: " << student2.name << ", Age: " << student2.age << ", Grade: " << student2.grade << endl;

return 0;
}

Output:




Department of Computer 2/10 Semester BS IT 1
Sciences CSL-113: Computer
Programming Lab


Task2: Managing expenses

Written for

Course

Document information

Uploaded on
January 18, 2026
Number of pages
11
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$8.99
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
uroojkhan1

Also available in package deal

Get to know the seller

Seller avatar
uroojkhan1 Bahria university
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 months
Number of followers
0
Documents
13
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions