To see the other types of publications on this topic, follow the link: Pl/1 (Programming Language).

Journal articles on the topic 'Pl/1 (Programming Language)'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the top 50 journal articles for your research on the topic 'Pl/1 (Programming Language).'

Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.

You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.

Browse journal articles on a wide variety of disciplines and organise your bibliography correctly.

1

BOZANTAN, ANDREI, and VASILE BERINDE. "Applications of the PL homotopy algorithm for the computation of fixed points to unconstrained optimization problems." Creative Mathematics and Informatics 22, no. 1 (2013): 41–46. http://dx.doi.org/10.37193/cmi.2013.01.03.

Full text
Abstract:
This paper describes the main aspects of the ”piecewise-linear homotopy method” for fixed point approximation proposed by Eaves and Saigal [Eaves, C. B. and Saigal, R., Homotopies for computation of fixed points on unbounded regions, Mathematical Programming, 3 (1972), No. 1, 225–237]. The implementation of the method is developed using the modern programming language C# and then is used for solving some unconstrained optimization problems. The PL homotopy algorithm appears to be more reliable than the classical Newton method in the case of the problem of finding a local minima for Schwefel’s function and other optimization problems.
APA, Harvard, Vancouver, ISO, and other styles
2

BOZANTAN, ANDREI, and VASILE BERINDE. "A numerical study on the robustness and efficiency of the PL homotopy algorithm for solving unconstrained optimization problems." Creative Mathematics and Informatics 24, no. 2 (2015): 113–23. http://dx.doi.org/10.37193/cmi.2015.02.03.

Full text
Abstract:
Our aim in this paper is to illustrate the relevance of the fixed point piecewise-linear homotopy algorithm for solving unconstrained optimization problems. The numerical tests are performed by using an implementation of the piecewise-linear homotopy algorithm in the modern programming language C#, as described previously in [Bozantan, A., An implementation of the piecewise-linear homotopy algorithm for the computation of fixed points, Creat. Math. Inform., 19 (2010), No. 2, 140–148] and [Bozantan, A. and Berinde, V., Applications of the PL homotopy algorithm for the computation of fixed points to unconstrained optimization problems, Creat. Math. Inform., 22 (2013), No. 1, 41–46]. As shown by the numerical experiments done on a set of classic test functions in optimization theory, the PL homotopy algorithm appears to be more reliable than the classical Newton’s method and some other important methods for finding local or global minima.
APA, Harvard, Vancouver, ISO, and other styles
3

Holt, Tom G., Claude Dufresne, Jerrold M. Liesch, and Gary K. Mallow. "The Design and Development of an Integrated Natural Products Screening Database." Journal of Biomolecular Screening 5, no. 6 (December 2000): 421–33. http://dx.doi.org/10.1177/108705710000500605.

Full text
Abstract:
We designed and developed NEXUS—a new natural products screening database and related suite of software applications-to utilize the spectacular increases in assay capacity of the modern high throughput screening (HTS) environment. NEXUS not only supports seamless integration with separate HTS systems, but supports user-customized integration with external laboratory automation, particularly sample preparation systems. Designed and developed based on a detailed process model for natural products drug discovery, NEXUS comprises two integrated parts: (1) a single schema of Oracle tables and callable procedures and functions, and (2) software "front-ends" to the database developed using Microsoft Excel and Oracle Discovery/2000. Many of the back-end processing functions were written in Programming Language/Structured Query Language (PL/SQL) to provide an Application Programmer's Interface, which allows end users to create custom applications with little input from information technology professionals.
APA, Harvard, Vancouver, ISO, and other styles
4

Fauri Fauzi, Muhammad Ashraf, Daeng Ahmad Zuhri Zuhud, and Hafiz Husin. "The Importance of Programming Paradigms to Manufacturing Engineering Graduates: A Case Study from International Islamic University Malaysia Graduates." Applied Mechanics and Materials 465-466 (December 2013): 387–94. http://dx.doi.org/10.4028/www.scientific.net/amm.465-466.387.

Full text
Abstract:
Digital computers that automate manufacturing process are an important aspect for any manufacturing engineers in the modern world. Selection of the programming paradigm (PP), as well as the programming language (PL) that supports it, is crucial to ensure the correct ideas are being used to automate the solution of the problem. In current Malaysian Higher institution practices, various PPs and PLs courses are offered to current undergraduate manufacturing majors. An online survey was deployed to experienced manufacturing engineers from various manufacturing specializations in the industry. Graduates from one of Malaysias public universities, International Islamic University Malaysia (IIUM) have been chosen for this particular study. From the survey, it has been found that almost 80% of the participants agreed that PPs are important for manufacturing graduates. It was found out that 90% of the participants were from intermediate (scale of 3) until poor (scale of 1) to express their ability to explain PPs if asked. Only about 10% are able to explain on PPs (scale of 4 and 5). The study concluded that majority of the manufacturing graduates from IIUM agreed that PP is an important subject to be taught in university. However, it was found the majority of the manufacturing graduates lack the knowledge and understanding of PPs and general PLs.
APA, Harvard, Vancouver, ISO, and other styles
5

Florence, Spencer P., Bruke Fetscher, Matthew Flatt, William H. Temps, Tina Kiguradze, Dennis P. West, Charlotte Niznik, Paul R. Yarnold, Robert Bruce Findler, and Steven M. Belknap. "POP-PL: a patient-oriented prescription programming language." ACM SIGPLAN Notices 51, no. 3 (May 11, 2016): 131–40. http://dx.doi.org/10.1145/2936314.2814221.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Dzhidzhoyev, Vladislav Muratovich, Ruben Arturovich Buchatskiy, Michael Vyacheslavovich Pantilimonov, and Alexander Nikolaevich Tomilin. "Dynamic Compilation of User-Defined Functions in PL/pgSQL Language." Proceedings of the Institute for System Programming of the RAS 32, no. 5 (2020): 67–80. http://dx.doi.org/10.15514/ispras-2020-32(5)-5.

Full text
Abstract:
Many modern RDBMS provide procedural extensions for SQL programming language, which allow users to perform server-side complex computations. Use of such extensions improves modularity and code reuse, simplifies programming of application logic, and helps developers to avoid network overhead and enhance performance. Interpretation is mostly used to execute SQL queries and procedural extensions code, resulting in significant computational overhead because of indirect function calls and performing of generic checks. Moreover, most RDBMS use different engines for SQL queries execution and procedural extensions code execution, and it is necessary to perform additional computations to switch between different engines. Thus, interpretation of SQL queries combined with interpretation of procedural extensions code may drastically degrade performance of RDBMS. One solution is to use a dynamic compilation technique. In this paper, we describe the technique of dynamic compilation of PL/pgSQL procedural language for the PostgreSQL database system using LLVM compiler infrastructure. Dynamic compiler of PL/pgSQL procedural language is developed as part of PostgreSQL queries dynamic compiler. Proposed technique helps to get rid of computational overhead caused by interpretation usage. Synthetic performance tests show that the developed solution speeds up SQL queries execution by several times.
APA, Harvard, Vancouver, ISO, and other styles
7

Klensin, J. C. "The programming language standards scene, ten years on Paper 7: PL/I." Computer Standards & Interfaces 16, no. 5-6 (September 1994): 469–75. http://dx.doi.org/10.1016/0920-5489(94)90027-2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Isaeva, G. N., N. N. Teodorovich, and Y. Y. Sidorov. "Tendencies of development of languages of programming of the high level." Informacionno-technologicheskij vestnik 14, no. 4 (December 30, 2017): 117–25. http://dx.doi.org/10.21499/2409-1650-2017-4-117-125.

Full text
Abstract:
The main directions of the development of modern high-level programming languages (HL PL) and their evolutionary development are considered in the article. The statistics are presented for the HL PL, which are key in the framework of various programming paradigms, based on the data of modern electronic resources. A tendency is shown to obliterate the boundaries between the strict classification of the HL PL, as belonging to different computational models underlying the development of the language. It is shown that the main reason for the popularity of scripting languages and languages of reactive programming is related to the scale of solved economic problems, the mass coverage of all spheres of the economy by network structures, and also the desire of developers to have a simple, understandable and universal software development tool.
APA, Harvard, Vancouver, ISO, and other styles
9

Vasić, Marko, David Soloveichik, and Sarfraz Khurshid. "CRN++: Molecular programming language." Natural Computing 19, no. 2 (January 3, 2020): 391–407. http://dx.doi.org/10.1007/s11047-019-09775-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Lazebna, Nataliia. "ENGLISH-LANGUAGE BASIS OF PYTHON PROGRAMMING LANGUAGE." Research Bulletin Series Philological Sciences 1, no. 193 (April 2021): 371–76. http://dx.doi.org/10.36550/2522-4077-2021-1-193-371-376.

Full text
Abstract:
The dynamic nature of the Python programming language, the accumulation of a certain linguosemiotic basis indicates the similarity of this language with the English language, which is the international one and mediates human communication in both real and virtual worlds. In this study, the English language is positioned as the linguistic basis of Python language of programming, which is widely used in industry, research, natural language processing, textual information retrieval, textual data processing, texts corpora, and more. English language, its lexical features, text representation and interaction with logical and functional basis in the context of Python programming language are considered further in this research. Thus, the unity of verbal units and symbols in the modern English-language digital discourse indicates both the order and variability of the constituents therein. The functionality of linguosemiotic elements produces a network of relationships, where each of these integrated elements can produce from a word or symbol a holistic set of units, which are extrapolated in the English-language digital discourse and mediates human communication with a machine. An overview of the basic properties of Python language, such as values, types, expressions, and operations are in focus of the study. Though users understand the responses of Python interpreter, there is a need to follow certain instructions and codes. To facilitate work with this programming language and prescribed English-language commands, it is necessary to involve linguists to cooperate with programmers to invent a certain logical and reasonable principle of Python commands operation.
APA, Harvard, Vancouver, ISO, and other styles
11

Dershowitz, Nachum. "Synthetic programming." Artificial Intelligence 25, no. 3 (March 1985): 323–73. http://dx.doi.org/10.1016/0004-3702(85)90076-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
12

SokoŁowski, Stefan. "Programming Language Theory and Its Implementation." Science of Computer Programming 13, no. 1 (December 1989): 119–22. http://dx.doi.org/10.1016/0167-6423(89)90019-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
13

Dahl, Veronica. "Natural language processing and logic programming." Journal of Logic Programming 19-20 (May 1994): 681–714. http://dx.doi.org/10.1016/0743-1066(94)90036-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
14

Maliavko, Aleksandr. "The El functional-imperative programming language." Science Bulletin of the Novosibirsk State Technical University, no. 1 (March 20, 2018): 117–36. http://dx.doi.org/10.17212/1814-1196-2018-1-117-136.

Full text
APA, Harvard, Vancouver, ISO, and other styles
15

Ballesteros, Francisco, Enrique Soriano-Salvador, and Gorka Guardiola Muzquiz. "Picky: A New Introductory Programming Language." Journal of Computational Science Education 6, no. 1 (July 2015): 16–24. http://dx.doi.org/10.22369/issn.2153-4136/6/1/2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
16

Dai, Hongming, Chen Chen, Yunjing Li, and Yanghao Yuan. "GCNGAN: Translating Natural Language to Programming Language based on GAN." Journal of Physics: Conference Series 1873, no. 1 (April 1, 2021): 012070. http://dx.doi.org/10.1088/1742-6596/1873/1/012070.

Full text
APA, Harvard, Vancouver, ISO, and other styles
17

Sulema, Ye S., and V. Yu Peschanskii. "TIMEWISE DATA PROCESSING WITH PROGRAMMING LANGUAGE ASAMPL." Scientific notes of Taurida National V.I. Vernadsky University. Series: Technical Sciences 1, no. 1 (2020): 132–37. http://dx.doi.org/10.32838/2663-5941/2020.1-1/24.

Full text
APA, Harvard, Vancouver, ISO, and other styles
18

Hendrix, Cassandra L., Tricia Z. King, Justin Wise, and Juliet Haarbauer-Krupa. "Early Brain Injury and Adaptive Functioning in Middle Childhood: The Mediating Role of Pragmatic Language." Journal of the International Neuropsychological Society 26, no. 9 (April 27, 2020): 835–50. http://dx.doi.org/10.1017/s1355617720000399.

Full text
Abstract:
AbstractObjective:Traumatic brain injuries (TBIs) often adversely affect adaptive functioning (AF). However, the cognitive mechanisms by which AF is disrupted are not well understood in young children who sustain TBI. This study examined pragmatic language (PL) and executive functioning (EF) as potential mechanisms for AF disruption in children with early, predominantly mild-complicated, TBI.Method:The sample consisted of 76 children between the ages of 6 and 10 years old who sustained a TBI (n = 36) or orthopedic injury (OI; n = 40) before 6 years of age and at least 1 year prior to testing (M = 4.86 years, SD = 1.59). Children’s performance on a PL and an expressive vocabulary task (which served as a control task), and parent report of child’s EF and AF were examined at two time points 1 year apart (i.e., at age 8 and at age 9 years).Results:Injury type (TBI vs. OI) significantly predicted child’s social and conceptual, but not practical, AF. Results indicated that PL, and not expressive vocabulary or EF at time 1, mediated the relationship between injury type and both social and conceptual AF at time 2.Conclusions:A TBI during early childhood appears to subtly, but uniquely, disrupt complex language skills (i.e., PL), which in turn may disrupt subsequent social and conceptual AF in middle childhood. Additional longitudinal research that examines different aspects of PL and adaptive outcomes into adolescence is warranted.
APA, Harvard, Vancouver, ISO, and other styles
19

Tang, Nguyen Van. "On a method combining the data language and the programming language." Journal of Computer Science and Cybernetics 1, no. 4 (August 6, 2015): 7–9. http://dx.doi.org/10.15625/1813-9663/1/4/6698.

Full text
Abstract:
A programming language and the database language will be combined one to another in such a way, that an application source program, which a mixture of statements of the host and database languages instead, can be now separated into two source modules, the one on the host language and the other on the data base. By the host standard compiled into object modules. The LINKEP EDITOR of the operating system links those modules into a load module that corresponds to the original mixed program.
APA, Harvard, Vancouver, ISO, and other styles
20

Lincoln, Nicholas K., and Sandor M. Veres. "Natural Language Programming of Complex Robotic BDI Agents." Journal of Intelligent & Robotic Systems 71, no. 2 (September 8, 2012): 211–30. http://dx.doi.org/10.1007/s10846-012-9779-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
21

Reiser, Renata Hax Sander, Antônio Carlos da Rocha Costa, and Graçaliz Pereira Dimuro. "A Programming Language for the Interval Geometric Machine." Electronic Notes in Theoretical Computer Science 84 (September 2003): 154–65. http://dx.doi.org/10.1016/s1571-0661(04)80852-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
22

Keßler, Christoph W., and Jesper Larsson Träff. "Language and library support for practical PRAM programming." Parallel Computing 25, no. 2 (February 1999): 105–35. http://dx.doi.org/10.1016/s0167-8191(98)00092-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
23

Ryabov, Nikita, Olga Ivancova, Vladimir Korenkov, and Sergey Ulyanov. "Quantum programming. Pt.1: Development tools analysis." System Analysis in Science and Education, no. 3 (2020) (September 30, 2020): 53–64. http://dx.doi.org/10.37005/2071-9612-2020-3-53-64.

Full text
Abstract:
This article is the first part in a series of articles about quantum programming. The article discusses the tools of developing quantum programs Quantum Developer Kit with the quantum programming language Q # and the Qiskit framework. Superposition, entanglement, and teleportation are implemented using both development tools. The purpose of the work is to select the most suitable tool for the further implementation of solutions to various problems using quantum computing.
APA, Harvard, Vancouver, ISO, and other styles
24

Globerman, Kinneret. "VP110 Building Capacity In Health Technology Assessment Through Plain Language." International Journal of Technology Assessment in Health Care 33, S1 (2017): 200–201. http://dx.doi.org/10.1017/s0266462317003695.

Full text
Abstract:
INTRODUCTION:Health Technology Assessments (HTAs) and policy papers are generally written in academic style using industry jargon — pharmaceutical, medical, or scientific terminology — with a generous use of abbreviations. Transforming technical or biomedical data into easily understandable text is a necessity and a challenge for all of us if our goal is to facilitate HTA collaboration beyond borders and integrate HTA into healthcare practice. Many countries have legislated for plain language (PL), and organizations globally are beginning to recognize how it helps in the uptake of information, whether geared to healthcare professionals and all those interested in HTA, or the lay public.METHODS:A preliminary, informal online search for legislative and supporting guidance on PL was conducted, and a query sent out to forty-eight International Network of Agencies for Health Technology Assessment (INAHTA) members.RESULTS:•The United States Plain Writing Act of 2010 has legislated that federal agencies use “clear Government communication that the public can understand and use” (1). Of the twenty-one respondents from INAHTA Listserv, seven use plain language in either their knowledge transfer tools (such as executive and research summaries, booklets and fact sheets, and patient or lay material).•The Government of Canada promotes plain language in all of its communications (2).•McMaster University's 2014 Health Forum on strengthening public and patient engagement in HTA in Ontario supported “clarity and consistency in the use of public- and patient-engagement terminology” in HTAs.•A growing number of international health-related and HTA organizations promote PL in their reports and HTAs to help with their health literacy.•Many pharmaceutical companies encourage PL communication in their writing (3).•Of the eighteen INAHTA responses received, eight reported that they use PL in their report summaries, knowledge transfer materials, and/or patient education tools.CONCLUSIONS:Adopting the practice of clear, straightforward writing and editing in all biomedical communication — including HTAs and journal articles — encourages interaction and engagement among patient, public, and healthcare stakeholders invested in HTAs, and their desire to have measured decision making based on comprehensive, informed, and easily understandable information. However, it remains to be seen if PL will be embraced by organizations worldwide. This preliminary, informal inquiry as to its use suggests that the adoption of PL by governments, HTA organizations, and the scientific community worldwide has not yet been fully embraced.
APA, Harvard, Vancouver, ISO, and other styles
25

Karakozov, S. D., and V. G. Manyakhina. "PYTHON AS A BASIC LANGUAGE FOR TEACHING PROGRAMMING IN SCHOOL." Informatics in school, no. 1 (March 11, 2020): 26–30. http://dx.doi.org/10.32517/2221-1993-2020-19-1-26-30.

Full text
Abstract:
The article deals with the issues related to the choice of programming language for initial training in programming at school. The choice of Python as the main programming language in the basic course of informatics in grades 7–9 is justified. The characteristics of Python whose allow to recommend it for initial programming training in school are described. The article also presents the results of a survey of informatics teachers who have been teaching programming on Python for several years at informatics lessons in grades 7–9.
APA, Harvard, Vancouver, ISO, and other styles
26

Jones, Rhys Price, Doug Cooper, Dan Friedman, Ric Holt, and Peter Robinson. "Issues in the choice of programming language for CS 1 (abstract)." ACM SIGCSE Bulletin 25, no. 1 (March 1993): 301. http://dx.doi.org/10.1145/169073.169531.

Full text
APA, Harvard, Vancouver, ISO, and other styles
27

Stehr, Mark-Oliver, and Carolyn L. Talcott. "Plan in Maude Specifying an Active Network Programming Language." Electronic Notes in Theoretical Computer Science 71 (April 2004): 240–60. http://dx.doi.org/10.1016/s1571-0661(05)82538-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
28

Soegoto, E. S., and H. R. Pasaribu. "Build an Online Shop Website Using Html Programming Language." IOP Conference Series: Materials Science and Engineering 407 (September 26, 2018): 012064. http://dx.doi.org/10.1088/1757-899x/407/1/012064.

Full text
APA, Harvard, Vancouver, ISO, and other styles
29

Gevorkyan, M. N., A. V. Demidova, A. V. Korolkova, and D. S. Kulyabov. "Statistically significant performance testing of Julia scientific programming language." Journal of Physics: Conference Series 1205 (April 2019): 012017. http://dx.doi.org/10.1088/1742-6596/1205/1/012017.

Full text
APA, Harvard, Vancouver, ISO, and other styles
30

Tressl, Marcus. "Model completeness of o-minimal structures expanded by Dedekind cuts." Journal of Symbolic Logic 70, no. 1 (March 2005): 29–60. http://dx.doi.org/10.2178/jsl/1107298509.

Full text
Abstract:
§1. Introduction. Let M be a totally ordered set. A (Dedekind) cut p of M is a couple (pL, pR) of subsets pL, pR of M such that pL ⋃ pR = M and pL < pR, i.e., a < b for all a ∈ pL, b ∈ pR. In this article we are looking for model completeness results of o-minimal structures M expanded by a set pL for a cut p of M. This means the following. Let M be an o-minimal structure in the language L and suppose M is model complete. Let D be a new unary predicate and let p be a cut of (the underlying ordered set of) M. Then we are looking for a natural, definable expansion of the L(D)-structure (M, pL) which is model complete.The first result in this direction is a theorem of Cherlin and Dickmann (cf. [Ch-Dic]) which says that a real closed field expanded by a convex valuation ring has a model complete theory. This statement translates into the cuts language as follows. If Z is a subset of an ordered set M we write Z+ for the cut p with pR = {a ∈ M ∣ a > Z} and Z− for the cut q with qL = {a ∈ M ∣ a < Z}.
APA, Harvard, Vancouver, ISO, and other styles
31

Polyakov, K. Yu. "Using Blockly visual programming language for controlling virtual robots." Informatics in school 1, no. 1 (March 18, 2021): 20–25. http://dx.doi.org/10.32517/2221-1993-2021-20-1-20-25.

Full text
Abstract:
The article describes a new learning programming environment that makes it possible to control Robot, Aquarius, and Turtle virtual robots by means of Blockly visual programming language. The environment is a set of freely available web applications hosted in Internet. Such an approach provides for workability under all modern browsers both on desktop computers and mobile devices. Automatic verification of the correctness of problem solutions is available for all the virtual robots. Suboptimal solutions that use excessive number of blocks receive a lower score due to the rating system (from one to five "stars"). Offline version is available, which can work in local mode without access to Internet. Users can develop and distribute their own sets of problems for all virtual robots.
APA, Harvard, Vancouver, ISO, and other styles
32

Milovanovic, R. "An Analysis of Sensor Based General Purpose Robot Programming Language." IFAC Proceedings Volumes 18, no. 16 (November 1985): 239–44. http://dx.doi.org/10.1016/s1474-6670(17)59968-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
33

Corrodi, Claudio, Alexander Heußner, and Christopher M. Poskitt. "A semantics comparison workbench for a concurrent, asynchronous, distributed programming language." Formal Aspects of Computing 30, no. 1 (November 13, 2017): 163–92. http://dx.doi.org/10.1007/s00165-017-0443-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
34

García-Perales, Ramón, and Ascensión Palomares-Ruiz. "Education in Programming and Mathematical Learning: Functionality of a Programming Language in Educational Processes." Sustainability 12, no. 23 (December 4, 2020): 10129. http://dx.doi.org/10.3390/su122310129.

Full text
Abstract:
(1) Background: It is becoming more common to incorporate education in programming into educational environments. (2) Methods: In order to show the benefits of including teaching programming, we present an investigation carried out with a group of Spanish schoolchildren in the fifth year of primary education (ages 10–11). We demonstrate an integrated experience in the ordinary curriculum connecting technology to mathematics education. We created a work project for students to use Scratch and to assess its benefits, created two groups of students, an experimental and a control group, with a sample of 3795 individuals. They were administered the online version of the Battery of Mathematical Competence Evaluation (BECOMA On) at two timepoints, the pretest (the beginning of the project) and the post-test (the final stage). (3) Results: The results showed statistically significant differences between groups and timepoints, with the experimental group scoring higher, demonstrating the effectiveness of the education in programming program for mathematics. (4) Conclusions: Education systems face a challenge in the sphere of the consolidation of technologies in education with the consequent need to change didactic designs to enhance quality, equitable, sustainable education processes.
APA, Harvard, Vancouver, ISO, and other styles
35

Fey, P., and A. Antonov. "Real-time extension of a higher level programming language for microcomputers." Microprocessing and Microprogramming 15, no. 4 (April 1985): 191–94. http://dx.doi.org/10.1016/0165-6074(85)90079-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
36

Belyakova, Julia. "Language Support for Generic Programming in Object-Oriented Languages: Design Challenges." Proceedings of the Institute for System Programming of the RAS 28, no. 2 (2016): 5–32. http://dx.doi.org/10.15514/ispras-2016-28(2)-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
37

Joslin, D. A. "The programming language standards scene, ten years on Paper 2: Pascal." Computer Standards & Interfaces 16, no. 5-6 (September 1994): 439–42. http://dx.doi.org/10.1016/0920-5489(94)90022-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
38

De Morgan, Richard M. "The programming language standards scene, ten years on Paper 16: C++." Computer Standards & Interfaces 16, no. 5-6 (September 1994): 531–35. http://dx.doi.org/10.1016/0920-5489(94)90036-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
39

Kostyuk, Yu L. "EFFECTIVE TRANSLATION FOR LL(1)-GRAMMAR IN THE EXAMPLE OF A PROGRAMMING LANGUAGE." Prikladnaya diskretnaya matematika, no. 37 (September 1, 2017): 90–99. http://dx.doi.org/10.17223/20710410/37/7.

Full text
APA, Harvard, Vancouver, ISO, and other styles
40

Aler, Ricardo, Daniel Borrajo, and Pedro Isasi. "Using genetic programming to learn and improve control knowledge." Artificial Intelligence 141, no. 1-2 (October 2002): 29–56. http://dx.doi.org/10.1016/s0004-3702(02)00246-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
41

Lage, Luis Paulo A., Delphine Weissman, Mélanie Serusier, Soraia Marques Putrino, Frederic Baron, Alain Guyonvarch, Mathieu Tournat, Alberto Jorge Pinto Nunes, and Stephane Panserat. "Long-term impact of a 4-day feed restriction at the protozoea stage on metabolic gene expressions of whiteleg shrimp (Litopenaeus vannamei)." PeerJ 8 (March 20, 2020): e8715. http://dx.doi.org/10.7717/peerj.8715.

Full text
Abstract:
Based on the “nutritional programming” concept, we evaluated the long-term effects of an early four-day caloric restriction (40% reduction in feed allowance compared to a normal feeding level) at the protozoea stage in whiteleg shrimp. We analyzed long-term programming of shrimp by studying metabolism at the molecular level, through RT-qPCR of key biomarkers (involved in intermediary metabolism and digestion). The mRNA levels (extracted from the whole body) were analyzed after the stimulus and after the rearing period, at 20 and 35 days, respectively. At the end of the experimental period, shrimp growth performance was evaluated. There was no difference between normal feed allowance (CTL) and feed-restricted shrimp (RES) for performance parameters (survival, final body weight and the number of post-larvae g−1 or PL g−1). The stimulus directly affected the mRNA levels for only two genes, i.e., preamylase and lvglut 2 which were expressed at higher levels in feed-restricted shrimp. In the long-term, higher levels of mRNAs for enzymes coding for glycolysis and ATP synthesis were also detected. This suggests a possible long-term modification of the metabolism that is linked to the stimulus at the protozoea stage. Overall, further studies are needed to improve nutritional programming in shrimp.
APA, Harvard, Vancouver, ISO, and other styles
42

Newman, R. M. "The ClassiC programming language and design of synchronous concurrent object oriented languages." Journal of Systems Architecture 45, no. 5 (December 1998): 387–407. http://dx.doi.org/10.1016/s1383-7621(97)00089-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
43

Idan Arb, Ghusoon, and Kadhum Al-Majdi. "A Freights Status Management System Based on Dart and Flutter Programming Language." Journal of Physics: Conference Series 1530 (May 2020): 012020. http://dx.doi.org/10.1088/1742-6596/1530/1/012020.

Full text
APA, Harvard, Vancouver, ISO, and other styles
44

Hasyim, M. W., S. Pramono, and Sutrisno. "Web-Based Telegram Chatbot Management System: Create Chatbot Without Programming Language Requirements." IOP Conference Series: Materials Science and Engineering 1096, no. 1 (March 1, 2021): 012075. http://dx.doi.org/10.1088/1757-899x/1096/1/012075.

Full text
APA, Harvard, Vancouver, ISO, and other styles
45

Ariffin, Mazeyanti Mohd, Nurshazlyn Mohd Aszemi, and Mohammad Syazran Mazlan. "CodeToProtect©: C++ Programming Language Video Game for Teaching Higher Education Learners." Journal of Physics: Conference Series 1874, no. 1 (May 1, 2021): 012064. http://dx.doi.org/10.1088/1742-6596/1874/1/012064.

Full text
APA, Harvard, Vancouver, ISO, and other styles
46

Herlina, Herlina, and Teady Matius Surya Mulyana. "ANALISIS PERSEPSI DAN HUBUNGAN PRESTASI BELAJAR MATEMATIKA DENGAN PRESTASI BAHASA PEMROGRAMAN." Jurnal Ilmiah Matematika dan Pendidikan Matematika 11, no. 1 (May 18, 2020): 1. http://dx.doi.org/10.20884/1.jmp.2020.12.1.1932.

Full text
Abstract:
Mathematics is the basis before learning coding-based courses. This type of research is quantitative descriptive. Sample of 110 informatics engineering students. The results of the study showed a significant association of learning outcomes in mathematics with the achievement of learning programming languages. The magnification coefficient of 0.663 has a moderate and positive meaning. The contribution of mathematics in explaining programming languages ​​is 43.97% and the remaining 56.03% is accepted by other variables. Students' perceptions of mathematics and programming languages ​​consist of four levels of understanding, namely the five senses, analysis, interpretation and evaluation. Every level of dimension. On the sensory dimension of 31.9% mathematics has a close relationship with programming languages. In the dimensions of analysis and interpretation, the value of the percentage of perceptions that are almost the same namely 21.24% and 21.14% associate mathematical concepts with the concepts of programming languages. In the evaluation dimension of 20.6%, it shows that in programming languages, students need information other than mathematics, namely the purpose of the programming language that is being designed. Full Article
APA, Harvard, Vancouver, ISO, and other styles
47

SEWELL, PETER, JAMES J. LEIFER, KEITH WANSBROUGH, FRANCESCO ZAPPA NARDELLI, MAIR ALLEN-WILLIAMS, PIERRE HABOUZIT, and VIKTOR VAFEIADIS. "Acute: High-level programming language design for distributed computation." Journal of Functional Programming 17, no. 4-5 (July 2007): 547–612. http://dx.doi.org/10.1017/s0956796807006442.

Full text
Abstract:
AbstractExisting languages provide good support for typeful programming of stand-alone programs. In a distributed system, however, there may be interaction between multiple instances of many distinct programs, sharing some (but not necessarily all) of their module structure, and with some instances rebuilt with new versions of certain modules as time goes on. In this paper, we discuss programming-language support for such systems, focussing on their typing and naming issues. We describe an experimental language, Acute, which extends an ML core to support distributed development, deployment, and execution, allowing type-safe interaction between separately built programs. The main features are (1) type-safe marshalling of arbitrary values; (2) type names that are generated (freshly and by hashing) to ensure that type equality tests suffice to protect the invariants of abstract types, across the entire distributed system; (3) expression-level names generated to ensure that name equality tests suffice for type safety of associated values, for example, values carried on named channels; (4) controlled dynamic rebinding of marshalled values to local resources; and (5) thunkification of threads and mutexes to support computation mobility. These features are a large part of what is needed for typeful distributed programming. They are a relatively lightweight extension of ML, should be efficiently implementable, and are expressive enough to enable a wide variety of distributed infrastructure layers to be written as simple library code above the byte-string network and persistent store APIs. This disentangles the language run-time from communication intricacies. This paper highlights the main design choices in Acute. It is supported by a full language definition (of typing, compilation, and operational semantics), by a prototype implementation, and by example distribution libraries.
APA, Harvard, Vancouver, ISO, and other styles
48

Kida, Ireneusz. "The problem of syntactic ambivalence in corpus linguistics." Lingua Posnaniensis 54, no. 1 (October 1, 2012): 57–63. http://dx.doi.org/10.2478/v10122-012-0005-1.

Full text
Abstract:
Abstract Ireneusz Kida. The Problem of Syntactic Ambivalence in Corpus Linguistics. Lingua Posnaniensis, vol. L IV (1)/2012. The Poznań Society for the Advancement of the Arts and Sciences. PL ISSN 0079-4740, ISBN 978-83-7654-103-7, pp. 57-63. The purpose of this article is to present a technique of dual annotation of Old English ambivalent structures in diachronic annotated corpus linguistics. In languages there are often structures which are ambivalent, and it is difficult to establish whether they are main or dependent. These clauses are problematic for a corpus linguist annotating them for computer analysis of word order configurations. As a solution to this problem we suggest that such structures be annotated in two ways, namely on the one hand as main and on the other hand as dependent. Such a procedure allows one to obtain more objective results from word order analysis. Moreover, dual annotation is more flexible and is able to grasp the changeable nature of language
APA, Harvard, Vancouver, ISO, and other styles
49

Klaudel, Hanna. "Compositional high-level Petri net semantics of a parallel programming language with procedures." Science of Computer Programming 41, no. 3 (November 2001): 195–240. http://dx.doi.org/10.1016/s0167-6423(01)00004-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
50

Yang, Yajie, Zhijing Zhang, and Ming Kuan Shi. "Virtual Commissioning Modeling and Simulation of Assembly System for Quasi Natural Language Programming." IOP Conference Series: Materials Science and Engineering 793 (April 10, 2020): 012039. http://dx.doi.org/10.1088/1757-899x/793/1/012039.

Full text
APA, Harvard, Vancouver, ISO, and other styles
We offer discounts on all premium plans for authors whose works are included in thematic literature selections. Contact us to get a unique promo code!

To the bibliography