Click here Hindi Medium Assignment Question Paper: MCS-213 Software Engineering Question:-1(a) Which SDLC paradigm will be selected for developing an Online Date Sheet Generation System (ODSGS) for a University. You may also suggest a SDLC paradigm that is proposed by you and non-existent as on date. Justify your answer. Answer: ????️ (a) Selection and Justification
Question Paper: MCS-212 Discrete Mathematics Question:-1 Prove by mathematical induction that ∑ i = 1 n 1 i ( i + 1 ) = n n + 1 ∑ i = 1 n 1 i ( i + 1 ) = n n + 1 sum_(i=1)^(n)(1)/(i(i+1))=(n)/(n+1)sum_{i=1}^{n} frac{1}{i(i+1)} = frac{n}{n+1}∑i=1n1i(i+1)=nn+1. Answer: ???? Step 1: Base
Question:-1(a) Design and develop an efficient algorithm to find the list of prime numbers in the range 501 to 2000. What is the complexity of this algorithm? Answer: ???? Sieve of Eratosthenes Algorithm for Primes (501 to 2000) ???? Step 1: Algorithm Design Create a boolean list is_prime[0..2000], initialize all entries as True. Mark is_prime[0]