Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

QUESTION 19 1 points Save This code is code is syntactically comect. After runni

ID: 3668328 • Letter: Q

Question

QUESTION 19 1 points Save This code is code is syntactically comect. After running is code, you now have a ine strategy for teeting a charact er to see if it is a capital letter lyou'd need an IF statement, of course) letterQ letter A &letter;'z False QUESTION 20 !points Save This code is syrtacticaly oorrect. Aher runrg this code, you now have a sne strategy tor testing to Me " a word is a proper nar·le.nt chanter-aplauod you now have a ine strategy for testing to see it a word is a proper name, e, first character is capitaized you'd need an IF statement, of course name = 'Quebec. name >- 'A' &G; name

Explanation / Answer

Q19. false
   it should be: letter>='A' && letter <='Z'
  
Q20. false
   it should be : name[0] >='A' && name[0]<='Z'   
               OR *name >='A' && *name<='Z'
              
Q12. where is code??

Q13. true