Answer:
to show the records in descending order used desk keyword
The
answer is (A): with contextual tabs for major groupings of editing features and
ribbons with specific groupings to organize commands.
Contextual
tab or tabs are hidden menu that appears when objects like images or texts are
selected in programs like MS Word 2013. They typically contain one or more
commands applicable to a selected text or object only. They are there in the
Ribbon when you need them and disappear when you do not need them anymore. They
are basically used for major groupings of editing features.
A
ribbon on the other hand help users understand how commands are used directly
and efficiently. It organizes a program’s features into a series of tabs.
Answer:
While the developed world benefits from the modern explosion of technology, countries like Ethiopia continue to rely on their forefathers' methods for important daily tasks such as farming, cooling, and providing clean water. These activities are often physically challenging, time and energy intensive, and are often carried out by female family members in many such societies. Furthermore, they can damage the local ecology and climate, such as deforestation and soil erosion caused by the use of trees for firewood. Western technologies are often too complicated, expensive, unacceptable, and difficult to maintain in developing societies, so they are of little or no use in these situations.
Answer:
See Explaination
Explanation:
#include <iostream>
#include <string.h>
using namespace std;
char *mixem(char *s1, char *s2);
int main() {
cout << mixem("abc", "123") << endl;
cout << mixem("def", "456") << endl;
return 0;
}
char *mixem(char *s1, char *s2) {
char *result = new char[1 + strlen(s1) + strlen(s2)];
char *p1 = s1;
char *p2 = s2;
char *p = result;
while (*p1 || *p2) {
if (*p1) {
*p = *p1;
p1++;
p++;
}
if (*p2) {
*p = *p2;
p2++;
p++;
}
}
*p = '\0';
return result;
}