Divide the following C + + program into appropriate lexemes.
float limitedSquare(x) float x {
/* returns x-squared, but never more than 100 */
return ( x<= -10.0 ||x >=10.0) ? 100 : x*x;
}
Which lexemes should get associated lexical values?
What should those values be?