Answer:
self-modeling
Explanation:
Robots, which are man-made machines which mimics the actions of man like walking, talking, rendering assistance are part of the future plans to make the society easier. It was mans' attempt to improve the society but still happens to be work in progress.
For the robots to be able to carryout its function, there is need for it to be self modelling in the sense of initiating and executing the commands which was already programmed into it. <em>For example, telling it to walk will be initiated by him as a command, after processing the command, it will execute it without any other information.</em>
Answer:
const MAXNR=150;
let candidates = {};
for(let i=2; i<=MAXNR; i++) {
candidates[i] = true;
}
for(let p=2; p <= MAXNR; p++) {
if (candidates[p]) {
process.stdout.write(`${p} `);
// Now flag all multiples of p as false
i=2;
while(p*i <= MAXNR) {
candidates[p*i] = false;
i++;
}
}
}
Answer:
Registry
Explanation:
Windows Registry is used to store the configuration and setting information for hardware and software program which is critical for Windows operation. The registries are structured in hierarchical database model.
Basically, hierarchical database model is akin to a tree format which consist of the parent nodes and their child nodes. For example, a node named as HKEY_LOCAL_MACHINE can possess child nodes HARDWARE, SOFTWARE AND SYSTEM.
The node in the tree is also termed as a key.
Answer:
True
Explanation:
The Port of New Orleans is an embarkation port for cruise passengers. It is also Louisiana’s only international container port. Port NOLA generates $100 million in revenue annually through its four lines of business – cargo, rail, cruise, and industrial real estate
Answer:
a. Authors
Answer: ATR
b. Publishers
Answer: PLR
c. Customers
Answer: CTR
Explanation:
The abbreviation or short name for these terms should be easy to understand and recognize and should describe the terms adequately. These short names should describe the amount of information which may be derived about the above terms.
Some abbreviation rules that are applied for the giving short names to above mentioned terms/entities are as following:
- First letter of the term should not be skipped. In all the three terms A is the first letter of Authors, P is of Publishers and C is the first letter of Customers so these should not be skipped while creating short names for these terms.
- Eliminating vowels: All the non leading vowels are eliminated from right to left.
In Authors, u and o are eliminated.
In Publishers u, i , e are eliminated.
In Customers, u, o and e are eliminated.
- There is no need to use hyphens, dash, slash or other special characters when giving short names to these terms.
- The short names are not repeatable for another term. This means only one abbreviation for each term.
- Eliminate one of any double consonants.
- Put first letter of the term in first location and last in last location of the term. Just as in Author, A and R are placed at 1st and last position of the short name hence ATR.