TCS Digital Array Quiz- 1

Question 1

Time: 00:00:00
An array is also known as ___________

Subscripted variable

Subscripted variable

Collective array

Collective array

Ordinary variable

Ordinary variable

Similar Quantities variable

Similar Quantities variable

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 2

Time: 00:00:00
Till the array elements are not given any specific value, they are supposed to contain all ____________

Zero

Zero

Garbage value

Garbage value

One

One

Combination of zero and one.

Combination of zero and one.

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 3

Time: 00:00:00
If array is initialized where it is declared, then mentioning __________ of array is optional.

Data type

Data type

Dimension

Dimension

name

name

Data type and Dimension

Data type and Dimension

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 4

Time: 00:00:00
What happen if we assign a value to an array element whose subscript exceeds the size of array.

The program will give error

The program will give error

No output

No output

program will crash

program will crash

none of these

none of these

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 5

Time: 00:00:00
What will be output of the following program int main() {    int b[4]={5,1,3,2,4};    int k,l,m;     k=++b[1];     l=b[1]++;    m=b[k++];  printf(“%d, %d, %d”,k,l,m); return 0; }

2, 3, 20

2, 3, 20

3, 2, 32

3, 2, 32

1, 2, 5

1, 2, 5

2, 3, 15

2, 3, 15

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 6

Time: 00:00:00
What will be output of the following program where c=65474 and int=2 bytes. int main() {  int c[3][4]={2,3,1,6,4,1,6,2,2,7,1,10};        printf(“%u, %u\n”, c+1, &c+1);        return 0; }

65482, 65498

65482, 65498

65476, 65476

65476, 65476

65476, 65498

65476, 65498

No output

No output

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 7

Time: 00:00:00
What will be output of the following program int main() {    int a[5],i=0;        while(i<5)         a[i]=++i;    for(i=0;i<5;i++)     printf(“%d,”,a[i]); }

garbage value,1,2,3,4

garbage value,1,2,3,4

1,2,3,4,5

1,2,3,4,5

Error

Error

Program crash

Program crash

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 8

Time: 00:00:00
What will be output of the following program int main() {    float a[]={12.4, 2.3, 4.5, 6.7};    printf(“%d, %d”, sizeof(a), sizeof(a[0])); return 0; }

16 bytes, 4 bytes

16 bytes, 4 bytes

4 bytes, 4 bytes

4 bytes, 4 bytes

8 bytes, 4 bytes

8 bytes, 4 bytes

None of these

None of these

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 9

Time: 00:00:00
Which one of this is equivalent to

int fun(int arr[])

int fun(arr)

int fun(arr)

int fun(int arr[2])

int fun(int arr[2])

int fun(int s[])

int fun(int s[])

None of these

None of these

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

Question 10

Time: 00:00:00
In 2 Dimensional Array, it is necessary to mention  _______ dimension.

second

second

first

first

both

both

none of these

none of these

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Start

["0","40","60","80","100"]
["Need more practice!","Keep trying!","Not bad!","Good work!","Perfect!"]

Personalized Analytics only Availble for Logged in users

Analytics below shows your performance in various Mocks on PrepInsta

Your average Analytics for this Quiz

Rank

-

Percentile

0%

Completed

0/10

Accuracy

0%

Get Prepinsta Prime

Get all 200+ courses offered by Prepinsta

Never Miss an OffCampus Update

Get OffCampus Updates on Social Media from PrepInsta

Follow us on our Media Handles, we post out OffCampus drives on our Instagram, Telegram, Discord, Whatsdapp etc.

Get Hiring Updates
Amazon,Google,Delottie & 30+companies are hiring ! Get hiring Updates right in your inbox from PrepInsta

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others.

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others.

Get PrepInsta Prime Subscription

Get access to all the courses that PrepInsta offers, check the out below -

Companies

TCS, Cognizant, Delloite, Infosys, Wipro, CoCubes, KPMG, Amazone, ZS Associates, Accenture, Congnizant & other 50+ companies

Programming

Data Structures, Top 500 Codes, C, C++, Java Python & other 10+ subjects

Skills

Full Stack Web Development, Data Science, Machine Learning, AWS Cloud, & other 10+ skills and 20+ projects

Comments