What do you mean by binding of data and functions?

1 Answer

Answer :

Encapsulation.

Related questions

Description : The friend functions are used in situations where A) We want to exchange data between classes B) We want to have access to unrelated classes C) Dynamic binding is required D) We want to create versatile overloaded operators.

Last Answer : A) We want to exchange data between classes

Description : In IT, means that the data available in the database is both accurate and consistent. (1) Data Security (2) Data Availability (3) Data Binding (4) Data Integrity

Last Answer : Data Integrity

Description : _____ cells have antibodies on their surface that perform receptor functions by binding to antigen (epitope). a. T b. B c. NK d. A-C are correct

Last Answer : b. B

Description : Which of the following differentiates between overloaded functions and overridden functions ? (A) Overloading is a dynamic or runtime binding and overridden is a static or compile time binding. ... function overloading, while redefining a function in a friend class is called function overriding.

Last Answer : (B) Overloading is a static or compile time binding and overriding is dynamic or runtime binding.

Description : Calculate the binding energy of the lithium atom `(._(3)^(7)Li)` from the following data: `{:("mass of proton",= 1.00759,am u,),("mass of neutron",= 1

Last Answer : Calculate the binding energy of the lithium atom `(._(3)^(7)Li)` from the following data: `{:("mass of ... "mass of lithium atom",= 7.01818,am u,):}`

Description : What is Data Binding?

Last Answer : Ans.The matrix that attempts to capture the module-level concept of coupling is data binding. Data binding are a measure that captures the data interaction across portions of a software system. In ... words, data binding try to specify how strongly coupled different modules in a software system are.

Description : Describe following terms: Inheritance, data abstraction, data encapsulation, dynamic binding.

Last Answer : Inheritance: 1. Inheritance is the process by which objects of one class acquire the properties of objects of another class. 2. It supports the concept of hierarchical classification. It also provides the ... with a given procedure call is not known until the time of the call at run-time.

Description : Define the following terms: (i) Data abstraction (ii) Class (iii) Dynamic binding (iv) Polymorphism

Last Answer : (i) Data abstraction: Abstraction refers to the act of representing essential features without including the background details or explanation. Data abstraction is the process of defining a data type, often ... more than one form at different instances depending on the type or number of arguments. 

Description : Which of the following concepts means adding new concepts to a program as it runs? (A) Data hiding (B) Dynamic loading (C) Dynamic typing (D) Dynamic binding

Last Answer : (B) Dynamic loading

Description : The terminal device that functions as a cash register, computer terminal, and OCR reader is the: A) Data collection terminal B) OCR register terminal C) Video Display terminal D) POS terminal

Last Answer : Answer : D

Description : Which of the following is correct about Star Topology: a) Data on a star network passes through the hub, swithc or concentrator before continuing to its destination. b) The hub, switch or concentrator manages and ... connecting all of the systems to a central node. d) All of Above e) None of These

Last Answer : d) All of Above

Description : What is the control unit's function in the CPU 1) To transfer data to primary storage . 2) TO store program instructions. 3) To perform logic functions. 4) To decode program instructions.

Last Answer : 2) choose Insert, Header and Footer, click Slide tab, select the desired options, click Apply to All

Description : Which one among the following is not included in the basic functions of operating system? 1) Job Control 2) Job Scheduling 3) Memory Management 4) Data Management

Last Answer : 1) Job Control

Description : Write the name of layers that perform the following functions in OSI : I. Data Encryption II. Error Correction III. File Transfer IV. Data Encoding

Last Answer : 1. Data Encryption-Presentation Layer 2. Error Correction-Data link layer and Transport layer 3. File Transfer-Application layer 4. Data Encoding-Presentation layer

Description : Making use of the tables of atomic masses, find: (a) the mean binding energy per one nucleon in `O^(16)` nucleus (b) The binding energy of neutron and

Last Answer : Making use of the tables of atomic masses, find: (a) the mean binding energy per one nucleon in `O^( ... and an alpha-particle in a `B^(11)` nuclues.

Description : 08. What does the term bioavailability mean? a) Plasma protein binding degree of substance b) Permeability through the brain-blood barrier c) Fraction of an uncharged drug reaching the systemic ... following any route administration d) Amount of a substance in urine relative to the initial doze

Last Answer : C

Description : What do you mean by pure virtual functions?

Last Answer : A pure virtual member function is a member function that the base class forces derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero. class Shape { public: virtual void draw() = 0; };