#Basic_computer
1. What does CPU stand for?
a) Central Processing Unit
b) Computer Processing Unit
c) Control Processing Unit
d) Central Power Unit
1. What does CPU stand for?
a) Central Processing Unit
b) Computer Processing Unit
c) Control Processing Unit
d) Central Power Unit
#Basic_computer
3. What is the purpose of RAM in a computer?
a) To store permanent data
b) To control the computer's operations
c) To provide temporary storage for data and programs being used by the CPU
d) To connect various hardware components
3. What is the purpose of RAM in a computer?
a) To store permanent data
b) To control the computer's operations
c) To provide temporary storage for data and programs being used by the CPU
d) To connect various hardware components
๐4
Starting form tomorrow y'all must learn in your given section
๐2
web development class_045947.pdf
184.9 KB
Tomorrow at 4(Local Time) We Have a Website Development Class. From Tomorrow Only Students Whose Name Is Attached To The PDF Above Can Take This Course.
Note: Students who are absent for two or more days will be disqualified
Note: Students who are absent for two or more days will be disqualified
๐5
Web Development Students
Please Watch This Videos Before Our tomorrow's class
How To Use Visual Studio? ๐๐
https://youtu.be/B-s71n0dHUk?si=ZCtY7LW8Hy6y9RtY
How to Run HTML code on Notepad?๐๐
https://youtu.be/AVlEvwACC7c?si=HBYQm_rUvlu2anmg
Please Watch This Videos Before Our tomorrow's class
How To Use Visual Studio? ๐๐
https://youtu.be/B-s71n0dHUk?si=ZCtY7LW8Hy6y9RtY
How to Run HTML code on Notepad?๐๐
https://youtu.be/AVlEvwACC7c?si=HBYQm_rUvlu2anmg
๐1
#Basic_computer
Tomorrow at 7:30 (Local Time) We Have a Basic Computer Class.
Tomorrow at 7:30 (Local Time) We Have a Basic Computer Class.
๐2
Quizzes For Web Development Course ๐๐
Forwarded from Programming Classes (๐ฒ ๐ท . ๐ฒ ๐ท ๐ฝ)
What HTML tag is used to make text superscript?
Anonymous Quiz
60%
<sup>
15%
<superscript>
26%
Both of the above
What HTML tag is used to indicate that text is deleted?
Anonymous Quiz
61%
<del>
12%
<strike>
27%
Both of the above
How to add image to our website using html?
Watch This Videos ๐๐๐
https://youtu.be/Hh_se2Zqsdk?si=yoYMQnB7Doe46mkm
https://youtu.be/Qerz5CQa2A8?si=BRYO73hXl4ph-lb8
https://youtu.be/p22-bIIvINw?si=yCcDq4MJS3oLq2iG
https://youtu.be/NSZWj0mio1A?si=hIhf3ICJET7YDhBx
And more videos are available on YouTube.
If it's still not clear ask me on comment ๐
Watch This Videos ๐๐๐
https://youtu.be/Hh_se2Zqsdk?si=yoYMQnB7Doe46mkm
https://youtu.be/Qerz5CQa2A8?si=BRYO73hXl4ph-lb8
https://youtu.be/p22-bIIvINw?si=yCcDq4MJS3oLq2iG
https://youtu.be/NSZWj0mio1A?si=hIhf3ICJET7YDhBx
And more videos are available on YouTube.
If it's still not clear ask me on comment ๐
๐3
#Basic_computer
What is the purpose of a cache in a computer system?
a) To store frequently accessed data for faster retrieval
b) To provide additional storage space for files
c) To control the flow of data between the CPU and other hardware components
d) To protect the computer from malware attacks
What is the purpose of a cache in a computer system?
a) To store frequently accessed data for faster retrieval
b) To provide additional storage space for files
c) To control the flow of data between the CPU and other hardware components
d) To protect the computer from malware attacks
โค1
For all students of Python, web Development and basic Computer Courses
We would like to inform you that our Class which was scheduled to be held on the first Saturday of the week has been postponed to Next Friday due to our Exams next week. We would like to tell you to study the lessons with your full attention and prepare for the exams.
Note: Please note that there will be classes for two consecutive days next Friday and Saturday.
We would like to inform you that our Class which was scheduled to be held on the first Saturday of the week has been postponed to Next Friday due to our Exams next week. We would like to tell you to study the lessons with your full attention and prepare for the exams.
Note: Please note that there will be classes for two consecutive days next Friday and Saturday.
๐3
We would like to inform you that our Class which was scheduled to be held on the first Friday of the week has been postponed to Next Saturday.
๐1
Tomorrow, we will have classes just like scheduled in the timetable. So students do prepare and come to class on time.
Have a nice time.
Have a nice time.
๐3
Forwarded from ๐น Hamster Kombat Mini Game
Write the output of the following functions.
A function to add two numbers:
@oroscholarly
Website: oroscholarly.gaammeemedia.com
A function to add two numbers:
def add_numbers(a, b):2. A function to check if a number is even:
return a + b
result = add_numbers(5, 3)
print(result)
def is_even(num):3. A function to calculate the area of a circle:
if num % 2 == 0:
return True
else:
return False
print(is_even(4))
print(is_even(5))
import math4. A function to print a greeting message:
def area_of_circle(radius):
return math.pi * radius ** 2
print(area_of_circle(5))
def greet(name):5. A function to calculate the factorial of a number:
print("Hello, " + name + "!")
greet("Alice")
greet("Bob")
def factorial(num):
if num == 0:
return 1
else:
return num * factorial(num-1)
print(factorial(5))
@oroscholarly
Website: oroscholarly.gaammeemedia.com
1.
#python
@oroscholarly
Oroscholarly.gaammeemedia.com
append()
method adds an element to the end of the list:numbers = [1, 2, 3]2.
numbers.append(4)
print(numbers) # Output: [1, 2, 3, 4]
extend()
method adds multiple elements to the end of the list:numbers = [1, 2, 3]3.
numbers.extend([4, 5])
print(numbers) # Output: [1, 2, 3, 4, 5]
insert()
method inserts an element at a specific index:fruits = ["apple", "banana", "orange"]4.
fruits.insert(1, "grape")
print(fruits) # Output: ["apple", "grape", "banana", "orange"]
remove()
method removes the first occurrence of an element:fruits = ["apple", "banana", "orange"]5.
fruits.remove("banana")
print(fruits) # Output: ["apple", "orange"]
pop()
method removes and returns the last element of the list:numbers = [1, 2, 3]6.
last_number = numbers.pop()
print(last_number) # Output: 3
print(numbers) # Output: [1, 2]
index()
method returns the index of the first occurrence of an element:fruits = ["apple", "banana", "orange"]7.
index_of_banana = fruits.index("banana")
print(index_of_banana) # Output: 1
count()
method returns the number of occurrences of an element in the list:numbers = [1, 2, 3, 2, 1]8.
number_of_ones = numbers.count(1)
print(number_of_ones) # Output: 2
sort()
method sorts the list in ascending order:numbers = [3, 1, 4, 2]9.
numbers.sort()
print(numbers) # Output: [1, 2, 3, 4]
reverse()
method reverses the order of the list:numbers = [1, 2, 3]
numbers.reverse()
print(numbers) # Output: [3, 2, 1]
#python
@oroscholarly
Oroscholarly.gaammeemedia.com
๐ฅฐ1
16. \<b> for bold text:
17. \<i> for italicized text:
18. \<u> for underlined text:
19. \<s> for strikethrough text:
20. \<blockquote> for block quotes:
21. \<q> for inline quotes:
22. \<abbr> for abbreviations:
23. \<cite> for citations:
24. \<sub> for subscript text:
25. \<sup> for superscript text:
These tags allow for text formatting, quotations, abbreviations, citations, and special text positioning within HTML content.
<b>This text is bold.</b>
17. \<i> for italicized text:
<i>This text is italicized.</i>
18. \<u> for underlined text:
<u>This text is underlined.</u>
19. \<s> for strikethrough text:
<s>This text has a strikethrough.</s>
20. \<blockquote> for block quotes:
<blockquote>This is a blockquote.</blockquote>
21. \<q> for inline quotes:
<q>This is an inline quote.</q>
22. \<abbr> for abbreviations:
<abbr title="World Wide Web">WWW</abbr>
23. \<cite> for citations:
<cite>Book Title</cite>
24. \<sub> for subscript text:
H<sub>2</sub>O
25. \<sup> for superscript text:
E=mc<sup>2</sup>
These tags allow for text formatting, quotations, abbreviations, citations, and special text positioning within HTML content.