На сколько ты знаешь C#

Quiz
•
Computers
•
University
•
Hard
Ylia Balashova
Used 11+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Что такое перегрузка методов?
Передача слишком больших данных в функцию
Передача слишком большого файла через return
Использование одного имени для разных методов
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Что покажет код ниже?
namespace ProjectOne {
class MainClass {
static int num = 0;
public static void Main (string[] args) {
testFunc(num); testFunc(num); }
public static void testFunc (int num) {
MainClass.num++;
Console.Write(MainClass.num); } } }
00
11
01
12
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Какие типы переменных существуют?
int, char, bool, string
int, char, bool, float, double
int, char, bool, float, double, uint, short
Ни один из них
Все перечисленные
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Какая функция корректно сравнивает две подстроки?
String.Check("hi", "hello");
String.Equal("hi", "hello");
String.Match("hi", "hello");
String.Compare("hi", "hello");
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Где верно происходит вывод данных в консоль?
Console.write("Hi");
сonsole.log("Hi");
print("Hi");
Console.WriteLine("Hi");
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
При каком условии результат будет равен значению true?
int a = 1, b = 5; bool some = false;
(some && a != 2) || b > 5
(b <= 5 || a == 3) && some
(b != 5 || a == 3) || (!some && a > 1)
some || a == 4 || b < 3
(b > 5 && a <= 3) || (!some || a < 1)
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Где правильно создана переменная?
x = 0;
$x = 10;
int num = "1";
float big_num = 23.2234;
char symbol = 'A';
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
Java Basics

Quiz
•
University
10 questions
Basic C Knowledge Exercise

Quiz
•
University
14 questions
Array output

Quiz
•
University
7 questions
Quiz on Java Operators

Quiz
•
University
12 questions
javaquizvivek

Quiz
•
University
15 questions
Array Java

Quiz
•
University
10 questions
Java Control Flow statements

Quiz
•
University
15 questions
Java Programming

Quiz
•
University
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade