Answer:
positioning statement
Explanation:
Based on the information provided within the question it can be said that this is an example of a positioning statement made by Evernote. A companies positioning statement refers to a statement given that explains how the companies product or service meets the specific needs that the consumers have, as well as how it does it better than the competition. Which is what Evernote is doing by stating that they can capture moments and ideas from any device on hand.
Answer:
Generate a picture based on an eyewitness description
Explanation:
Facial recognition can only recognise faces it cannot generate new faces.
First you locate the file you want to move. Then you can click and drag the file to the desired location.
hope this helped
Answer:
Solution part of the question:
if(userTickets>5) //compare the value of userTickets with 5.
awardPoints = 10; // assign the 10 value to the award point
else
awardPoints=userTickets;// assign the userticket value to the awardpoint.
Output:
For the input 4 the output is 4.
For the input 5 the output is 5.
For the input 6 the output is 10.
For the input 7 the output is 10.
Explanation:
All the other part of the program is given on the question so here only if-else statement is given on the answer part. Which is pasted at the place of "/* Your solution goes here */" and the user can get the right answer.
- In the "if" statement the value of "userTickets" variable is get compared by 5 and if it is greater than 5 than variable "awardpoint" assigns the '10' value.
- Otherwise, with the help of "else" statement "userticket" variables value (which is the input value for the program) assign to the "awardpoint" variable.