SNHU IT 145 Module 6 Assignment
9:53
SNHU IT145 zyBooks Lab 6
10:19
2 ай бұрын
SNHU IT 145 zyBooks Ch 5
22:20
2 ай бұрын
SNHU IT 145 Module 5 Assignment
11:06
SNHU IT 145 - Ch 4, Part 2
13:03
2 ай бұрын
SNHU IT 145 - Ch 4, Part 1
27:45
2 ай бұрын
SNHU IT 145 zyBooks Ch3, Part 2
31:37
SNHU IT 145 zyBooks Ch3, Part 1
32:24
SNHU IT 145 - Ch 2 Lab
3:12
5 ай бұрын
SNHU IT 145 - zyBooks Ch 2, Part 2
32:41
SNHU IT 145 - zyBooks Ch 2, Part 1
28:09
SNHU CS 340 - Module 1 Assignment
4:12
SNHU IT 145 - Module 1 Labs
9:54
5 ай бұрын
SNHU IT 145 - zyBooks Ch 1, Part 2
31:14
SNHU IT 145 - zyBooks Ch 1, Part 1
32:00
SNHU CS 340 - Introduction
8:25
5 ай бұрын
SNHU IT 145 - Course Intro
17:06
5 ай бұрын
SNHU IT 145 - Apporto IDE
7:52
5 ай бұрын
SNHU IT 145 - Setup IDE
14:56
5 ай бұрын
IT 140 zyBooks Ch 7 Labs
8:56
Жыл бұрын
IT 140 zyBooks Ch 7 - Files
12:44
Жыл бұрын
IT 140 Project 2 Details
9:37
Жыл бұрын
Project 3 Details
17:26
Жыл бұрын
IT 140 Ch 6 Assignment
4:46
Жыл бұрын
Пікірлер
@souljasky999
@souljasky999 Ай бұрын
Great break down. Much appreciated.
@Barbles88
@Barbles88 2 ай бұрын
No matter what I do it asks for password.
@isaacd5002
@isaacd5002 2 ай бұрын
Thanks. My day would be ruined without this video. I love education only when I know what I am doing and am confident, which this video helps with.
@DymiandWebb
@DymiandWebb 3 ай бұрын
Thanks for your help, much appreciated
@jcdragneel
@jcdragneel 5 ай бұрын
Is this project suppose to be have a template provided for it? My previous courses [python, SQL, Java even] have given students a template to work from, but my professor just basically threw a pseudocode and the project directions at us with no ground work to work from. I'm still trying to manage learning how to work C++ and its functions so far and have no idea how to start this project. The Sense tutorials broke down each portion and had us work on how to make a few things work, but we have to still make our own based on some remedial tutorial and have everything piggy back off of each other. I have no idea if this will be seen in time, but is there a way that you could provide the template that you had for your class?
@donelleaguayo4368
@donelleaguayo4368 2 ай бұрын
This has been my experience. A lot of the professors do not provide this information in the modules and the prompt does not specify any of this, nor was it provided in the resources. It seems that your just expected to find it online somewhere. This is a horrible program.
@djratio9889
@djratio9889 5 ай бұрын
# 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 5 ай бұрын
can you help me with section 1.11 data frames?
@gayvinkambull6164
@gayvinkambull6164 5 ай бұрын
Not sure why but my PyCharm didn’t auto open a file like yours did and the .gitignore file is ø
@mattparker5663
@mattparker5663 5 ай бұрын
@gayvinkambull6164 ...I haven't taught the course since this recording was posted. Things might have changed
@gayvinkambull6164
@gayvinkambull6164 5 ай бұрын
@@mattparker5663 well.. that is unfortunate but I do appreciate you responding!
@chidij20
@chidij20 6 ай бұрын
🙏🏽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"); } } }
@CREATUREwithEnergy
@CREATUREwithEnergy 6 ай бұрын
Your code isn’t ríght
@CREATUREwithEnergy
@CREATUREwithEnergy 6 ай бұрын
Thank you so much for making these videos! It helps me so much :D
@CREATUREwithEnergy
@CREATUREwithEnergy 6 ай бұрын
Did you do chapter 3? edit: I FOUND IT YAY THANK YOU
@ACDCrocks801
@ACDCrocks801 7 ай бұрын
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 7 ай бұрын
all of my inputs are correct but I'm getting a 3/10 for the work.. I am not understanding this!!
@86Ryan
@86Ryan 8 ай бұрын
Thanks for the help
@CharliesOpus
@CharliesOpus 8 ай бұрын
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 8 ай бұрын
You have a cool cat btw
@CryptbloomEnjoyer
@CryptbloomEnjoyer 9 ай бұрын
Thank you for this. There is absolutely no way I am learning anything from just reading the Zybook.
@mr.spray85
@mr.spray85 9 ай бұрын
Thanks for all your help this term!
@billythenarwhal1579
@billythenarwhal1579 10 ай бұрын
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 10 ай бұрын
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 10 ай бұрын
Super helpful to have this following along in zyBooks!
@cj22000
@cj22000 10 ай бұрын
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 10 ай бұрын
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 10 ай бұрын
@@mattparker5663 Thank you!
@jackbynum2460
@jackbynum2460 11 ай бұрын
I can't get the code writing part it's like i missing a whole lesson or something
@mattparker5663
@mattparker5663 11 ай бұрын
@jackbynum2460...this recording didn't have a separate code writing portion.
@jackbynum2460
@jackbynum2460 11 ай бұрын
@@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 11 ай бұрын
Matt, Do you have an upcoming IT140 course this spring semester?
@mattparker5663
@mattparker5663 11 ай бұрын
I am not scheduled for the class this spring
@BB-848-VAC
@BB-848-VAC 8 ай бұрын
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 Жыл бұрын
honestly wish I could have transferred to this class it seems so much easier to comprehend.
@billythenarwhal1579
@billythenarwhal1579 9 ай бұрын
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 Жыл бұрын
thank you so much for this!!
@itninja7771
@itninja7771 Жыл бұрын
YOUR VIDIOS ARE WAY TOO DIFFICULT TO VIEW. YOU DID NOT EDIT THEM. GIVE BACK ANY MONETARY FUNDS FROM KZbin
@ITninja2-ez9rs
@ITninja2-ez9rs Жыл бұрын
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 Жыл бұрын
too small on screen. could barely see the font. Zoom in please.
@Call_me_T.H.
@Call_me_T.H. Жыл бұрын
You are a gentleman and a scholar brother!
@Jacob46683
@Jacob46683 Жыл бұрын
It keeps saying error
@EmanuelJordan-bg3br
@EmanuelJordan-bg3br 7 ай бұрын
Did you figure it out
@JHendo247
@JHendo247 7 ай бұрын
@@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 Жыл бұрын
I still don't get it. 😞
@EmilyHazelwood-u7i
@EmilyHazelwood-u7i Жыл бұрын
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 2 жыл бұрын
nice
@patsplat
@patsplat 2 жыл бұрын
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!