Popular courses 'Graduation in computer science' at graduation in computer science
Graduation in computer science - Study guides, Class notes & Summaries
Looking for the best study guides, study notes and summaries about Graduation in computer science? On this page you'll find 461 study documents about Graduation in computer science.
All 461 results
Sort by:
-
Summary
SMTP & MIME in Computer Networks
-
---8March 20262025/2026
- This document provides a clear and concise explanation of SMTP (Simple Mail Transfer Protocol) and MIME (Multipurpose Internet Mail Extensions), two essential components of email communication in computer networks. 
 
The notes cover how SMTP is used for sending emails across networks, including its working process, commands, and role in client-server communication. It also explains the limitations of basic SMTP, such as handling only plain text data. 
 
To overcome these limitations, the docume...
-
$8.49 More Info
BaekSaEon
-
Exam (elaborations)
Introduction to Programming Final Exam Review (Python) 150+ (Latest 2025-2026 Edition) 100% Verified Q&A + Answer Key Solutions
-
---23March 20262025/2026A+
- Introduction to Programming Final Exam Review (Python) 150+ (Latest Edition) 100% Verified Q&A + Answer Key Solutions
-
$11.92 More Info
felishaa
-
Exam (elaborations)
Intro to Python Final Exam 70+ (Latest 2025-2026 Edition) 100% Verified Q&A + Answer Key Solutions
-
---10March 20262025/2026A+
- Intro to Python Final Exam 70+ (Latest Edition) 100% Verified Q&A + Answer Key Solutions
-
$11.83 More Info
felishaa
-
Exam (elaborations)
WGU D335 Introduction to Programming in Python FINAL EXAM 15+ (Latest 2025-2026 Edition) 100% Verified Q&A + Answer Key Solutions
-
---8March 20262025/2026A+
- WGU D335 Introduction to Programming in Python FINAL EXAM 15+ (Latest Edition) 100% Verified Q&A + Answer Key Solutions
-
$11.62 More Info
felishaa
-
Exam (elaborations)
Python Coding Specialist Exam 110+ (Latest 2025-2026 Edition) 100% Verified Q&A + Answer Key Solutions
-
---16March 20262025/2026A+
- Python Coding Specialist Exam 110+ (Latest Edition) 100% Verified Q&A + Answer Key Solutions
-
$12.68 More Info
felishaa
-
Class notes
DSA_Programs_In_C
-
---27March 20262024/2025
- I have a collection of programs of main important topics in DSA which include stack, queues, arrays, linked list and many more. 
The notes contain proper problem statement, algorithm, program in c language, output
-
$10.49 More Info
BaekSaEon
-
Exam (elaborations)
C949 Data Structures and Algorithms questions and answers Graded A+
-
--20March 20262025/2026A+Available in bundle
- C949 Data Structures and Algorithms 
questions and answers Graded A+ 
Tuple 
A datatype that is immutable, which means that once it's been created, the 
elements can't be changed. It is also a sequence type. Is typically used when 
element position, and not just the relative ordering of elements is important. 
Named Tuple 
An immutable datatype where the element position is important. Each element 
can have it's own designated name. 
Set 
An ADT that serves as an unordered col...
-
$12.99 More Info
DrJOHNWISE
-
Exam (elaborations)
ap csa chapter 10 mcq questions and answers Graded A+
-
--49March 20262025/2026A+Available in bundle
- ap csa chapter 10 mcq questions and answers 
Graded A+ 
Consider the following method. 
public int addFun(int n) 
{ 
if (n <= 0) 
return 0; 
if (n == 1) 
return 2; 
return addFun(n - 1) + addFun(n - 2); 
} 
What value is returned as a result of the call addFun(6) ? 
A 
10 
B 
12 
C 
16 
D 
26 
E 
32 
16 
Consider the following method, which implements a recur
-
$15.99 More Info
DrJOHNWISE