Answer:
Whats python? i might be able to help
Explanation:
Answer:
what do you want
Explanation:
there are 160 people in all if thatś what you want
The answer is a
digital dashboard.
In its simplest form, a digital dashboard or a business dashboard
provides a graphical representation of KPIs, measures and metrics used by a
company to monitor performance of departments, individuals, teams or the entire company. They track the progress of business objectives and make effective
data driven decisions.
Hi there!
For #1 the answer is the site may not be trustworthy, and you risk identity theft. If you are not sure a site legit then don't trust it. Some sites can easy to tell if they can be trusted by the amount of detail put into the site itself, but others are not so easy to tell. In general, if a site does not have https:// in the web address, but instead has just http:// (no "s" in it) then don't trust it.
For #2 the answer is to use<span> a secure browser. If the browser you are using is insecure then the info you put into a site can be compromised and stolen by the browser itself because it reads all info put on it.
For #3 the answer is i</span><span>t has a secure payment page. Again going back to the https:// vs. the http:// if the page that you pay on is not secured then your credit card info can be stolen when put in because the site without a secured page will allow others with access to see your info.
-Your friend in tech, </span>ASIAX Frequent Answerer
Corrected or Complet Question
The ____ operator executes one of two expressions based on the results of a conditional expression.
a. .
b. ( )
c. ,
d. ?:
Answer:
(d) ? :
Explanation:
The ternary operator (? :) is an operator that executes one out of two expressions based on the results of a conditional expression. It is a faster or shorthand way of writing an if ... else statement. The operator checks the conditional expression and depending on whether it is true or false, one of its two statements will be executed. For example:
String correct = (4 < 5) ? "yes" : "no" ;
In the code above,
i. the conditional statement is (4 < 5) and this will be tested for to return true or false.
ii. the first expression (the one after the ?) is "yes" which will be executed if the conditional statement returns true.
iii. and the second expression (the one after the : ) is "no" which will be executed if the conditional statement returns false.
Therefore, since the conditional expression returns true for 4 < 5, the first expression will be executed. i.e "yes". This means that the String variable <em>correct </em> will have a value of "yes".