Answer:
Sites like Face.book are full of valuable data for people who use social engineering to steal your identity on social media. You should therefore avoid sharing information that's used to verify your identity,
Explanation:
Answer:
The designing process of the various android applications is basically done by the XML and then, it is replaced by the HTML in the upcoming years. The XML is used as designing the front end applications in the android.
Wire-framing is the basic process of designing the various type of android applications and its is also called as creating the blueprint in the screen of android application.
The various step of designing the android phone application are as follow:
- Firstly, define the actual reason of designing the app and then developed the app according to their actual requirement.
- We must make a background research about the app so that we can innovate something new application to make this application more efficient and reliable.
- Then, designing the app according the specific requirement and create the proper layout design. Then, build a proper prototype of the application.
Incomplete question. Here's a similar question found in the attachments.
<u>Answer:</u>
<u>General Motors Corp, Chrysler, Ford Motor Company, Toyota Motors sales USA Inc, Nissan North America Inc.</u>
<u>Explanation</u>:
By, using the MS Excel computer software, you would be able to compare the 2016 year-to-date sales through February 2017 year-to-date sales for each manufacturer.
Simply copy the data into the data cells of MS Excel, next use the =sum formula (which should have a minus sign; For example, =SUM (B5 - E5) would give you the difference between the 2016 sales and 2017 sales, only if sales for 2016 is found in column B row 5 and sales for 2017 in column E row 5).
Thus, the results obtained can further be evaluated to determine the manufacturers in the top five with increased sales.
Answer:
bool identicaltrees(Node* root1,Node* root2)//function of type boolean true if idenctical false if not.
{
if(root1==NULL&&root2==NULL)//both trees are null means identical.
return true;
if(roo1 && root2)
{
if(root1->data==root2->data)//condition for recursive call..
{
return (identicaltrees(root1->left,root2->right)&&identicaltrees(root1->right&&root2->right);
}
}
else
return false;
}
Explanation:
In this function it of type boolean returns true if both the trees are identical return false if not.First we are checking root node of both the trees if both are null then they are identical returning true.
If both root nodes are not null then checking their data.If data is same then recursively traversing on both trees and checking both trees.
else returning false.