Do you even code bro?

Do you even code bro?

11th Grade

8 Qs

quiz-placeholder

Similar activities

Turunan Grafik

Turunan Grafik

11th Grade

11 Qs

Week 24 Tuesday Homework

Week 24 Tuesday Homework

5th Grade - University

13 Qs

Refleksi Materi HTML

Refleksi Materi HTML

11th Grade

6 Qs

انشاء نموذج بلغة HTML

انشاء نموذج بلغة HTML

9th - 12th Grade

5 Qs

Финансовая система

Финансовая система

11th Grade

10 Qs

soal matematika kelas 7

soal matematika kelas 7

11th Grade

3 Qs

Html

Html

11th Grade

8 Qs

Operasi Bilangan Bulat

Operasi Bilangan Bulat

9th - 12th Grade

10 Qs

Do you even code bro?

Do you even code bro?

Assessment

Quiz

Others

11th Grade

Medium

Created by

Tarek Badawi

Used 5+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct file format for a C source file

.css

.c

.py

.cpp

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to write a character on the screen?

write(a);

write(1, "a", 1)

write(1, "a", 1);

write("a", 1);

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to increment an integer by 1?

i + 1;

i++;

1 + i;

i = 1;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What variable type stores a single character?

int

void

char *

char

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How many times will this loop iterate?

4

5

-1

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What library is the "write()" function part of?

<stdio.h>

<unistd.h>

<stdlib.h>

<string.h>

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword returns a value from the function?

give

send

return

break

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an integer pointer declaration?

pointer x;

int *x;

int pointer x;

int pointer *x;