Programspråk
549 kr
Skickas inom 5-8 vardagar
Computer Science with MATHEMATICA ®
Theory and Practice for Science, Mathematics, and Engineering
702 kr
Skickas inom 7-10 vardagar
627 kr
Skickas inom 7-10 vardagar
522 kr
Skickas inom 7-10 vardagar
C# 14 and .NET 10 – Modern Cross-Platform Development Fundamentals
Build modern websites and services with ASP.NET Core, Blazor, and EF Core using Visual Studio 2026
619 kr
Skickas inom 5-8 vardagar
579 kr
Skickas inom 7-10 vardagar
689 kr
Skickas inom 3-6 vardagar
The definitive reference guide to C programming from K&R for writing good code that works and is easy to modify
Learn how to program in C from the developers of C, Brian Kernighan and Dennis Ritchie. Intended for those with at least some experience with one other language (even if you are a novice), this book contains a tutorial introduction to get new users started as soon as possible and separate chapters on each major feature:
Types, operators, and expressions Control flow Functions and program structure Pointers and arrays Structures Input and outputThis second edition of The C Programming Language describes C as defined by the ANSI standard and includes a reference manual that conveys the essentials of the standard in a smaller space for easy comprehension for programmers.
"K&R is one of my favorite books. The style of the tutorial chapters is so deceptively light and simple and the manual so crisp. Much of C's reputation of simplicity comes from the clarity and great little examples from this book. My 1978 copy has lost its cover and my K&R2 is somewhat dog eared. Above all, K&R is a useful book."
Bjarne Stroustrup, designer and original implementer of C++, and author of The C++ Programming Language
534 kr
Skickas
533 kr
Skickas inom 7-10 vardagar
Create LLM-powered autonomous agents and intelligent assistants that can adapt to your specific business and personal needs.Each job you take on or decision you make requires some of your precious time. AI Agents in Action teaches you to develop and deliver LLM-based assistants and agents that can independently process information, make decisions, and learn from interactions. These powerful autonomous AI agents and interactive assistants handle routine tasks behind the scenes so you can focus on other things.In AI Agents in Action, author Micheal Lanham combines cutting-edge academic research with practical experience to help you:
Understand AI agent behavior patterns Design and deploy intelligent agents Use the OpenAI Assistants API and other tools Manage knowledge and memory Build in feedback loops so agents learn from their actions Design collaborative multi-agent systems Create agents with speech and vision featuresFrom script-free customer service chatbots to fully independent agents operating out of sight, AI-powered assistants are a groundbreaking advance in machine intelligence. In AI Agents in Action you'll learn a reliable, tested framework for developing working agents for a variety of practical business and personal tasks.
513 kr
Skickas inom 7-10 vardagar
An Introduction to Programming by the Inventor of C++
Programming: Principles and Practice Using C++, Third Edition, will help anyone who is willing to work hard learn the fundamental principles of programming and develop the practical skills needed for programming in the real world. Previous editions have been used successfully by many thousands of students. This revised and updated edition
Assumes that your aim is to eventually write programs that are good enough for others to use and maintain Focuses on fundamental concepts and techniques, rather than on obscure language-technical details Is an introduction to programming in general, including procedural, object-oriented, and generic programming, rather than just an introduction to a programming language Covers both contemporary high-level techniques and the lower-level techniques needed for efficient use of hardware Will give you a solid foundation for writing useful, correct, type-safe, maintainable, and efficient code Is primarily designed for people who have never programmed before, but even seasoned programmers have found previous editions useful as an introduction to more effective concepts and techniques Covers a wide range of essential concepts, design and programming techniques, language features, and libraries Uses contemporary C++ (C++20 and C++23) Covers the design and use of both built-in types and user-defi ned types, complete with input, output, computation, and simple graphics/GUI Offers an introduction to the C++ standard library containers and algorithmsRegister your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.
563 kr
Skickas inom 7-10 vardagar
The new C++11 standard allows programmers to express ideas more clearly, simply, and directly, and to write faster, more efficient code. Bjarne Stroustrup, the designer and original implementer of C++, has reorganized, extended, and completely rewritten his definitive reference and tutorial for programmers who want to use C++ most effectively.
The C++ Programming Language, Fourth Edition, delivers meticulous, richly explained, and integrated coverage of the entire language—its facilities, abstraction mechanisms, standard libraries, and key design techniques. Throughout, Stroustrup presents concise, “pure C++11” examples, which have been carefully crafted to clarify both usage and program design. To promote deeper understanding, the author provides extensive cross-references, both within the book and to the ISO standard.
New C++11 coverage includes
Support for concurrency Regular expressions, resource management pointers, random numbers, and improved containers General and uniform initialization, simplified for-statements, move semantics, and Unicode support Lambdas, general constant expressions, control over class defaults, variadic templates, template aliases, and user-defined literals Compatibility issuesTopics addressed in this comprehensive book include
Basic facilities: type, object, scope, storage, computation fundamentals, and more Modularity, as supported by namespaces, source files, and exception handling C++ abstraction, including classes, class hierarchies, and templates in support of a synthesis of traditional programming, object-oriented programming, and generic programming Standard Library: containers, algorithms, iterators, utilities, strings, stream I/O, locales, numerics, and more The C++ basic memory model, in depthThis fourth edition makes C++11 thoroughly accessible to programmers moving from C++98 or other languages, while introducing insights and techniques that even cutting-edge C++11 programmers will find indispensable.
This is a hardcover version of the Fourth Edition. Content in this hardcover and the paperback version is identical.
This book features an enhanced, layflat binding, which allows the book to stay open more easily when placed on a flat surface. This special binding method—noticeable by a small space inside the spine—also increases durability.
956 kr
Skickas inom 7-10 vardagar
For courses in computer programming.
Evaluates the fundamentals of contemporary computer programming languages
Concepts of Computer Programming Languages introduces students to the fundamental concepts of computer programming languages and provides them with the tools necessary to evaluate contemporary and future languages. Through a critical analysis of design issues, the text teaches students the essential differences between computing with specific languages, while the in-depth discussion of programming language structures also prepares them to study compiler design. The 12th Edition includes new material on contemporary languages like Swift and Python, replacing discussions of outdated languages.
305 kr
Skickas inom 7-10 vardagar
The authoritative resource to writing clear and idiomatic Go to solve real-world problems
Google’s Go team member Alan A. A. Donovan and Brian Kernighan, co-author of The C Programming Language, provide hundreds of interesting and practical examples of well-written Go code to help programmers learn this flexible, and fast, language. It is designed to get you started programming with Go right away and then to progress on to more advanced topics.
Basic components : an opening tutorial provides information and examples to get you off the ground and doing useful things as quickly as possible. This includes: command-line arguments gifs URLs web servers Program structure : simple examples cover the basic structural elements of a Go program without getting sidetracked by complicated algorithms or data structures. Data types: Go offers a variety of ways to organize data, with a spectrum of data types that at one end match the features of the hardware and at the other end provide what programmers need to conveniently represent complicated data structures. Composite types : arrays slices maps structs JSON test and HTML templates Functions : break a big job into smaller pieces that might well be written by different people separated by both time and space. Methods : declarations with a pointer receiver struct embedding values and expressions Interfaces : write functions that are more flexible and adaptable because they are not tied to the details of one particular implementation. Concurrent programming : Goroutines, channels, and with shared variables. Packages : use existing packages and create new ones. Automated testing : write small programs that check the code. Reflection features : update variables and inspect their values at run time. Low-level programming : step outside the usual rules to achieve the highest possible performance, interoperate with libraries written in other languages, or implement a function that cannot be expressed in pure Go.Each chapter has exercises to test your understanding and explore extensions and alternatives. Source code is freely available for download and may be conveniently fetched, built, and installed using the go get command.
502 kr
Skickas inom 3-6 vardagar
479 kr
Skickas inom 7-10 vardagar
484 kr
Skickas inom 3-6 vardagar
Computer Science From Scratch
Building Interpreters, Art, Emulators and MP in Python
525 kr
Skickas inom 7-10 vardagar
Vibe Coding: Building Production-Grade Software with Genai, Chat, Agents, and Beyond
329 kr
Skickas inom 3-6 vardagar
579 kr
Skickas inom 7-10 vardagar
Scientific Computing with Python
High-performance scientific computing with NumPy, SciPy, and pandas
519 kr
Skickas inom 5-8 vardagar
489 kr
Skickas inom 7-10 vardagar
442 kr
Skickas inom 7-10 vardagar
1 045 kr
Skickas inom 3-6 vardagar
255 kr
Skickas inom 7-10 vardagar
The classic guide to how computers work, updated with new chapters and interactive graphics
"For me, Code was a revelation. It was the first book about programming that spoke to me. It started with a story, and it built up, layer by layer, analogy by analogy, until I understood not just the Code, but the System. Code is a book that is as much about Systems Thinking and abstractions as it is about code and programming. Code teaches us how many unseen layers there are between the computer systems that we as users look at every day and the magical silicon rocks that we infused with lightning and taught to think."
- Scott Hanselman, Partner Program Director, Microsoft, and host of Hanselminutes
Computers are everywhere, most obviously in our laptops and smartphones, but also our cars, televisions, microwave ovens, alarm clocks, robot vacuum cleaners, and other smart appliances. Have you ever wondered what goes on inside these devices to make our lives easier but occasionally more infuriating?
For more than 20 years, readers have delighted in Charles Petzold's illuminating story of the secret inner life of computers, and now he has revised it for this new age of computing. Cleverly illustrated and easy to understand, this is the book that cracks the mystery. You'll discover what flashlights, black cats, seesaws, and the ride of Paul Revere can teach you about computing, and how human ingenuity and our compulsion to communicate have shaped every electronic device we use.
This new expanded edition explores more deeply the bit-by-bit and gate-by-gate construction of the heart of every smart device, the central processing unit that combines the simplest of basic operations to perform the most complex of feats. Petzold's companion website, CodeHiddenLanguage.com, uses animated graphics of key circuits in the book to make computers even easier to comprehend.
In addition to substantially revised and updated content, new chapters include:
Chapter 18: Let's Build a Clock! Chapter 21: The Arithmetic Logic Unit Chapter 22: Registers and Busses Chapter 23: CPU Control Signals Chapter 24: Jumps, Loops, and Calls Chapter 28: The World BrainFrom the simple ticking of clocks to the worldwide hum of the internet, Code reveals the essence of the digital revolution.
999 kr
Skickas inom 7-10 vardagar
The Classic Guide to the Java Programming Language--Fully Updated through Java 25
Whatever version of Java you are using, Core Java, Volume I: Fundamentals, Fourteenth Edition, will help you achieve a deep and practical understanding of the language and APIs. With hundreds of realistic examples, Java Champion Cay S. Horstmann demonstrates the most powerful and effective ways to get the job done.
Written for experienced programmers looking for in-depth coverage of the Java language and platform, this revised and updated edition continues to be the first choice for serious programmers. The carefully crafted sample programs demonstrate almost every language and library feature, as well as the newest capabilities introduced in Java 25. The examples are purposefully simple to focus on the major points, but for the most part, they aren't fake and they don't cut corners. They should make good starting points for your own code.
This first of two volumes offers a detailed treatment of fundamental Java programming topics, including object-oriented programming, reflection and proxies, interfaces and inner classes, exception handling, generics, collections, lambda expressions, concurrency, annotations, and the Java platform module system.
Master foundational techniques, idioms, and best practices forwriting superior Java code Leverage the power of interfaces, lambda expressions, and inner classes Take advantage of sealed class hierarchies and pattern matching for processing structured data Harden programs through effective exception handling and debugging Write safer, more reusable code with generic programming Improve performance and efficiency with Java's standard collections Explore simple programs with compact compilation units, instance main methods, and module imports Assemble complex programs with archives and modules Effectively utilize Java's powerful concurrency model, using platform and virtual threadThis is the definitive reference and instructional work for Java and the Java ecosystem."--Andrew Binstock, Java Magazine
See Core Java, Volume II: Advanced Features, Fourteenth Edition, for coverage of Java 25 enterprise features, including detailed discussions of networking, security, internationalization, and advanced UI programming.
Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.
420 kr
Tillfälligt slut
Almost 50 years ago, the C language defined modern computer programming. This book shows you why C is still as powerful and popular as ever, with an inside look at the new C23 standard.For programs that need to be small, fast, and unfailingly reliable, C is still the gold standard. Whether you're writing embedded code, low-level system routines, or high-performance applications, C is up to the challenge. This unique book by Jens Gustedt, a member of the ISO C standards committee, gets you up to speed with C23.In Modern C, Third Edition you'll:
Learn C basics, core features, and advanced concepts Leverage major C23 improvements for security, reliability, and performance Write portable code that runs anywhere Build multi-threaded applications with atomics and synchronization Create robust and resilient software with error handling Use type-generic programming for reusable codeC powers more software than any other language—from embedded devices to distributed systems. In Modern C, Third Edition you'll learn to harness C's full potential using the latest tools and techniques. After a quick review of the fundamentals perfect for beginners or coders who haven't used C in a while, this book guides you to mastery of C23, the latest ISO standard.
412 kr
Skickas inom 3-6 vardagar
Semantic Web for the Working Ontologist
Effective Modeling for Linked Data, RDFS, and OWL
690 kr
Skickas inom 7-10 vardagar
439 kr
Skickas inom 5-8 vardagar
Extending Excel with Python and R
Unlock the potential of analytics languages for advanced data manipulation and visualization
589 kr
Skickas inom 5-8 vardagar