1.Database management system - is: 2. In Access, the basic object is:
3. In Access, the line is called:
4. In Access, a column called:
5. A structure of a table is:
6. In Access, there is a data type:
7. The process of creating a table in Access by choosing from existing fields: (The template tables)
8. In Access, in the template table fields delete button of the selected fields: (<.)
9. In Access, you can enter to create a table in Design view:
10. In Access field names are allowed to:
11. In Access to the field names must not contain:
12. In Access, the key field is used to:
13. In Access mode allows you to change the layout of the table, query, report:
14. Sorting is:
15. The logical OR operand is:
16. The logical operand AND means:
17. The logical operand NOT means:
18. In what menu item in Access there is a Filter: (Entries)
19. In Access, the number of types of links:
20. To link the tables use the command:
21. In Access possible to establish a connection between the tables:
22. In Access the proportion (1 - 1) corresponds to the relationship:
23. In Access the proportion (∞ - 1) corresponds to the relationship:
24. In Access sampling means is:
25. In Access to include the desired field in the request form should be:
26. In Access Expression Builder is used to:
27. In Access field names in calculated fields should be taken:
28. In Access function COUNT:
29. The Access operation of calculating the mean value:
30. In Access, the main difference between AutoForm regime in the column of the table mode:
{данная программа переводит любое сочетание символов ascii в систему счисления заданную пользователем.}
//pascal abc.net v3.0 сборка 1111
var
a,i,b,r,n,j,bug: integer;
s,se,slo,slof: string;
procedure preob(var a,b,n: integer; var se: string);
begin
repeat
b: =a mod n;
a: =a div n;
str(b,se);
s+=se;
until (a< =n-1);
end;
beginreadln(slo);
readln(n);
for j: =1 to length(slo) do
begin;
a: =ord(slo[j]);
preob(a,b,n,se);
str(a,se);
s+=se;
for i: =1 to length(s) div 2 do
begin;
se: =s[i];
s[i]: =s[length(s)-i+1];
s[length(s)-i+1]: =se[1];
end;
write(s,'-');
slof: =slof+s;
delete(s,1,length(s));
end;
end.
пример ввода:
работа на завтра.
2
пример вывода:
11000100-11101110-11101100-11100000-11111000-11101101-11111111-11111111-100000-11110000-11100000-11100001-11101110-11110010-11100000-100000-11101101-11100000-100000-11100111-11100000-11100010-11110010-11110000-11100000-101110-
{таким образом, фразу " работа на завтра." можно закодировать как "11000100-11101110-11101100-11100000-11111000-11101101-11111111-11111111-100000-11110000-11100000-11100001-11101110-11110010-11100000-100000-11101101-11100000-100000-11100111-11100000-11100010-11110010-11110000-11100000-101110-".}