Programming Classes pinned Β«For Web development Students only
Please Select Only 3 Projects from these 10 Projects. Top 3 selected projects will be done in class. We will Try to cover the others too AS much as The time allowed us.Β»
Please Select Only 3 Projects from these 10 Projects. Top 3 selected projects will be done in class. We will Try to cover the others too AS much as The time allowed us.Β»
Forwarded from Udemy Free Course
πππ FREE COURSE ALERT πππ
π Learn JavaScript - For Beginners
βΉοΈ Learn how to Code Web Pages using JavaScript
π§βπ« Instructor: YouAccel Training
π Language: English
π Category: #Coding
π° Price:$34.99 β‘οΈπ
π ENROLL NOW - LIMITED ENROLLMENTS ONLY
βββββββββββββββ
π @course | @exams | @iitjee | @learning | @notes | @physicswallah | @skillshare | @unacademy π
π Learn JavaScript - For Beginners
βΉοΈ Learn how to Code Web Pages using JavaScript
π§βπ« Instructor: YouAccel Training
π Language: English
π Category: #Coding
π° Price:
π ENROLL NOW - LIMITED ENROLLMENTS ONLY
βββββββββββββββ
π @course | @exams | @iitjee | @learning | @notes | @physicswallah | @skillshare | @unacademy π
β€1π₯°1
We have a class on Sunday at the usual time , don't forget to study before you come to class.
π4
How many hours of the python video with mosh have you watched?
Anonymous Poll
18%
1 hour
8%
2 hours
13%
3 hours
24%
4 hours and more
37%
I haven't seen it at all
π3
There is class tomorrow (Sunday). Please be make sure you come on time. Attendance has marks. Being absent may result in loss of marks.
β€2π1
var inputValue = parseFloat(document.getElementById("input").value);
var Result = document.getElementById("result");
var outputValue;
outputValue = inputValue * 1000; /
outputElement.textContent = outputValue + " km";
}
Programming Classes
var inputValue = parseFloat(document.getElementById("input").value); var Result = document.getElementById("result"); var outputValue; outputValue = inputValue * 1000; / outputElement.textContent = outputValue + " km"; }
Those who came today's class Just try to put this code on your js file and let me know if you face any error.
π2
There is class on Friday at 10:30 local time for web dev, python and basic computer classes.
For python students please bring your projects for evaluation.
For python students please bring your projects for evaluation.
π3
Tomorrow we have a class at 2:00 local time for web dev, python and basic computer classes.
For website development Students Prepare a project you want to work on.
For website development Students Prepare a project you want to work on.
β€3π1π₯1
1. Create a code generator. This can that take text as input, replaces each letter with another letter, and outputs the βencodedβ message.
2. Build a countdown calculator. Write some code that can take two dates as input, and then calculate the amount of time between them. This will be a great way to familiarize yourself with Pythonβs datetime module.
3. Write a sorting project. Given a list, can you write some code that sorts it alphabetically, or numerically? Yes, Python has this functionality built-in, but see if you can do it without using sort()!
4. Build an interactive quiz application. Which Avenger are you? Build a personality or recommendation quiz that asks users some questions, stores their answers, and then performs some kind of calculation to give the user a personalized result based on their answers
5. Tic-Tac-Toe by Text. Build a Tic-Tac-Toe game thatβs playable like a text adventure. Can you make it print a text-based representation of the board after each move?
6. Make a temperature/measurement converter. Write a script that can convert Fahrenheit to Celcius and back, or inches to centimeters and back, etc. How far can you take it?
7. Simple Calculator: Create a basic calculator program that can perform addition, subtraction, multiplication, and division operations.
8. Number Guessing Game: Develop a game where the computer generates a random number and the player has to guess it within a certain number of attempts.
9. Countdown Timer: Create a program that allows users to set a countdown timer for a specified duration and notifies them when the time is up.
10. BMI Calculator: Develop a Body Mass Index (BMI) calculator that takes input for height and weight and calculates the BMI value along with a corresponding health category.
11. Password Generator: Build a program that generates random passwords of varying lengths and complexities based on user input.
12. Currency Converter: Build a program that converts currency values between different currencies based on exchange rates.
Please open Telegram to view this post
VIEW IN TELEGRAM
π4π₯2β€1
Programming Classes
Choose one project idea that you haven't submitted before and prepare it for the next week. It has presentation.
Please, be serious about it as this is the last grading project.
Please, be serious about it as this is the last grading project.
Programming Classes
Tomorrow we have a class at 2:00 local time for web dev, python and basic computer classes. For website development Students Prepare a project you want to work on.
Web Development Class is postponed to 4:00(Tomorrow) Saturday
Password Generator In JavaScript π
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<script>
function generatePassword(length) {
var charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var password = "";
for (var i = 0; i < length; i++) {
var randomIndex = Math.floor(Math.random() * charset.length);
password += charset[randomIndex];
}
return password;
}
function generateAndDisplayPassword() {
var passwordLength = document.getElementById("passwordLength").value;
var newPassword = generatePassword(passwordLength);
document.getElementById("passwordDisplay").innerText = newPassword;
}
</script>
</head>
<body>
<h1>Password Generator</h1>
<label for="passwordLength">Password Length:</label>
<input type="number" id="passwordLength" value="12" min="6" max="20">
<button onclick="generateAndDisplayPassword()">Generate Password</button>
<p id="passwordDisplay"></p>
</body>
</html>
π2β€1
Programming Classes pinned Β«Choose one project idea that you haven't submitted before and prepare it for the next week. It has presentation. Please, be serious about it as this is the last grading project.Β»
It's the last grading project so don't be absent.
Please open Telegram to view this post
VIEW IN TELEGRAM
Python class prepare your projects.
we will have our next class on May 11 (ginbot 3) Saturday 2:30 local time.
Please open Telegram to view this post
VIEW IN TELEGRAM
Python classes tomorrow will be last day to present your projects...
Please, bring your projects with you.
Local time 2:30
Mock exam wont be a reason to be absent, as we will finish quickly so that you can get back to your studying.
Please, bring your projects with you.
Local time 2:30
Mock exam wont be a reason to be absent, as we will finish quickly so that you can get back to your studying.