[solved]-Using Random Access Files Java Programmer Permitted Create Files Read Written Random Locat Q39031322
When using random access files in Java, the programmer ispermitted to create files which can be read from and written torandom locations. Assume that a file called “integers.dat” containsthe following values: 25 8 700 284 63 12 50 Fill in blanks: You arerequired to write the following Java code statements: (a) create anew stream called, blueray, which allows the program to read fromand write to the file, “integers.dat.” _____________________ (b)Write a statement which will move the file pointer to the number,700. _____________________ (c) Write a statement to display thecontents currently pointed to. _____________________ (d) Write astatement which will move the file pointer from its currentposition, directly to the end of the file. _____________________(e) Append the value 999999 to the file. _____________________
Expert Answer
Answer to When using random access files in Java, the programmer is permitted to create files which can be read from and written t… . . .
OR

