Creative Programming Strategies for Winter 2024 Students

cse 121 lesson 14 elba garza matt wang winter 2024 n.w
1 / 5
Embed
Share

Dive into the latest developments in programming with the Winter 2024 class of CSE 121. Explore announcements, reminders, and key lessons on arrays and traversal patterns. Get ready for the upcoming projects and quizzes while enhancing your coding skills. Engage with the dynamic CSE community and stay ahead in your programming journey.

  • Winter 2024
  • CSE 121
  • Programming
  • Arrays
  • Traversal

Uploaded on | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. CSE 121 Lesson 14 Elba Garza & Matt Wang Winter 2024 TAs: Abby Aishah Anju Annie Archit Ayesha Christian Hannah Heather Hibbah Jacob James Janvi Jasmine Jonus Julia Lucas Luke Maria Nicole Shananda Shayna Trey Vidhi Vivian Today s playlist: sli.do #cse121-14 CSE 121 24wi lecture beats :D Lesson 14 - Winter 2024

  2. Announcements, Reminders Creative Project 3 (C3) Releasing later tonight; due February 27th Resubmission Cycle 4 (R4) due tomorrow, February 22nd Final opportunity for C1! Also eligible: P1, C2 Quiz 0 grades hopefully by this weekend! Quiz 2 on Thursday, February 29th Covers everything up to (and including) today s material! Lesson 14 - Winter 2024

  3. (PCM) Arrays Elements (must all be the same type) Indices (starting at 0) Must decide size when created! arr.length to get arr's length Arrays.toString(arr) to get a nice String version Lesson 14 - Winter 2024

  4. (PCM) Array Traversal Pattern for (int i = 0; i < arr.length; i++) { // do something with arr[i] } Lesson 14 - Winter 2024

  5. Poll in with your answer! How can we get the last element of an array arr? A.arr[arr.length()] B.arr[length()] C.arr[arr.length] D.arr[arr.length() - 1] E.arr[arr.length - 1] Lesson 14 - Winter 2024

Related


More Related Content