Can someone explain what a k-connected graph means with an example?
So I made a "triangle graph", like the one below, does that mean that the graph below is 1-connected, since that is the maximum number of vertices you can take out to make a connected graph?

A connected graph is $k$-connected if either after removing any $k - 1$ vertices the remaining graph is connected. The connectivity of a graph $G$ is the largest $k$ less than $n$ for which $G$ is $k$-connected.
Your example is 2-connected since removing any two vertices leaves a single vertex, which is a connected graph.
Here are some more examples: