Answer:
The ouput of the given code is :
22
is "Tom's age.
Explanation:
Here in this code the variable user_name and user_age are initialized to "Tom" and 22 respectively as statement is given in the question i.e cout << user_age << " \nis " + user_name << "'s age.";.This line will print the user_age i.e 22 after that the control moves to the next line and print is "Tom's age.
Following are the code in c++
#include <iostream> // header file
#include <string>
using namespace std;
int main() // main function
{
string user_name="Tom";
int user_age= 22;
cout << user_age << " \nis " + user_name << "'s age.";
return 0;
}
Output:
22
is "Tom's age.
The two extensions in scratch are correctly matched to their accessibility goals Translate extension and Text to speech extension.
<h3>What are Scratch Extensions?</h3>
Scratch extensions are known to be used in an interface with external hardware and information outside of the Scratch website via new blocks.
Note that The two extensions in scratch are correctly matched to their accessibility goals Translate extension and Text to speech extension.
Learn more about scratch from
brainly.com/question/25720264
#SPJ1
Answer:
1. Declaration: the return type, the name of the function, and parameters (if any)
2. Definition: the body of the function (code to be executed)
Explanation:
Answer:
You can't call a function unless you've already defined it. Move the def createDirs(): block up to the top of your file, below the imports.
Explanation:
Some languages allow you to use functions before defining them. For example, javascript calls this "hoisting". But Python is not one of those languages.
Answer:
It's up to personal preference.
Explanation:
iPhone/Apple gives more compliments to security than Android.
Android has more friendly user GUI and dev tools.