Posts

Showing posts from November, 2024

Beasiswa New Zealand (18-22 Nov)

Monday Searching more about CIMB ASEAN Scholarship. I tried searching about test that probably will be on the scholarships. This is what I got from Kobi Education: "akan mengikuti berbagai tes dan kegiatan yang menilai kemampuan komunikasi, kepemimpinan, dan pemecahan masalah".  I also tried searching for another scholarship, but I found nothing. Tuesday Yesterday, I searched about CIMB ASEAN Scholarship and today I tried searching more information about Beasiswa Indonesia Bangkit, because I don't know what I should find about CIMB ASEAN Scholarship. So, I found some information like document and regulations for  Beasiswa Indonesia Bangkit. Here's the link:  Beasiswa Prestasi S1 Luar Negeri (BP.02) – Beasiswa Indonesia Bangkit (BIB) Wednesday Today, I searched about Beasiswa Indonesia Maju. I tried searching about the regulations. Here's the link that I found:  FAQ | Beasiswa Indonesia Maju . After reading the regulations I think it's hard for me to get the sc...

Coding Lesson (18-22 Nov)

Monday Last time I already learned about Indexing and Slicing. Today, I learned on Kaggle about Removing Items and Adding Items in Lists. Removing Items To remove items on the list, you only need to use  .remove() For example: flowers_list.remove("hard-leaved pocket orchid") print(flowers_list) pink primrose,canterbury bells,sweet pea,english marigold,tiger lily,moon orchid,bird of paradise,monkshood,globe thistle Adding Items To add items on the list, you will need to use .append() For example: flowers_list.append("dandelion") print(flowers_list) pink primrose,hard-leaved pocket orchid,canterbury bells,sweet pea,english marigold,tiger lily,moon orchid,bird of paradise,monkshood,globe thistle,dandelion Tuesday Continue learning on Kaggle. I learned about "Lists are not just for strings". Lists can have items with any data type, including booleans, integers, and floats. Here's an example: hardcover_sales = [139, 128, 172, 139, 191, 168, 170] print(...

Coding Lesson (11-15 Nov)

 Monday I learned on how to use git to run programs for my Python project. Here's the video:  https://youtu.be/v_1iqtOnUMg?si=8mSsfm692Q5ADkqS Tuesday I tried some code for the project. Unfortunately, when I run the program, it said that I have the wrong syntax. Here's the code: # List of grades grades = [95, 85, 75, 65] # Function to calculate average def calculate_average(grades):     return sum(grades) / len(grades) # Function to determine letter grade def determine_letter_grade(average):     if 90 <= average <= 100:         return 'A'     elif 80 <= average < 90:         return 'B'     elif 70 <= average < 80:         return 'C'     elif 60 <= average < 70:         return 'D'     else:         return 'F' # Calculate average and determine the letter grade average = calculate_average(grades) le...

Coding Lesson (4-8 Nov)

 Monday - Tuesday Continue studying on Kaggle. I learned about lists in Python. Lists helps you organize, for example you want to make a lists of flower species. To organize, you should use Python string.  For example: flowers = "pink primrose,hard-leaved pocket orchid,canterbury bells,sweet pea,english marigold,tiger lily,moon orchid,bird of paradise,monkshood,globe thistle" print(type(flowers)) print(flowers) <class 'str'> pink primrose,hard-leaved pocket orchid,canterbury bells,sweet pea,english marigold,tiger lily,moon orchid,bird of paradise,monkshood,globe thistle To make it easier to read, you can use square brackets ([]) and add comma.  flowers_list = ["pink primrose", "hard-leaved pocket orchid", "canterbury bells", "sweet pea", "english marigold", "tiger lily", "moon orchid", "bird of paradise", "monkshood", "globe thistle"] print(type(flowers_list)) pri...

Beasiswa New Zealand (4-8 Nov)

Monday CIMB ASEAN Scholarship:  CIMB ASEAN Scholarship Tuesday Continue searching about the scholarship. Today, I read some information about the scholarship — the eligibility and scholarship award. Here is the detail: 1. Basic Eligibility: First , A citizen of either Malaysia, Indonesia, Singapore, Thailand, Cambodia, Vietnam or Philippines. Second ,  Aspire to pursue a career in the financial and banking industry. Third ,  Applicants who are about to start their undergraduate degree or Master’s programme or those who have already started and have a minimum of one full academic year remaining. Fourth ,  Min. CGPA of 3.25/4.0 score or equivalent with excellent academic track record and active in curricular activities. Lastly ,  Applicant must not be a recipient of any other scholarship that comes with contractual obligations such as a service bond. 2. Scholarship award: Full scholarship. World class education. Mentorship program. Internship and management traine...