What is the name of the code that is used to store characters?

What will be an ideal response?


ASCII (OR: EBCDIC)

Computer Science & Information Technology

You might also like to view...

Which of the following is the version of func that is called?

``` class B { public: // other members void func(); // other members }; void B::func() { /* body */} class D: public B { public: // other members void func(); // other members }; void D::func() { /* body */} D dObj; ``` Make the following call using dObj as calling object: ``` dObj.func(); ``` a) B::func() b) D::func() c) Neither d) Both e) This is illegal. The base class func() is inherited in the derived class. For this reason, it is illegal to have a function defined in a base class and in a derived class having the same signature.

Computer Science & Information Technology

Each XML document is based on a(n) ____ set.

A. indexed B. binary C. unary D. character

Computer Science & Information Technology

Data shaping is an Excel export function.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

When a copy of the receiving report arrives in the purchasing department, it is used to

A. adjust perpetual inventory records B. record the physical transfer of inventory from receiving to the warehouse C. analyze the receiving department's process D. recognize the purchase order as closed

Computer Science & Information Technology