Search Results

Searching for: cci

Individual Exercises

0 / 10

Complete the function getArraySize() so that it returns the size of the array passed in as an argument into the function. You cannot use...

0 / 10

Complete the function getElementAt() so that it returns the element nth in the array numbers. You may assume that the array has at least...

0 / 10

Write a function untilSpace(s) that returns a substring of s starting at the beginning and extending until a space is found. The space is...

0 / 10

Given an array of integers, return the largest value in the array. Assume the array has only posivitive numbers. If the array is empty,...

0 / 10

Given an array of integers, return the smallest value in the array. Assume the array has only posivitive numbers. If the array is empty,...

0 / 10

Write a function first10(s) that returns the first 10 characters of s. If s is longer than 10 characters, just truncate it. If s is...

0 / 10

Complete the class MyClass below by adding a print statement to the run() method. It should print "Hello " followed by the content of the...

0 / 10

What value is stored in myInt after casting happens during the assignment in the second line of code.

double myDouble = 9.55; int myInt =...
0 / 10

What value is stored in myDouble after casting happens during the assignment in the second line of code?

int myInt = 9; double myDouble =...
0 / 100

Write a function fullWords(s) that returns a string no longer than 20 characters. If the string s is longer than 20 characters, just...

0 / 10

Write a function toTitleCase(s) that returns the s converted to Title Case. Title case has each word in the s with its first letter in...