Answer:
Software Engineering.
Explanation:
Software engineering :- It is the branch of engineering which mainly focuses on the development,design and maintenance of the software.
It also deals with the developing the tools,theories ,methodologies supporting software production.
It is one of the most popular branches of engineering nowadays and also software engineers are one of the highly paid employees in a company.
Answer:
def main():
n = int(input('Enter the value of the variable n:'))
k=2;
totalSum = 0
print('The list of the prime numbers are as follows:')
while k <= n:
totalSum = totalSum+is_prime(k)
k=k+1
print('Total sum of the prime numbers:',totalSum)
def is_prime(k):
primeNumber = 0
i=1
while i<=int(k):
if (k % i) == 0:
primeNumber = primeNumber + 1
i=i+1
if(primeNumber==2):
print(k)
return k;
else:
return 0;
main()
Explanation:
- Run the while loop until k is less than n.
- Determine if the variable k is prime then add it to the totalSum variable.
- Increment the value of k by 1.
- Create a function isPrime to check whether the number is prime or not by determining the factors of k which can be found using the modulus operator.
-
Call the main function at the end.