Will all of those work together with an Arduino UNO? Yes.
Since you are new to Arduino AND electronics in general, I would recommend against using those particular sensors right now. One of them is 5V …but 1-Wire protocol.
The other two have a voltage range of 1.8V - 3.6V. One is analog, the other I2C.
Arduino UNO uses 5V.
That's a bit of a mess.
Quick answer - There are many sensor boards which use I2C to connect to Arduino. This means they ALL connect to same 2 pins on Arduino and can all be used together. They often come with two or more of those functions combined, have on-board voltage regulators, and have libraries & tutorials available to make implementation easier.
Since this is for a school project and time is a factor, the results are likely more important than learning how to do more complicated things.
So, I would strongly suggest:
(a) Staying away from eBay dealers and unknown, super-cheap parts dealers with poor service history. If something doesn't 'work', you may not know if you connected or coded something incorrectly....or if it's just a damaged/mal-designed component.
Banggood order & delivery feedback
(b) Purchasing well-supported (tutorials, needed libraries, excellent customer response), open-source hardware solutions & breakouts from the company which designed and supports that product. This way, if you follow the tutorial perfectly and it doesn't work, you can directly ask the designers for help. If it still doesn't work, they can confirm that and send you a (usually free) replacement.
Example:
Here is BMP085 pressure sensor you linked to above -
Here is the same BMP085 on a board designed and sold by a reputable source.

Twice as many components and one more connection pin than the first one.
This one can run off of 5V (same as UNO), can communicate with 5V logic levels (as UNO uses), has great online support, tutorials, and a library which gives easy one-function access to converted pressure reading, temperature reading, and/or both.
Here are some other good alternatives -
Sparkfun Pressure & Temp sensor
And some really great Arduino tutorials to give you ideas.