Bio Tech Batch 1 MCQ

Bio Tech Batch 1 MCQ

University

20 Qs

quiz-placeholder

Similar activities

C Coding Contest Round 1

C Coding Contest Round 1

University

25 Qs

Round 2

Round 2

University

15 Qs

Ujian Semester Pemprograman Dasar

Ujian Semester Pemprograman Dasar

University

20 Qs

Technical QUIZ 3

Technical QUIZ 3

University

20 Qs

Basics of 'C' Language_Assessment1

Basics of 'C' Language_Assessment1

University

15 Qs

Quiz_Round1

Quiz_Round1

University

15 Qs

OCS752 Introduction to C Programming

OCS752 Introduction to C Programming

University

25 Qs

Uces- Simulacro Parcial 1

Uces- Simulacro Parcial 1

University

20 Qs

Bio Tech Batch 1 MCQ

Bio Tech Batch 1 MCQ

Assessment

Quiz

Education

University

Medium

Created by

Thiyagu Thiyagu

Used 4+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the language that uses symbolic names to represent operations, registers and memory locations.

Assembly language

Machine language

High Level language

low Level language

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the suitable definition of the algorithm.

It is a flowchart

Step by step instructions used to solve a problem

It is a decision

It is a Pseudo code

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the format identifier „%i‟ , that is used for _____ data type.

int

char

float

double

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the correct way of writing comments in C language

/comments/

{comment}

comment (

/*comment*/

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Infer the Compilation output of the following code snippet.

#include<stdio.h>

void main()

{

int a=10;

int b=20;

printf(“%d,%d”,b,a)

}

10,20

20,10

Error

10,10

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

State the functionality of scanf().

To take logical decisions

Print a set of values

Input a set of values

Do mathematical manipulations

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the output of the following program.

#include <stdio.h>

int main()

{

int son = 18;

int father = 40;

int younger_age; younger_age = son < father ? son : father; printf("%d is the younger age", younger_age);

return 0;

}

18 is the younger age

40 is the younger age

09 is the younger age

20 is the younger age

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?