Pinned Repositories
audio-band
Display and control songs from the Windows taskbar
COSC4360-Senior-Project
Natural Language Processor - People's Sentiment
Crude-Oil-Report
This reports look at United States top exports of crude oil and on how much crude oil Texas produced in 2022.
cs-video-courses
List of Computer Science courses with video lectures.
IBM-Data-Analyst-P.C
IBM Data Analysts Professional Certification
RandomForest
Understanding Random Forest Decision Trees
U.S-Sales-of-EVs-PHEV
the sale of Electric Vehicles (EVs) and Plug-in Hybird vehicles(PHEVs) in the US between 2011 and 2019
WatchTheory
WatchTheory.github.io
Portfolio
WatchTheory's Repositories
WatchTheory/WatchTheory
WatchTheory/audio-band
Display and control songs from the Windows taskbar
WatchTheory/COSC4360-Senior-Project
Natural Language Processor - People's Sentiment
WatchTheory/Crude-Oil-Report
This reports look at United States top exports of crude oil and on how much crude oil Texas produced in 2022.
WatchTheory/cs-video-courses
List of Computer Science courses with video lectures.
WatchTheory/devops-step-by-step
Learn DevOps Step-by-step
WatchTheory/Example-ML-Project
An example on to use a dataset and then train an AI Model.
WatchTheory/IBM-Data-Analyst-P.C
IBM Data Analysts Professional Certification
WatchTheory/Inheritance
Basic of Inheritance
WatchTheory/Machine_learning_UHD
ML_UHD Learning
WatchTheory/Project-Machine
COSC Senior Project
WatchTheory/RandomForest
Understanding Random Forest Decision Trees
WatchTheory/U.S-Sales-of-EVs-PHEV
the sale of Electric Vehicles (EVs) and Plug-in Hybird vehicles(PHEVs) in the US between 2011 and 2019
WatchTheory/WatchTheory.github.io
Portfolio
WatchTheory/Excel-Basic-for-Data-Analysis
WatchTheory/mycroft-core
Mycroft Core, the Mycroft Artificial Intelligence platform.
WatchTheory/ReadMe
WatchTheory/SpaceYrepo
Applied Data Science Capstone
WatchTheory/SumOddRange
Write a method called isOdd with an int parameter and call it number. The method needs to return a boolean. Check that number is > 0, if it is not return false. If number is odd return true, otherwise return false. Write a second method called sumOdd that has 2 int parameters start and end, which represent a range of numbers. The method should use a for loop to sum all odd numbers in that range including the end and return the sum. It should call the method isOdd to check if each number is odd. The parameter end needs to be greater than or equal to start and both start and end parameters have to be greater than 0. If those conditions are not satisfied return -1 from the method to indicate invalid input. Example input/output: * sumOdd(1, 100); → should return 2500 * sumOdd(-1, 100); → should return -1 * sumOdd(100, 100); → should return 0 * sumOdd(100, -100); → should return -1 * sumOdd(100, 1000); → should return 247500 TIP: use the remainder operator to check if the number is odd NOTE: Both methods needs to be defined as public static like we have been doing so far in the course. NOTE: Do not add a main method to solution code.
WatchTheory/VipCustomer
Exercise of Constructors