Answer:
string1 = "this is string 1"
string2 = " this is string 2"
print(string1 + string2)
Explanation:
the string1 variable is assigned with a string value(aka. str)
string2 is also a variable assigned with a slightly different string value
the 3rd line then prints string 1 and 2 to the console.
Answer: The following code is in c++
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float a,b,c;
cout<<"Enter height and base of triangle\n";
cin>>a>>b; //reading two sides from user
c=sqrt(pow(a,2)+pow(b,2)); //calculating hypotenuse
cout<<"Length of hypotenuse is "<<c; //printing third side of triangle
return 0;
}
OUTPUT :
Enter height and base of triangle
3
4
Length of hypotenuse is 5
Explanation:
In the above code, three variables a, b and c of int type are declared. After that, it is asked from user to enter the value of a and b. The user puts the value and then c is calculated with the help of Pythagoras theorem formulae which squares the values of two sides and then adds them to calculate hypotenuse of a right angled triangle and finally c is printed to console.
Answer:
Stick to concrete nouns
Explanation:
The best technique to improve the web search result is that search with the help of keywords. These keywords help in searching the required results from search engines.
The keywords are actually nouns. Noun is name of object, place or person. So by using nouns we can search out required results.
For example
If we want to search about some persons bibliography, we use his name in our search. His name is an example of noun.
Answer:
Check the network icon (or wireless connection settings) to see if you have Internet access. ...
Check for changes to proxy settings.
Check the network cables if your computer is wired to the router.
Reset your router.
Check your firewall or security software.
Hopefully this helps.