new Foo<?> can be equivalently replaced with new Foo<SomeRandomTypeIMadeUp> where SomeRandomTypeIMadeUp is any type that satisfies the bound of that type parameter. The simplest choice is to simply to pick the upper bound of that type parameter, e.g. if it is class Foo<T extends X>, then new Foo<X> would suffice.
You may ask, why is it that I can just choose any arbitrary type parameter, even one that may have absolutely no connection to the rest of my program? Isn't that unsafe? The answer is no, because that's precisely what Foo<?> means -- the type parameter can be anything, and you cannot depend on what it is. This demonstrates the sheer absurdity of what you're asking to do. Something created with new Foo<?> would be pretty much completely useless, because you cannot do anything with it that depends on the type of the type parameter.
Types with wildcards are generally useful. For example, you can have an argument of type List<?> and you can pass any type of List to it, and it simply gets stuff out of the list. But in that case, you are not creating the list. The function that created the list and passed it to you probably had some non-wildcard type parameter. In the scope of that function, you can still put things into the list and do useful things with it. If a function were to create a List<?>; this would be pretty useless -- you cannot put any element except null into it.
This is why you are not allowed to do new Foo<?>: It is utterly useless; you are probably using Generics wrong if you want to use it. And in the extremely rare case you actually want it, there is a ready substitute, new Foo<AnyTypeThatSatisfiesTheBounds>.
Foo<Bar<?>> is very different. Bar<?> is a specific type. Foo<Bar<?>> does not mean you can assign Foo<Bar<Something>> to it; rather, that is illegal; the type parameters of Foo must match if they are not wildcards. Also unlike with a wildcard, with a List<Bar<?>>, you can put objects into it and take objects out of it.