File Processing

Quiz
•
Computers
•
University
•
Medium

PANDU WICAKSONO
Used 1+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Manakah fungsi fopen yang benar, jika file yang ingin dibaca berada dalam satu folder?
fopen("test2.txt", "r");
fopen("C:\\Users\\user\\Documents\\Latihan\\test2.txt", "r");
fopen("C:\Users\user\Documents\Latihan\test2.txt", "r");
fopen("test2.txt", "w");
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
isi file test2: Pandu
fp = fopen("test2.txt", "r");
char ch = fgetc(fp);
printf("%c", ch);
apa output dari potongan kode diatas
Pandu
P
p
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
isi file test2: Pandu
FILE *fp = NULL;
fp = fopen("C:\\Users\\user\\Documents\\Development\\Latihan\\test2.txt", "r");
Lanjutkan kode diatas agar dapat membaca isi dari file test2
while (!feof(fp))
{
char ch = fgetc(fp);
printf("%c", ch);
}
while (feof(fp))
{
char ch = fgetc(fp);
printf("%c", ch);
}
while (!feof(fp))
{
char ch = fgets(fp);
printf("%c", ch);
}
while (!feof(fp))
{
char ch = fgetc(fp);
printf("%s", ch);
}
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
bagaimana membuat Buffer Area?
file *nama_variable;
File *nama_variable;
FILE *nama_variable;
*nama_variable
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
mode yang digunakan untuk membaca (read) dan menulis (write) file binary adalah
"rb" dan "wb"
"r" dan "w"
"r+" dan "w+"
"a" dan "b"
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
file header mana yang dapat digunakan untuk File Processing
<stdio.h>
<stdlib.h>
<string.h>
<stdarg.h>
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
fungsi yang digunakan untuk membaca per karakter adalah
fgets()
fgetc()
fgetcc()
fstring()
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
fungsi untuk membaca file dengan panjang tertentu adalah
fgetc()
fgetch()
fgets()
gets()
Similar Resources on Wayground
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Would you rather...

Quiz
•
KG - University
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
10 questions
The Constitution, the Articles, and Federalism Crash Course US History

Interactive video
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
20 questions
Levels of Measurements

Quiz
•
11th Grade - University
16 questions
Water Modeling Activity

Lesson
•
11th Grade - University
10 questions
ACT English prep

Quiz
•
9th Grade - University