C Programming Fundamentals Assessment

C Programming Fundamentals Assessment

University

20 Qs

quiz-placeholder

Similar activities

Debugging and Data Structures Quiz

Debugging and Data Structures Quiz

University

25 Qs

C++ Resistor Calculator Concepts

C++ Resistor Calculator Concepts

University

20 Qs

MCA Quiz 1

MCA Quiz 1

University

22 Qs

CUDA Programming Quiz

CUDA Programming Quiz

University

20 Qs

SESSIONAL EXAM(Programmin Lab)

SESSIONAL EXAM(Programmin Lab)

University

15 Qs

Java basic

Java basic

University

21 Qs

Microcontrollers Quiz

Microcontrollers Quiz

University

20 Qs

ANN Part 4 - Part 6 Quiz

ANN Part 4 - Part 6 Quiz

University

20 Qs

C Programming Fundamentals Assessment

C Programming Fundamentals Assessment

Assessment

Quiz

Engineering

University

Hard

Created by

Poojith Kokku

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the basic data types in C?

int, float, double, char, void

boolean

array

string

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in C?

var variableName;

float variableName;

int variableName;

string variableName;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the 'if' statement?

To declare a function in the code.

To create a loop for repeated execution.

To control the flow of execution based on a condition.

To define a variable in a program.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the use of 'for' loops in C.

'for' loops in C do not require a condition to terminate.

'for' loops in C can only iterate over arrays.

'for' loops in C are used for repeated execution of code with a defined number of iterations, structured

'for' loops in C are used for error handling in programs.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is recursion in programming?

Recursion is a method where a function solves a problem by calling itself.

Recursion is a process of optimizing code by removing loops.

Recursion is a method where a function runs in parallel with another function.

Recursion is a technique where a function is executed only once.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a function in C?

return_type { function_name(parameter_type) }

return_type function_name(parameter_type parameter_name) { // function body }

function_name(parameter_type) return_type { // body }

function_name { return_type parameter_type; }

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a pointer in C?

A pointer is a type of function in C.

A pointer is a variable that stores a string in C.

A pointer is a variable that holds the address of another variable in C.

A pointer is a special kind of loop in C.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?