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

Please fully answer all questions 1. Write some pseudo code to raise a number to

ID: 3849347 • Letter: P

Question

Please fully answer all questions
1. Write some pseudo code to raise a number to a power.
2. Which of these does not affect different types of software as a whole? a) Heterogeneity b) Flexibility c) Business and social change d) Security
3. The fundamental notions of software engineering does not account for? a) Software processes b) Software Security c) Software reuse d) Software Validation
4. What sort would you use if you required tight max time bounds and wanted highly regular performance?

Please fully answer all questions
1. Write some pseudo code to raise a number to a power.
2. Which of these does not affect different types of software as a whole? a) Heterogeneity b) Flexibility c) Business and social change d) Security
3. The fundamental notions of software engineering does not account for? a) Software processes b) Software Security c) Software reuse d) Software Validation
4. What sort would you use if you required tight max time bounds and wanted highly regular performance?

Please fully answer all questions
1. Write some pseudo code to raise a number to a power.
2. Which of these does not affect different types of software as a whole? a) Heterogeneity b) Flexibility c) Business and social change d) Security
3. The fundamental notions of software engineering does not account for? a) Software processes b) Software Security c) Software reuse d) Software Validation
4. What sort would you use if you required tight max time bounds and wanted highly regular performance?

Explanation / Answer

1)Answer:

pseudo code:

int raise(num, power){
if(power==0) return 1;
if(power==1) return num;
return(raise(num, power-1)*num);
}

2)Answer: b) Flexibility

Explanation:

Option d & c are a part of Software Engineering as a subject,hence option a covers them both.

3)Answer:d) Software Validation

Explanation:

Explanation:Software validation is an activity for software process and not the fundamental for engineering.