Number Guesser...Can you guess the number in less than 10 tries
https://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html Today we created a number guessing game using Java. Good Luck...
Pizza Orders
import java.util.Scanner; import java.text.NumberFormat; public class Main { public static void main (String [] args){ Scanner scan = new...
Welcome Back. Let's Review and Input...
Review + Kahoot!
Java - Review Data Type and Let's do Conditional Logic and Looping
Summary Implicit Type Conversion - Widening conversions are automatic - Mixed integer sizes: Uses largest integer in equation - Mixed...
Let's Java - 3 Billion Devices!
What is Java: Why Java? - Remember Python is an interpreted, object-oriented, high-level programming language with dynamic semantics? -...
Review & Group Exercises
NumPy Exercises Now that we've learned about NumPy let's test your knowledge. We'll start off with a few simple tasks, and then you'll be...
Welcome back, review and standard distribution
NumPy NumPy (or Numpy) is a Linear Algebra Library for Python, the reason it is so important for Data Science with Python is that almost...
Intro to Machine Learning (ML), Matrices & NumPy
Installation: conda install numpy import numpy as np my_matrix = [[1,2,3],[4,5,6],[7,8,9]] np.array(my_list) OR np.array(my_matrix)...