I think it is true because you may be ‘inspired’ by a famous artist but if you’re always being inspired by others its not 100% yours / you being creative
        
                    
             
        
        
        
Well since it’s a chart based on a PivotTable prettyyyy sure it’s gonna be a PibltChart
        
             
        
        
        
Answer:
   B.  The remainder when dividing a whole number by 2
Explanation:
A binary digit can have the values 0 or 1. The remainder from division of an integer by 2 will be 0 or 1. Hence that remainder can be represented by a single binary digit.
__
That fact can be used to do conversion of a number to binary.
 
        
             
        
        
        
This is a tough question. I’m not sure if I’ll get it right but I’ll try.
Data structures used for file directories typically have a hierarchical tree structure, referred to as a directory structure. The tree has a root directory, and every file in that system has a unique path. 
The simplest method of implementing a directory is to use a linear list of file names with pointers to the data blocks. But another way that you can format a file directory is by using a hash table. With this method, the linear list stores the directory entries, but a hash data structure is also used. The hash table takes a value computed from the file name and return the pointer to the file name any linear list.
So I think it’s C. But I’m not 100% sure.
I hope that helps.