answersLogoWhite

0


Best Answer

DBMSs are usually bundled with powerful programming language modules. why

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why are dbms bundled with powerful programming language modules?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is python not as in snake and what does it do?

Python is a programming language. On the python.org website, it is described as:Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. Python is often compared to Tcl, Perl, Ruby, Scheme or Java. Some of its key distinguishing features include:very clear, readable syntaxstrong introspection capabilitiesintuitive object orientationnatural expression of procedural codefull modularity, supporting hierarchical packagesexception-based error handlingvery high level dynamic data typesextensive standard libraries and third party modules for virtually every taskextensions and modules easily written in C, C++ (or Java for Jython, or .NET languages for IronPython)embeddable within applications as a scripting interfaceIf you're looking to start programming, it's a very friendly introductory language to start with.


How do you create modules in c language?

by using structure in c.........


What is modular programing mention any 2 charecteristic?

Modular programming is a design technique which separates a program into small, self-contained units or modules, each focusing upon a particular aspect of the program. Modular programming typically combines structured programming, object oriented programming and generic programming techniques.


Why use static variable in programming language?

For C programming, the use of a static variable has two uses: One reason is to hide the variable from other modules. The scope of the static variable is limited to the compilation unit that it is described in. The second use of a static variable is to keep the value of the variable intact through the entire program execution unit.


What is the Python programming language?

In the context of computer programming, Python is an open source programming language. I put some links that I found helpful when learning Python on my webpage: http://www.homeworkcat.com


Is SAP ABAP functional or techincal module?

Hi All, SAP ABAP and SAP HANA are modules for application development. And BI/BW is primarily used for business reporting. Technical consultants are SAP consultants who work on one or more technical modules. The SAP ABAP module is a sophisticated and dynamic system comprised of numerous sub-modules, each focusing on a distinct area of SAP components. Enrolling in an SAP ABAP Course can help you learn more about these sub-modules. For More Information, Contact at - +91-9711526942


What is core php?

Core PHP is the language without the addition of various modules and extensions, such as EXIF, GDI, MySQL, and so on. It is the basic language.


What is OOP language?

Before Object oriented programming the term which was used was “Structural Programming” where a programmer has to use the predefined data types, they cannot define their own data type. But when the term object oriented programming start in programming programmer become able to define its own data type according to their own use. Here a coder can define its own data types called classes and then create object from these classes. Coding in Object Oriented language Advantages of Object Oriented Programming One of the main advantages of OOP over procedural programming techniques is that they enable programmers to create modules that do not need to be changed when a new type of object is added. A programmer simply can create a new object that inherits from existing objects many of its features . This makes object-oriented programs easier for programmer to modify.


What are the advantages of php file system?

PHP is a scripting side language and has more key points than other development languages. The speed of PHP is fast relative to other languages because it uses many system resources. It is an open-source language that’s why it is maintained by a large group of PHP developers and the support community is more than other languages. It is easy to use because it follows the syntax of “C”. Those who familiar with C language can easily understand PHP. It has powerful library support you can easily find functional modules. It has built-in database functionality. These are some points that consider as core advantages of PHP.


How many subjects in olevel?

DOEACC O Level has the following subjects Internet Technology and Web Design Programming & Problem Solving through 'C' Language Elective: (One Module out of the following three modules to be chosen) Application of .NET Technology Introduction to Multimedia Introduction to ICT Resources


How has programming emerged since the invention of computers?

The spell check is one of most used computer programs or modules. It has made us not to do the spell check ourselves.


Can you explain at least four benefits of modular design and support your answer with a hypothetical real-world example?

Modular coding enforces logical boundaries between the separate components of a system and thus improves the maintainability of the system. Typically, a modular program consists of a primary module (such as an EXE file) and many auxiliary modules (such as DLL files). Auxiliary modules can often be shared amongst many primary modules, thus reducing memory consumption. A real-world example of modular coding would be a multi-language program, where the language resources are provided by separate auxiliary modules. In this way the user selects their chosen language and the appropriate module(s) for that language are loaded into memory.