Hi There!
Binary Coding is not for games! If you want to learn coding go on a website called codeacademy!
Hope This Helps!
Answer:
A floppy disk drive (FDD) is a small disk drive used in computers for data transfer, storage and backup of small amounts of data, as well as installation of programs and driver updates. A floppy disk drive accesses data recorded on small, removable diskettes known as floppy disks.
Answer:
The challenge of cost control
The challenge of competence
The challenge of reduced system delivery times.
Explanation:The Challenge of Cost control is a major challenge affecting the software engineering in the 21st century,the cost of Microchips and other hardware are constantly rising.
The challenge of competence is another major challenge affecting software engineering in the 21st century,as most software engineers lack the required competence to handle some of the issues facing softwares.
The challenge of reduced system delivery times is a major challenge likely to affect software engineering in the 21st century,as people required the software to be available in the shortest possible time.
Answer:
Here is the C++ program:
#include <iostream> //to use input output functions
using namespace std; //to access objects like cin cout
int main(){// start of main function
int temp; //declare a variable to store value for temperature
cout<<"Enter temperature: "; //prompts user to enter temperature
cin>>temp; //reads value of temp from user
if(temp>80) //if temperature is greater than 80 degrees
{ cout<<"Go swimming"; } //displays Go swimming
else if(temp<=80&&temp>=60) //if temperature is between 60 and 80
{ cout<<"Go biking"; } //displays Go biking
else //if temperature is less than 60 degress
cout<<"Go for a walk"; } //displays Go for a walk
Explanation:
The program prompts the user to enter value of temperature. It stores the value of temperature in temp variable. Then the first if condition checks if the value of temp is greater than 80. If it evaluates to true, then the print statement inside the body of this if statement executes which is "Go swimming". If this condition evaluates to false then program moves to the else if condition which checks if the value of temp is between 60 and 80. There is a logical operator AND (&&) is used between both expressions to check temperature between two ranges. If it evaluates to true, then the print statement inside the body of this if statement executes which is "Go biking". If this condition evaluates to false then program moves to the else part which has a print statement that displays "Go for a walk" on output screen. The screenshot of program along with its output is attached.