Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
int main()
{
float marks;
cout<<"Enter your grade value :";
cin>>marks;
if(marks>=90)
cout<<"Your grade is 'A'";
else if(marks>=80&& marks<90)
cout<<"Your grade is 'B'";
else if(marks>=70&& marks <=80)
cout<<"Your grade is 'C'";
else if(marks>=60&& marks <70)
cout<<"Your grade is 'D'";
else
cout<<"Your grade is 'F'";
}
Answer:
def first_a(n):
lst1 =[x for x in range(1,n+1)if x%6==0 or x%11 ==0]
print(lst1)
Explanation:
Above is a function in python programming language. We have used list comprehension to check numbers that are multiples of 6 or 11 in a range.
When this function is called it will receive an argument (n) of type integer, a range will then be generated from 1 to n+1 since n is inclusive. The modulo operator is used to determine is a value is a multiple of 6 or 11, since their multiples will evaluate to 0
Answer:The Nine steps of the engineering design process
- <u>Identify the Problem</u>-Defining the problem
- Finding solutions through Brainstorming technique
- Conducting a background research/Survey
- Developing the solution-Creating an array of solutions
- Selecting the best solution
- Building a prototype
- Testing and redesigning
- Improve the design-Specifying the requirement
- Communicating the result
Answer:
If your on pc like me use ad blocker I do that but otherwise watch the add press ok after if it dosemt work tell me I’ll try and find you it and for ad blocker you also can have a jailbreak divice and to get and blocker go to chrome extension website search up pop up ad blocker
Explanation:
Answers
- OS(The Operating System) sends <em>interrupts to the processor</em> to stop whatever is being processing at that moment and computer architecture send <em>data bus</em>. This bus sends<u> data between the processor,the memory and the input/output unit.</u>
- The operating system is a low-level software that supports a <em>computer’s basic functions</em>, such as <u>scheduling tasks and controlling peripherals</u> while the computer architecture has the <em>address bus bar</em>. This bus carries <u>signals related to addresses between the processor and the memory.
</u>
- The interface between <em>a computer’s hardware and its software</em> is its Architecture while An operating system (OS) is<u> system software that manages computer hardware and software resources and provides common services for computer programs.</u>
Explanation:
In short explanation,the Computer Architecture specifically <em>deals with whatever that's going on in the hardware part of the computer system </em>while the Operating System is the computer program <em>which has been program to execute at some instances depending on the programming instructions embedded in it</em>. An example is the MS Office.