Test 1

A visually appealing illustration of a computer screen displaying C# code and quiz questions, with vibrant colors and a technology theme.

C# Programming Quiz

Test your knowledge of C# programming concepts with our engaging quiz! This quiz consists of 10 questions that cover various subjects, including data types, control structures, and enumerations.

Features of the quiz:

  • Multiple choice and checkbox questions
  • Questions designed to challenge your programming skills
  • Instant feedback on your answers
10 Questions2 MinutesCreated by CodingWizard42
Data je enumeracija:
 
public enum GodisnjeDoba {Jesen, Leto, Prolece, Zima };
 
Izlaz na konzoli za kod:
 
int godisnjeDoba1 = GodisnjeDoba.Leto;
Console.WriteLine(godisnjedoba1);
 
je:
Console error
Compiler error
1
2
Izlaz na konzoli za dati kod:
 
int a = 2;
int b = 14;
string odgovor = a != b && a == b ? "jabuka" : "kruska";
Console.WriteLine(odgovor);
 
je:
True
False
Jabuka
Kruska
Izlaz na konzoli za dati kod
 
int a = 22;
int s = 2;
 
int d = --a + a + s++ - a + ++a;
Console.WriteLine(d);
46
45
44
43
Izlaz na konzoli za dati kod
 
bool q = true;
bool w = false;
 
if ((w && q) || !(q && w)) {
Console.WriteLine("Ispeci pa reci");
}
else {
Console.WriteLine("Reci pa ispeci");
}
 
je:
Ispeci pa reci
Reci pa ispeci
Compiler error
Console error
Koji su iskazi tacni?
Funkcija moze imati povratnu vrednost.
Iako je definisana povratna vrednost iz funkcije, ne moramo da koristimo kljucnu rec "return".
Iako je definisan parametar funkcije, on se ne mora iskoristiti u telu funkcije.
Telo funkcije se moze sastojati od jedne linije koda I tada nisu potrebne viticaste zagrade ("{" I "}") da definisu telo funkcije.
Koji su iskazi tacni?
Break zavrsava trenutni tok if naredbe.
Continue zavrsava trenutni tok iteracije for petlje.
Break zavrsava while petlju iako ona ispunjava uslov za narednu iteraciju.
Break zavrsava trenutni tok funkcije.
Koji iskazi su tacni?
Koristimo kljucnu rec "void" kada ne zelimo da funkcija ima povratnu vrednost.
Postoji vise glavnih funkcija u programu od kojih sve krece.
Funkcija se poziva dodavanjem otvorene I zatvorene zagrade posle njenog naziva, ukoliko nema parametre.
Broj argumenata prilikom pozivanja funkcije mora biti isti sa brojem parametara te funkcije.
Koji iskazi su tacni?
Klasa File samo omogucava manipulaciju nad fajlovima
Klasa FileInfo omogucava manipulaciju nad sadrzajem fajlova
Sve od navedenih
Nista od prethodno navedenog
Izlaz na konzoli za dati kod: 
 
List<string> lista = new List<string>();
lista.Add("1");
lista.Add("47");
lista.Add("3");
lista.Add("23");
lista.Add("54");
lista.Add("7");
 
lista.Reverse();
 
lista.RemoveAt(3);
 
Stack<string> newStack = new Stack<string>(lista);
newStack.Push("1"); newStack.Push("6"); newStack.Push("19");
 
while (newStack.Count > 0)
{
    Console.Write(newStack.Pop() + " ");
}
 
je:
19 6 1 7 54 23 47 1
1 47 3 54 7 1 6 7
19 6 1 1 47 23 54 7
1 47 23 54 7 1 6 19
Koji iskaz je tacan za enumeratore?
Enumeratori se definisu pomocu kljucne reci "enum".
Enumeratori se mogu definisati u okviru metode.
Tip enumeracije moze biti samo celobrojna vrednost.
Capacity enumeratora ne zavisi od tipa promenljive enumeratora I uvek je 4.
{"name":"Test 1", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Test your knowledge of C# programming concepts with our engaging quiz! This quiz consists of 10 questions that cover various subjects, including data types, control structures, and enumerations.Features of the quiz:Multiple choice and checkbox questionsQuestions designed to challenge your programming skillsInstant feedback on your answers","img":"https:/images/course1.png"}
Powered by: Quiz Maker