String in C Programming

String in C Programming

University

26 Qs

quiz-placeholder

Similar activities

thi1

thi1

University

21 Qs

 1 бет параллель

1 бет параллель

University

21 Qs

RA 3 Prueba de Análisis y Diseño

RA 3 Prueba de Análisis y Diseño

4th Grade - University

21 Qs

SQL - sys vars & filters

SQL - sys vars & filters

University

22 Qs

Introducción a las TIC´s

Introducción a las TIC´s

University

21 Qs

AI/ML MASTERMIND

AI/ML MASTERMIND

University

21 Qs

Lesson 1 - Basic Concepts

Lesson 1 - Basic Concepts

University

21 Qs

cit157 finals q2

cit157 finals q2

University

21 Qs

String in C Programming

String in C Programming

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Mohd. Khan

Used 112+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

26 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

str1="6/4";

printf("str1");

6/4

str1

None

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is right way to Initialize array?

int num[6] = { 2, 4, 12, 5, 45, 5 };

int n{} = { 2, 4, 12, 5, 45, 5 };

int n{6} = { 2, 4, 12 };

int n(6) = { 2, 4, 12, 5, 45, 5 };

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

An array elements are always stored in ________ memory locations.

sequential

Random

Sequential and Random

None of the above

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

what will be printed after Execution of the following program

void main()

{

int a[5]={11,13,56,20,5};

printf("%d",a[2]);

}

garbage value

13

56

20

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

if two strings are identical then function strcmp() returns

0

-1

true

none of these

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

what will be the output of the program?

#include <stdio.h>

#include<string .h>

void main()

{

char str1[20]="Hello",str2="world";

strcat(str1,str2);

puts(str1);

return 0;

}

Hello

world

Helloworld

none of the above

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

8.Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements?

arr[6]

arr[7]

arr{6}

arr{7}

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?