Mark As Completed Discussion

Are you sure you're getting this? Fill in the missing part by typing it in.

Let's say you are a senior engineer building an AI to decide when to invest in stocks. You can use an if-else statement to decide based on the stock price:

`int stockPriceTesla = 650;
int stockPriceApple = 150;

if (stockPriceTesla ___ stockPriceApple) { cout<<"Invest in Apple!"; } else { cout<<"Invest in Tesla!"; }`.

Fill in the blank with the correct operator.

Write the missing line below.