Answer:
subroutines
Explanation:
subroutines is used in access to locate and retrieve data
Answer:
#include <iostream>
using namespace std;
int main() {
int num, check=0;
for(int num = 1; num<=100;num++){
for(int i = 2; i <= num/2; i++) {
if(num % i == 0)
{
check=1;
break; } }
if (check==0) { cout <<num<<" "; }
check = 0;
}
return 0;
}
Explanation:
This line declares num as integer which represents digits 1 to 100.
A check variable is declared as integer and initialized to 0
<em> int num, m=0, check=0;
</em>
This for loop iterates from 1 to 100
for(int num = 1; num<=100;num++){
This iterates from 2 to half of current digit
for(int i = 2; i <= num/2; i++) {
This checks for possible divisors
if(num % i == 0)
{
If found, the check variable is updated to 1
check=1;
And the loop is terminated
break; } }
The following if statement prints the prime numbers
if (check==0) { cout <<num<<" "; }
check = 0;
}
Answer: Concrete
Explanation: Concrete RTN(register transfer notation) is a RTN that uses a certain set of registers and buses that are real for the completion of abstract RTN verdicts effect.They deal with the abstract RTN also for the registers transfer .They give the idea of the transferring of registers on the programmer's side and then defines the effect of it.
If you need to grasp the topic of a document quickly, you can use previewing. Correct answer: C
With previewing the document you will get an idea of what it is about without actually reading the main body of the document. Previewing includes reading the the title and author details, reading only the parts that ‘jump out’; that is: main headings and sub headings and examining any illustrations, graphs, tables..
Answer: a) 
(b) 
(c) 
(d) 
Explanation:
The formal description of the given sets are as follows :-
a) The set containing the numbers 5, 9, and 27.

(b) The set that contains all the natural numbers less than 2.

(c) The set containing the empty string.
We know that in formal description, the empty string is denoted with
.
Thus, the required set : 
(d) The set containing nothing at all.
