Motorola Mobility Interview Question
110 Interview Reviews |
Back to all Motorola Mobility Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Senior Software Engineer at Motorola Mobility:
Design file system using OO
See more for this Motorola Mobility Senior Software Engineer Interview
Helpful Question?
Yes |
No
Inappropriate?
0 of 0 people found this helpful
by Romain:
class FileNode {
String name;
}
class File extends FileNode {
long size;
}
class Folder extends FileNode {
Collection<FileNode> children;
}