Sponsor Area

NCERT Solutions for Class 12 Help.html Computer Science With Python Chapter 10 Structure Query Language

Structure Query Language Here is the CBSE Help.html Chapter 10 for Class 12 students. Summary and detailed explanation of the lesson, including the definitions of difficult words. All of the exercises and questions and answers from the lesson's back end have been completed. NCERT Solutions for Class 12 Help.html Structure Query Language Chapter 10 NCERT Solutions for Class 12 Help.html Structure Query Language Chapter 10 The following is a summary in Hindi and English for the academic year 2025-26. You can save these solutions to your computer or use the Class 12 Help.html.

Question 1
CBSEENCO12011543

Write the definition of a method OddSum(NUMBERS) to add those values in the list of NUMBERS, which are odd. 

Solution
def OddSum(NUMBERS):
	n=len(NUMBERS)
	s=0
	for i in range(n):
		if (i%2!=0):
			s=s+NUMBERS[i]
	print(s)
Question 4
CBSEENCO12011647

Sponsor Area