Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

7. Which keyword is used to transfer the control from the function back to the main program? switch goto goback return 8. Which of the

7. Which keyword is used to transfer the control from the function back to the main program?

  1. switch
  2. goto
  3. goback
  4. return

8. Which of the following statements are correct about an array? Select all that apply

  1. The array int num[26]; can store 26 elements.
  2. The expression num[1] designates the very first element in the array.
  3. It is necessary to initialize the array at the time of declaration.
  4. The declaration num[SIZE] is allowed if SIZE is a macro.

9. A program includes the following declarations:

struct Date

{

int day, month, year;

};

Date bDate;

What code would you use to set the month of bDate?

  1. bDate!month = 3;
  2. bDate.month = 4;
  3. bDate(1) = 4;
  4. bDate->month = 6;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Explain the difference between ADHD and conduct disorder.

Answered: 1 week ago