WGU C949 Data Structures and Algorithms Problem Solving Exam Questions and With Distinction level Marking scheme updated 2024/2025
0 view 0 purchase
Course
WGU C949 Data Structure and Algorithm
Institution
WGU C949 Data Structure And Algorithm
WGU C949 Data Structures and Algorithms Problem Solving Exam Questions and With Distinction level Marking scheme updated 2024/2025
What must be added to all input methods for them to work? - correct answer throws IO Exception
What does the charAt () method do? - correct answer Returns a chara...
WGU C949 Data Structures and Algorithms
Problem Solving Exam Questions and With
Distinction level Marking scheme updated
2024/2025
What must be added to all input methods for them to work? -
correct answer throws IO Exception
What does the charAt () method do? - correct answer Returns
a character at the specific position in the string object.
What does the parse.Int() method do? - correct answer
Converts the string type into an integer.
What is an array? - correct answer A container object that
holds multiple values of the same type.
What are the two types of data in java? - correct answer
Primitive types (int, char, boolean,long, double etc) and objects.
Why must you use the key word "new" when creating an array? -
correct answer Arrays in java are treated as objects.
What does the [] operator tell the compiler? - correct answer
That we are naming an array object.
,What are the steps to creating an array? - correct answer
MRCNL: Main(), Reference, Create an Array, Number of Items,
Loop.
long [] arr is; an example of: - correct answer Referencing an
array.
arr = new long [100];is an example of: - correct answer
Creating an array.
int nElems = 0; is an example of: - correct answer The
number of items in the array .
int x; is an example of: - correct answer A loop creator.
What does the searchKey variable do? - correct answer IT
holds the value we are looking for.
What are the three steps to delete an item in an array? -
correct answer 1.Search for the item
2. Find the item
3. Move the items with a higher index value down to fill the
"hole"
First two steps of object-oriented approach? - correct answer
1. Separate the data structure storage from the rest of the
program(now called the user).
, 2. Improve the communication between the storage structure
and the user.
Breaking up the program into classes does what? - correct
answer Makes it easier to design, understand, modify and
maintain the program.
What are the steps to setting up an array class with a
constructor? - correct answer RCCSGE: Reference the array,
Constructor, Create an Array, Set Value, Get Value, End Class.
private long[] a; is an example of: - correct answer
Referencing an array.
public LowArray(int size) is an example of what? Note that
LowArray is also the name of the class. - correct answer
Creating a Constructor.
{a = new long [size]; } is an example of what? - correct
answer Creating an array
public void setElement(int index, long value)
{a[index] = value;
is an example of what? - correct answer Set value
public long getElem(int index)
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller KieranKent55. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $11.49. You're not tied to anything after your purchase.