100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

CSE 240 UPDATED Exam Questions and CORRECT Answers

Rating
-
Sold
-
Pages
13
Grade
A+
Uploaded on
20-08-2025
Written in
2025/2026

CSE 240 UPDATED Exam Questions and CORRECT Answers We use "Pass by Pointer" when: - CORRECT ANSWER - Function wants to modify the value, the value is expensive to copy and NULL is valid We use "Pass by Constant Pointer" when: - CORRECT ANSWER - Function does not want to modify the value, the value is expensive to copy and NULL is valid We use "Pass by Constant Reference" when: - CORRECT ANSWER - Function does not want to modify the value, the value is expensive to copy and NULL is not valid

Show more Read less
Institution
CSE 240
Course
CSE 240









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
CSE 240
Course
CSE 240

Document information

Uploaded on
August 20, 2025
Number of pages
13
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

CSE 240 UPDATED Exam Questions and
CORRECT Answers
We use "Pass by Pointer" when: - CORRECT ANSWER - Function wants to modify the
value, the value is expensive to copy and NULL is valid


We use "Pass by Constant Pointer" when: - CORRECT ANSWER - Function does not want to
modify the value, the value is expensive to copy and NULL is valid


We use "Pass by Constant Reference" when: - CORRECT ANSWER - Function does not
want to modify the value, the value is expensive to copy and NULL is not valid


We use "Pass by Reference" when: - CORRECT ANSWER - Function wants to modify the
value, the value is expensive to copy and NULL is not valid


Given the declaration:
char a[] = "Hello";
char *p = a, *q;

what operations are valid syntactically? Select all that apply. - CORRECT ANSWER - *q =
*(&a[0]);
q = &(*p);


Given the following code
char a[2][3] = { { 'c', 'a', 't'}, { 'd', 'o', 'g'} };
int i, j;
for (i = 0; i<2 ; i++)
{for (j = 0; j<3; j++)
printf("%c", a[i][j]);}

, What will happen? - CORRECT ANSWER - It prints: catdog


Given the following definition and declarations:
#define size1 10
const int size2 = 20;
char a1[size1];
char a2[size2];

which line of code can cause a compilation error? - CORRECT ANSWER - char a2[size2];


Given the following snippet of code, answer the following two questions based on the code:
typedef enum {Sun, Mon, Tue, Wed, Thu, Fri, Sat} days;
days x = Mon, y = Sat;
while (x != y) { x++; }
y++;
printf("x = %d, y = %d", x, y);


1. What value will be printed for variable x?

2. What value will be printed for variable y? - CORRECT ANSWER - 1. 6
2. 7


When is padding required for a structure type variable? - CORRECT ANSWER - When the
structure contains a word-type variable, such as integer, float, and pointer, and the total number
of bytes is not a multiple of four.


The size (number of bytes) of a structure-type variable can be changed by the following factors.
Select all that apply. - CORRECT ANSWER - -changing the orders of the members in the
structure.
-changing the computer from a 32-bit to a 64-bit processor.
-adding a member into the structure.

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
MGRADES Stanford University
View profile
Follow You need to be logged in order to follow users or courses
Sold
1067
Member since
1 year
Number of followers
102
Documents
68976
Last sold
15 hours ago
MGRADES (Stanford Top Brains)

Welcome to MGRADES Exams, practices and Study materials Just think of me as the plug you will refer to your friends Me and my team will always make sure you get the best value from the exams markets. I offer the best study and exam materials for a wide range of courses and units. Make your study sessions more efficient and effective. Dive in and discover all you need to excel in your academic journey!

3.8

168 reviews

5
73
4
30
3
43
2
8
1
14

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions