🎴 Flashcard Mode

Java Programming Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Syntax of System.arraycopy method??

AnswerClick to flip back
A
System.arraycopy(fromarray,frominden,toarray,toindex,count);
💡 Explanation:

System.arraycopy copies array elements from source to destination. The correct syntax requires: source array, starting position in source, destination array, starting position in destination, and number of elements to copy. Option A correctly shows this parameter order.

Change Mode