Tamil Nadu State Board ( Samacheer Kalvi ) Online Test based on Book Back Questions - 12th Standard Computer Applications - English Medium - PHP Function and Array

Samacheer Kalvi 12th Computer Applications - PHP Function and Array - Book Back Questions in English Medium


00:00:00
Answered
0
Skipped
0
Unseen
0
Correct : 0 Incorrect : 0
Question 1 Of 10

is a concept that stores more than one value of the same data type in a single array variable,


Question 2 Of 10

As compared to associative arrays vector arrays are much


Question 3 Of 10

Indices of arrays can be either strings or numbers and they are denoted as


Question 4 Of 10

For finding nonempty elements in array we use


Question 5 Of 10

Which of the following are correct ways of creating an array?


Question 6 Of 10

PHP arrays are also called as


Question 7 Of 10

………………….. arrays are a key-value pair data structure.


Question 8 Of 10

A block of the segment in a program that performs specific operation tasks is known as


Question 9 Of 10

PHP’s numerically indexed array begins with position …………….


Question 10 Of 10

What will be the output of the following PHP code?
<?php
$a=a rray (“A”,”Cat”,”Dog “,”A”,”Dog “);
$b=a rray C’A” “A” “Cat”,”A”,”Tiger”);
$c=array_combine($a,$b);
print__r(array_count_va!ues($c));
?>