Narrow your search

Library

ULB (3749)

KU Leuven (3441)

ULiège (3321)

VIVES (2808)

Odisee (2799)

Thomas More Mechelen (2798)

Thomas More Kempen (2795)

UCLL (2784)

UGent (1405)

KBC (742)

More...

Resource type

book (3736)

periodical (14)

digital (5)

article (1)

dissertation (1)

More...

Language

English (3593)

German (105)

French (43)

Undetermined (6)

Dutch (1)

More...

Year
From To Submit

2024 (22)

2023 (73)

2022 (85)

2021 (85)

2020 (132)

More...
Listing 1 - 10 of 3749 << page
of 375
>>
Sort by

Book
Aprendiendo a Programar en Python con mi Computador
Authors: --- ---
Year: 2016 Publisher: [Place of publication not identified] LATIn Project

Loading...
Export citation

Choose an application

Bookmark

Abstract

Este libro está dirigido, principalmente, a Estudiantes y Docentes que quieren aprender a programarcomo forma de fortalecer sus capacidades cognoscitivas y así obtener un beneficio adicional de su computador para lograr un mejor provecho de sus estudios. Dada la orientación del libro respecto a programar para resolver problemas asociados a las Ciencias e Ingenierías, el requisito mínimo de matemáticas que hemos elegido para presentar el contenido del mismo se cubre, normalmente, en el tercer año del bachillerato. No obstante, el requisito no es obligatorio para leer el libro en su totalidad y adquirir los conocimientos de programación obviando el contenido matemático.


Book
x86-64 Assembly Language Programming with Ubuntu
Author:
Year: 2019 Publisher: Computer Science, Las Vegas, Nevada Ed Jorgensen

Loading...
Export citation

Choose an application

Bookmark

Abstract

The purpose of this text is to provide a reference for University level assembly language and systems programming courses. Specifically, this text addresses the x86-64 instruction set for the popular x86-64 class of processors using the Ubuntu 64-bit Operating System (OS). While the provided code and various examples should work under any Linux-based 64-bit OS, they have only been tested under Ubuntu 14.04 LTS (64-bit). The x86-64 is a Complex Instruction Set Computing (CISC) CPU design. This refers to the internal processor design philosophy. CISC processors typically include a wide variety of instructions (sometimes overlapping), varying instructions sizes, and a wide range of addressing modes. The term was retroactively coined in contrast to Reduced Instruction Set Computer (RISC3).


Book
Introduction to MIPS Assembly Language Programming
Author:
Year: 2016 Publisher: Gettysburg, Pennsylvania Charles W. Kann III

Loading...
Export citation

Choose an application

Bookmark

Abstract

This book was written to introduce students to assembly language programming in MIPS. As with all assemblylanguage programming texts, it covers basic operators and instructions, subprogram calling, loading andstoring memory, program control, and the conversion of the assembly language program into machine code. However this book was not written simply as a book on assembly language programming. The larger purposeof this text is to show how concepts in Higher Level Languages (HLL), such as Java or C/C++, arerepresented in assembly. By showing how program constructs from these HLL map into assembly, theconcepts will be easier to understand and use when the programmer implements programs in languages likeJava or C/C++. Concepts such as references and variables, registers, binary and Boolean operations, subprogram execution, memory types (heap, stack, and static), and array processing are covered to clarify thedecisions made when implementing HLL. Program control is presented using a mapping from structuredprograms in pseudo code to help students understand structured programming, and why it exists. Memoryaccess in assembly is presented to high light the difference between references (pointers) and values, and howthese impact HLL. This book has numerous code examples, and many problems at the end of each chapter, and it is appropriate for a class in Assembly Language, or as a extra resource for a class in Computer Organization.


Book
How to Think Like a Computer Scientist: C Version
Authors: ---
Year: 1999 Publisher: [Place of publication not identified] Green Tea Press

Loading...
Export citation

Choose an application

Bookmark

Abstract

The goal of this book is to teach you to think like a computer scientist. I like the way computer scientists think because they combine some of the best features of Mathematics, Engineering, and Natural Science. Like mathematicians, computer scientists use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling components into systems and evaluating trade offs among alternatives. Like scientists, they observe the behavior of complex systems, form hypotheses, and test predictions.The single most important skill for a computer scientist is problem-solving. By that I mean the ability to formulate problems, think creatively about solutions, and express a solution clearly and accurately. As it turns out, the process of learning to program is an excellent opportunity to practice problem-solving skills. That’s why this chapter is called “The way of the program.”


Book
Java with BlueJ
Author:
Year: 2016 Publisher: Winnipeg, Manitoba Ron McFadyen

Loading...
Export citation

Choose an application

Bookmark

Abstract

This book is Part I of a two-part set that introduces the Java programming language. The text assumes the student will be using the BlueJ development environment and provides some introductory BlueJ material. Our experience has been that BlueJ is easy to learn and provides a good programming environment for the beginner programmer.


Book
Programming fundamentals : a modular structured approach using C++
Author:
Year: 2013 Publisher: [Place of publication not identified] OpenStax CNX

Loading...
Export citation

Choose an application

Bookmark

Abstract

Programming Fundamentals - A Modular Structured Approach using C++ is written by Kenneth Leroy Busbee, a faculty member at Houston Community College in Houston, Texas. The materials used in this textbook/collection were developed by the author and others as independent modules for publication within the Connexions environment. Programming fundamentals are often divided into three college courses: Modular/Structured, Object Oriented and Data Structures. This textbook/collection covers the first of those three courses. The learning modules of this textbook/collection were written as standalone modules. Students using a collection of modules as a textbook will usually view it contents by reading the modules sequentially as presented by the author of the collection. The learning modules of this textbook/collection were, for the most part, written without consideration of a speci??c programming language. In many cases the C++ language is discussed as part of the explanation of the concept. Often the examples used for C++ are exactly the same for the Java programming language. However, some modules were written speci??cally for the C++ programming language. This could not beavoided as the C++ language is used in conjunction with this textbook/collection by the author in teaching college courses.


Book
How to think like a computer scientist : learning with Python
Authors: --- ---
Year: 2008 Publisher: [Place of publication not identified] Green Tea Press

Loading...
Export citation

Choose an application

Bookmark

Abstract

How to Think Like a Computer Scientist: Learning with Python is an introduction to programming using Python.


Book
MIPS Assembly Language Programming using QtSpim
Author:
Year: 2017 Publisher: Las Vegas, Nevada Ed Jorgensen

Loading...
Export citation

Choose an application

Bookmark

Abstract

There are a number of excellent, comprehensive, and in-depth texts on MIPS assembly language programming. This is not one of them.The purpose of this text is to provide a simple and free reference for university level programming and architecture units that include a brief section covering MIPS assembly language programming. The text assumes usage of the QtSpim simulator. An appendix is included that covers the download, installation, and basic use of the QtSpim simulator.The scope of this text addresses basic MIPS assembly language programming including instruction set usage, stacks, procedure/function calls, QtSpim simulator system services, multiple dimension arrays, and basic recursion.


Book
Byte of Python
Author:
Year: 2013 Publisher: San Francisco, CA Swaroop C H

Loading...
Export citation

Choose an application

Bookmark

Abstract

"A Byte of Python" is a free book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save text files, then this is the book for you.


Book
Introduction to Programming using Fortran 95/2003/2008
Author:
Year: 2018 Publisher: Las Vegas, Nevada Ed Jorgensen

Loading...
Export citation

Choose an application

Bookmark

Abstract

Computers are everywhere in our daily lives. Between the desktop, laptop, phone, bank, and vehicle, it is difficult to completely get away from computers. It only makes sense to learn a little about how a computer really works.This text provides an introduction to programming and problem solving using the Fortran 95/2003/2008 programming language. This introduction is geared for non-computer science majors. The primary focus is on an introduction to problem solving and algorithm development. As such, many details of the Fortran 95/2003/2008 language are omitted.

Listing 1 - 10 of 3749 << page
of 375
>>
Sort by