Answer:
The correct answer is C. World Coordinate System
Explanation:
The World Coordinate System has to do with that coordinate system which is fixed in the activities of the CADing. There is a default system in which we can refer to them as soon as we want to manipulate the objects and add new elements.
How to create a personal hot spot on an iPhone?
Go to Settings | Cellular | Personal Hotspot.
Tap the slider next to Allow Others to Join. ...
Your Wi-Fi Password will be shown right underneath the Allow Others to Join option. ...
Now, on another device, such as a laptop, go to the Wi-Fi section and search for nearby networks.
Answer:
nothing much what class r u in
Answer:
24.72 kwh
Explanation:
Electric energy=potential energy=mgz where m is mass, g is acceleration due to gravity and z is the elevation.
Substituting the given values while taking g as 9.81 and dividing by 3600 to convert to per hour we obtain
PE=(108*9.81*84)/3600=24.72 kWh
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}