![]() Главная страница Случайная страница Разделы сайта АвтомобилиАстрономияБиологияГеографияДом и садДругие языкиДругоеИнформатикаИсторияКультураЛитератураЛогикаМатематикаМедицинаМеталлургияМеханикаОбразованиеОхрана трудаПедагогикаПолитикаПравоПсихологияРелигияРиторикаСоциологияСпортСтроительствоТехнологияТуризмФизикаФилософияФинансыХимияЧерчениеЭкологияЭкономикаЭлектроника |
C. cout<<student.name
d. cout< < struct.student.name
15. What is the difference between classes and structures? a.we can have functions in classes b. they are similar C. structures have only public access specifier d. classes include characters; e. structures include protected access specifier
16. In classes, if we declare object without keywords like public, which type will it be of? A. private b. public c. protected d. it won't have access specifier e. friend
17. How could you call in main the function input in object school of some class? a. input() b. input c. school:: input() d. school:: input
18. class student {string name, surname} Aibar; What is underlined? A. object of class student b. member of class student c. member of object student d. parameter of class student
19. Which access specifier means that the member can be used only by the functions of this class? A. private b. public c. protected d. this specifier doesn't exist
20. Which is the right declaration of the object of structure student: a. struct Aibar b. struct student: Aibar C. student Aibar d. student.Aibar e. struct student=Aibar
21. There is one mistake in code, in which line? a.1 b.2 c.3 d.4 E.5 22. Which of the following correctly declares an array? A. int anarray[10]; B. int anarray; C. anarray{10}; D. array anarray[10];
23. What is the index number of the last element of an array with 29 elements? A. 29 B. 28 C. 0 D. Programmer-defined
24. Which of the following is a two-dimensional array? A. array anarray[20][20]; B. int anarray[20][20]; C. int array[20, 20]; D. char array[20];
25. Which of the following correctly accesses the seventh element stored in foo, an array with 100 elements? A. foo[6]; B. foo[7]; C. foo(7); D. foo;
26. Which of the following gives the memory address of the first element in array foo, an array with 100 elements? Забиваем Сайты В ТОП КУВАЛДОЙ - Уникальные возможности от SeoHammer
Каждая ссылка анализируется по трем пакетам оценки: SEO, Трафик и SMM.
SeoHammer делает продвижение сайта прозрачным и простым занятием.
Ссылки, вечные ссылки, статьи, упоминания, пресс-релизы - используйте по максимуму потенциал SeoHammer для продвижения вашего сайта.
Что умеет делать SeoHammer
— Продвижение в один клик, интеллектуальный подбор запросов, покупка самых лучших ссылок с высокой степенью качества у лучших бирж ссылок. — Регулярная проверка качества ссылок по более чем 100 показателям и ежедневный пересчет показателей качества проекта. — Все известные форматы ссылок: арендные ссылки, вечные ссылки, публикации (упоминания, мнения, отзывы, статьи, пресс-релизы). — SeoHammer покажет, где рост или падение, а также запросы, на которые нужно обратить внимание. SeoHammer еще предоставляет технологию Буст, она ускоряет продвижение в десятки раз, а первые результаты появляются уже в течение первых 7 дней. Зарегистрироваться и Начать продвижение A. foo[0]; B. foo; C. & foo; D. foo[1];
27. When does the code block following while(x< 100) execute?
|