Ultimate Computers and Technology Study Guide - Questions & Answers
which of these are correctly formatted python lists? check all that applyOptions-list1=(race, cars, trucks, bikes)-list2=["computer science', 'math', 'psychology']-list3=('summer', 'winter', 'spring')-list5[52, 24, 71, 56]
int value[10] = {1, -7, 95, 123, 80, 67, -30, 17, 152, 121} ;Given the declaration above, write a for loop that will add all the elements in an int variable called total. C code