Matt Parker
Matt Parker
  • 76
  • 59 736
SNHU IT 145 - Ch 2 Lab
SNHU IT 145 - Ch 2 Lab
Переглядів: 28

Відео

SNHU IT 145 - zyBooks Ch 2, Part 2
Переглядів 157 годин тому
SNHU IT 145 - zyBooks Ch 2, Part 2
SNHU IT 145 - zyBooks Ch 2, Part 1
Переглядів 6421 годину тому
SNHU IT 145 - zyBooks Ch 2, Part 1
SNHU CS 340 - Module 1 Assignment
Переглядів 92День тому
SNHU CS 340 - Module 1 Assignment
SNHU IT 145 - Module 1 Labs
Переглядів 45День тому
SNHU IT 145 - Module 1 Labs
SNHU IT 145 - zyBooks Ch 1, Part 2
Переглядів 27День тому
SNHU IT 145 - zyBooks Ch 1, Part 2
SNHU IT 145 - zyBooks Ch 1, Part 1
Переглядів 39День тому
SNHU IT 145 - zyBooks Ch 1, Part 1
SNHU CS 340 - Introduction
Переглядів 3414 днів тому
SNHU CS 340 - Introduction
SNHU IT 145 - Course Intro
Переглядів 1714 днів тому
SNHU IT 145 - Course Intro
SNHU IT 145 - Apporto IDE
Переглядів 2314 днів тому
SNHU IT 145 - Apporto IDE
SNHU IT 145 - Setup IDE
Переглядів 4014 днів тому
SNHU IT 145 - Setup IDE
CS 210 Using Apporto Visual Studio
Переглядів 367Рік тому
CS 210 Using Apporto Visual Studio
IT 140 zyBooks Ch 8, Part 2 - Modules
Переглядів 229Рік тому
IT 140 zyBooks Ch 8, Part 2 - Modules
IT 140 zyBooks Ch 8, Part 1 - Objects
Переглядів 277Рік тому
IT 140 zyBooks Ch 8, Part 1 - Objects
IT 140 zyBooks Ch 7 Labs
Переглядів 517Рік тому
IT 140 zyBooks Ch 7 Labs
IT 140 zyBooks Ch 7 - Files
Переглядів 340Рік тому
IT 140 zyBooks Ch 7 - Files
IT 140 Project 2 Details
Переглядів 3,4 тис.Рік тому
IT 140 Project 2 Details
CS 210 zyBooks Ch 10, Pointers Part 2
Переглядів 220Рік тому
CS 210 zyBooks Ch 10, Pointers Part 2
CS 210 zyBooks Ch 10, Pointers Part 1
Переглядів 442Рік тому
CS 210 zyBooks Ch 10, Pointers Part 1
Project 3 Details
Переглядів 1,7 тис.Рік тому
Project 3 Details
IT 140 Ch 6 Assignment
Переглядів 503Рік тому
IT 140 Ch 6 Assignment
IT 140 zyBooks Ch 6 Dictionaries
Переглядів 147Рік тому
IT 140 zyBooks Ch 6 Dictionaries
IT 140 zyBooks Ch 6 Lists
Переглядів 302Рік тому
IT 140 zyBooks Ch 6 Lists
CS 210 zyBooks Ch 9 - Inheritance
Переглядів 159Рік тому
CS 210 zyBooks Ch 9 - Inheritance
CS 210 zyBooks Ch 8 - Exceptions
Переглядів 263Рік тому
CS 210 zyBooks Ch 8 - Exceptions
IT 140 zyBooks Ch 5 Functions, Part 2
Переглядів 417Рік тому
IT 140 zyBooks Ch 5 Functions, Part 2
IT 140 zyBooks Ch 5 Functions, Part 1
Переглядів 1 тис.Рік тому
IT 140 zyBooks Ch 5 Functions, Part 1
CS 210 Files
Переглядів 541Рік тому
CS 210 Files
CS 210 Project 2 Details
Переглядів 1,9 тис.Рік тому
CS 210 Project 2 Details
IT 140 zybooks Ch 4 - Loops
Переглядів 2,2 тис.Рік тому
IT 140 zybooks Ch 4 - Loops

КОМЕНТАРІ

  • @djratio9889
    @djratio9889 9 днів тому

    # Prompt the user to input an integer between 32 and 126 integer_input = int(input("Enter integer (32 - 126): ")) # Prompt the user to input a float float_input = float(input("Enter float: ")) # Prompt the user to input a character char_input = input("Enter character: ") # Prompt the user to input a string string_input = input("Enter string: ") # Output the four values on a single line separated by a space print(f"{integer_input} {float_input} {char_input} {string_input}") # Output the four values in reverse order print(f"{string_input} {char_input} {float_input} {integer_input}") # Convert the integer to a character using the chr() function converted_char = chr(integer_input) # Output the converted character print(f"{integer_input} converted to a character is {converted_char}")

  • @IeishaThompkins
    @IeishaThompkins 9 днів тому

    can you help me with section 1.11 data frames?

  • @gayvinkambull6164
    @gayvinkambull6164 15 днів тому

    Not sure why but my PyCharm didn’t auto open a file like yours did and the .gitignore file is ø

    • @mattparker5663
      @mattparker5663 12 днів тому

      @gayvinkambull6164 ...I haven't taught the course since this recording was posted. Things might have changed

    • @gayvinkambull6164
      @gayvinkambull6164 11 днів тому

      @@mattparker5663 well.. that is unfortunate but I do appreciate you responding!

  • @chidij20
    @chidij20 Місяць тому

    🙏🏽Thank you so very much I did as you instructed and I got everything. How do I subscribe twice to your channel 🙌🏽🙌🏽😂😂. For anyone who needs to copy code, here is mine below; Just copy, paste and run 😤😎 import java.util.Scanner; public class LabProgram { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int totalChangeAmount; int numDollars; int numQuarters; int numDimes; int numNickels; int numPennies; totalChangeAmount = scnr.nextInt(); if (totalChangeAmount <= 0) { System.out.println("No change"); } else; numDollars = totalChangeAmount / 100; numQuarters = (totalChangeAmount % 100) / 25; numDimes = ((totalChangeAmount % 100) % 25) / 10; numNickels = (((totalChangeAmount % 100) % 25) % 10) / 5; numPennies = ((((totalChangeAmount % 100) % 25) % 10) % 5) / 1; if (numDollars > 1) { System.out.println( numDollars + " Dollars"); } else if (numDollars == 1) { System.out.println( numDollars + " Dollar"); } if (numQuarters > 1) { System.out.println( numQuarters + " Quarters"); } else if (numQuarters == 1) { System.out.println( numQuarters + " Quarter"); } if (numDimes > 1) { System.out.println( numDimes + " Dimes"); } else if (numDimes == 1) { System.out.println( numDimes + " Dime"); } if (numNickels > 1) { System.out.println( numNickels + " Nickels"); } else if (numNickels == 1) { System.out.println( numNickels + " Nickel"); } if (numPennies > 1) { System.out.println( numPennies + " Pennies"); } else if (numPennies == 1) { System.out.println( numPennies + " Penny"); } } }

  • @SpiritBladeFox
    @SpiritBladeFox Місяць тому

    Your code isn’t ríght

  • @SpiritBladeFox
    @SpiritBladeFox Місяць тому

    Thank you so much for making these videos! It helps me so much :D

  • @SpiritBladeFox
    @SpiritBladeFox Місяць тому

    Did you do chapter 3? edit: I FOUND IT YAY THANK YOU

  • @ACDCrocks801
    @ACDCrocks801 2 місяці тому

    Wow thanks snhu for making me search high and low on youtube for someone to actually show me how to do the work, instead of having my teacher actually teach.

  • @JHendo247
    @JHendo247 2 місяці тому

    all of my inputs are correct but I'm getting a 3/10 for the work.. I am not understanding this!!

  • @86Ryan
    @86Ryan 3 місяці тому

    Thanks for the help

  • @CharliesOpus
    @CharliesOpus 3 місяці тому

    Thank you!! Your videos are still incredibly helpful even though I'm not in your class anymore. I really wish you were my professor again this time around because this class is both miserable and frustrating with very little guidance. So i'm glad these are still available because it's the only way I have any idea what to do!

  • @GigasAhriman
    @GigasAhriman 3 місяці тому

    You have a cool cat btw

  • @CryptbloomEnjoyer
    @CryptbloomEnjoyer 4 місяці тому

    Thank you for this. There is absolutely no way I am learning anything from just reading the Zybook.

  • @mr.spray85
    @mr.spray85 4 місяці тому

    Thanks for all your help this term!

  • @billythenarwhal1579
    @billythenarwhal1579 5 місяців тому

    Is SNHU doing anything to switch to a better program for teaching this course? zyBooks is awful, I keep having to go to online tutorials to learn the material then jump back in to answer the questions.

  • @cj22000
    @cj22000 5 місяців тому

    Question: Would we link insert the getEndingBalance formula into the getEndingBalanceFormatted function then call round and format after that, still in the function? Also thank you so much for uploading this, it was a HUGE help🙏

  • @mr.spray85
    @mr.spray85 5 місяців тому

    Super helpful to have this following along in zyBooks!

  • @cj22000
    @cj22000 5 місяців тому

    HELP! I'm getting an green squiggly line error in the header file for the string function declarations saying "Function definition for 'functionName' not found", even though I defined it within the cpp within the recommended definition format by visual studio (as shown at 7:45). Is there a way to resolve this?? I'm not able to use the function properly in the main file as it won't take in any arguments.

    • @mattparker5663
      @mattparker5663 5 місяців тому

      The function signature needs to match exactly as what is defined in the header file. Be sure that the return type is the same and has the same types for parameters. Oh, by the way...if you hover over the method name in Visual Studio, click 'Show Potential Fixes'...then 'Create definition...' and the method definition will be in the .cpp file.

    • @cj22000
      @cj22000 5 місяців тому

      @@mattparker5663 Thank you!

  • @jackbynum2460
    @jackbynum2460 6 місяців тому

    I can't get the code writing part it's like i missing a whole lesson or something

    • @mattparker5663
      @mattparker5663 6 місяців тому

      @jackbynum2460...this recording didn't have a separate code writing portion.

    • @jackbynum2460
      @jackbynum2460 6 місяців тому

      @@mattparker5663 it's okay I figured out what I was doing wrong I was trying to add extra line of code for some reason that didn't need to be there

  • @AaronJohnson-ky5df
    @AaronJohnson-ky5df 6 місяців тому

    Matt, Do you have an upcoming IT140 course this spring semester?

    • @mattparker5663
      @mattparker5663 6 місяців тому

      I am not scheduled for the class this spring

    • @bingus549
      @bingus549 2 місяці тому

      I think I'll be taking this during the last term of 2024. I am so excited to start programming so I guess I'll start here 😄

  • @calebbarrow1237
    @calebbarrow1237 7 місяців тому

    honestly wish I could have transferred to this class it seems so much easier to comprehend.

    • @billythenarwhal1579
      @billythenarwhal1579 4 місяці тому

      I just wish zybooks actually taught what it was supposed to teach instead of me having to scower YT for how to make stuff.

  • @VenessaWaller
    @VenessaWaller 7 місяців тому

    thank you so much for this!!

  • @itninja7771
    @itninja7771 8 місяців тому

    YOUR VIDIOS ARE WAY TOO DIFFICULT TO VIEW. YOU DID NOT EDIT THEM. GIVE BACK ANY MONETARY FUNDS FROM UA-cam

  • @ITninja2-ez9rs
    @ITninja2-ez9rs 8 місяців тому

    Again, other content producers and lecturing on python have enlarged the vidio text . Yours is still too small. blow it up and enlarge the screen content. Otherwise good presentation.

  • @itninja7771
    @itninja7771 8 місяців тому

    too small on screen. could barely see the font. Zoom in please.

  • @Call_me_T.H.
    @Call_me_T.H. 9 місяців тому

    You are a gentleman and a scholar brother!

  • @Jacob46683
    @Jacob46683 10 місяців тому

    It keeps saying error

    • @EmanuelJordan-bg3br
      @EmanuelJordan-bg3br 2 місяці тому

      Did you figure it out

    • @JHendo247
      @JHendo247 2 місяці тому

      @@EmanuelJordan-bg3br I submitted what I saw and got a 3/10 - there are two other questions that I guess supposed to be answered here as well but its not accepting it

  • @ladym7852
    @ladym7852 10 місяців тому

    I still don't get it. 😞

  • @user-fc8gc5ev7d
    @user-fc8gc5ev7d 11 місяців тому

    Thank you for your help with this course!

  • @albertoguadiana1008
    @albertoguadiana1008 Рік тому

    is this reall the whole course 🙌👌🙏

    • @mattparker5663
      @mattparker5663 Рік тому

      Not all of the sections are covered...but the core concepts are!

  • @KarinaGarcia-tk5re
    @KarinaGarcia-tk5re Рік тому

    Thank you for your videos! my teacher does not make any videos and you do! thank you! I hate her! but I love you!

  • @CharliesOpus
    @CharliesOpus Рік тому

    🙏

  • @mattparker5663
    @mattparker5663 Рік тому

    One thing that I forgot in my implementation was freeing the pointer after it is inserted into the set!

  • @KarinaGarcia-tk5re
    @KarinaGarcia-tk5re Рік тому

    Thank you professor! My "instructor" for CS 210 does not give any lectures and she is just very irresponsable, I cant believe that you give the time to your students and my instructor does not ! THANK YOU!!!!!!

  • @xcrazysunshine
    @xcrazysunshine Рік тому

    THANK YOU! I'm in this class but you aren't my instructor and this has been extremely helpful.

  • @5am53pi0l
    @5am53pi0l Рік тому

    Thank you for taking the time to do these. It means the absolute world to have the support you are providing.

  • @BryanWiggers
    @BryanWiggers Рік тому

    SO glad i read these comments...

  • @CharliesOpus
    @CharliesOpus Рік тому

    in your example - doesn't doing 'input_value = number_dollars * 100' directly undo the line above it ('number_dollars = input_value // 100')? if you input '145', the first line gives you '1.45', then the second line would again give you back '145'? Am I misunderstanding what it is supposed to be doing? (probably)

    • @mattparker5663
      @mattparker5663 Рік тому

      Yes...that is not correct...line 12 should be something like input_value = input_value - number_dollars * 100

    • @CharliesOpus
      @CharliesOpus Рік тому

      @@mattparker5663 Very helpful! Thank you!!

  • @Simplyfeliciaxo
    @Simplyfeliciaxo Рік тому

    I got stuck on the 3rd lab but this helped so much!! thank you

  • @CharliesOpus
    @CharliesOpus Рік тому

    Thank you!! :D

  • @chriscole2666
    @chriscole2666 Рік тому

    Press Windows key + arrow keys to conveniently tile windows.

  • @jakecompton0406
    @jakecompton0406 Рік тому

    Thank you for this, I’m just now starting IT 140 and this helps a lot!

    • @mattparker5663
      @mattparker5663 Рік тому

      Unfortunately I only taught this course one term...and didn't get all of the recordings created :(

    • @jakecompton0406
      @jakecompton0406 Рік тому

      @@mattparker5663 it’s all good! At least I got some videos to help me out! Thank you!

  • @nick-ish
    @nick-ish Рік тому

    nice

  • @patsplat
    @patsplat Рік тому

    This is great! Please do Python. My college class is using ZYbooks and sometimes the way the explain and ask things can be confusing.

  • @DWAINEMonster
    @DWAINEMonster 2 роки тому

    Thank you for your dedication to teaching the material. Its not something you get with every professor!