IT-kurs
Du har valgt: Hedmark
Nullstill
Filter
Ferdig

-

Mer enn 100 treff ( i Hedmark ) i IT-kurs
 

Nettstudie 12 måneder 5 000 kr
Learn to deliver an agreed quality of service by handling all predefined, user-initiated service requests in an effective and user-friendly manner. [+]
Understand the purpose and key concepts of the Continual Improvement Practice, elucidating its significance in fostering a culture of ongoing improvement and innovation within the organisation. This eLearning is: Interactive Self-paced   Device-friendly   2-3 hours content   Mobile-optimised   Practical exercises   Exam: 20 questions Multiple choise 30 minutes Closed book Minimum required score to pass: 65% [-]
Les mer
Nettstudie 12 måneder 5 000 kr
Learn how to improve user and customer experience, as well as the overall success of your service relationships. [+]
Understand the purpose and key concepts of the Service Desk practice, including how it serves as the central point of contact between the service provider and the users, facilitating effective communication. This eLearning is: Interactive Self-paced Device-friendly 2-3 hours content mobil-optimised practical exercises     Exam: 20 questions Multiple Choice 30 minutes Closed book Minimum required score to pass: (65%)   [-]
Les mer
Nettstudie 12 måneder 5 000 kr
Learn how to move new or changed hardware, software, documentation, processes, or any other component to live environments, and how to deploy components to other environm... [+]
Understand the purpose and key concepts of Deployment Management, highlighting its importance in managing the deployment of new or changed services into the live environment. This eLearning is: Interactive Self-paced   Device-friendly   2-3 hours of content   Mobile-optimised   Exam: 20 questions Multiple choise 30 minutes Closed book Minimum required score to pass: 65% [-]
Les mer
Nettstudie 12 måneder 5 000 kr
Learn to provide accurate and reliable information about the configuration of services and configuration support items when and where it is needed. [+]
Understand the purpose and key concepts of Service Configuration Management, including its role in maintaining accurate and reliable information about configuration items (CIs) within the IT infrastructure. This eLearning is: Interactive Self-paced Device-friendly 2-3 hours content Mobile-optimised Practical exercises   Exam: 20 questions Multiple Choice 30 Minutes Closed book Pass Mark: 65% [-]
Les mer
Nettstudie 12 måneder 12 000 kr
A combined module that covers the key concepts of 5 ITIL Practices: Relationship Management, Supplier Management, Service Level Management, Continual Improvement and Info... [+]
Understand the key concepts of Relationship Management, Supplier Management, Service Level Management, Continual Improvement, and Information Security Management, elucidating their significance in fostering collaboration, ensuring service quality, driving continual improvement, and maintaining information security. This eLearning is: Interactive Self-paced   Device-friendly   12 hours content   Mobile-optimised   Practical exercises   Exam: 60 questions Multiple choise 90 minutes Closed book Minimum required score to pass: 65% [-]
Les mer
Nettstudie 12 måneder 5 000 kr
The purpose of this module is to provide best practice guidance on how to set clear, business-based targets for service utility, warranty and experience. [+]
Understand the purpose and key concepts of the Service Level Management Practice, elucidating its significance in defining, negotiating, and managing service levels to meet customer expectations. This eLearning is: Interactive Self-paced   Device-friendly   2-3 hours content   Mobile-optimised   Practical exercises   Exam: 20 questions Multiple choise 30 minutes Closed book Minimum required score to pass: 65% [-]
Les mer
1 dag 9 500 kr
19 Sep
14 Nov
AZ-1008: Administer Active Directory Domain Services [+]
AZ-1008: Administer Active Directory Domain Services [-]
Les mer
Virtuelt klasserom 4 dager 23 000 kr
Python is an object oriented rapid development language deployed in many scenarios in the modern world. [+]
COURSE OVERVIEW   This Python Programming 1 course is designed to give delegates the knowledge to develop and maintain Python scripts using the current version (V3) of Python. There are many similarities between Python V2 and Python V3. The skills gained on this course will allow the delegate to develop their own skills further using Python V2 or V3 to support the development and maintenance of scripts. The Python Programming 1 course comprises sessions dealing with syntax,variables and data types,operators and expressions,conditions and loops,functions,objects,collections,modules and packages,strings,pattern matching,exception handling,binary and text files,and databases. Exercises and examples are used throughout the course to give practical hands-on experience with the techniques covered. TARGET AUDIENCE The Python Programming 1 course course is aimed at those who want to improve their Python programming skills,and for developers/engineers who want to migrate to Python from another language,particularly those with little or no object-oriented knowledge. For those wishing to learn Python and have no previous knowledge of programming,they should look to attend our foundation course Introduction to Programming - Python. COURSE OBJECTIVES This course aims to provide the delegate with the knowledge to be able to produce Python scripts and applications that exploit all core elements of the language including variables,expressions,selection and iteration,functions,objects,collections,strings,modules,pattern matching,exception handling,I/O,and classes. COURSE CONTENT DAY 1 COURSE INTRODUCTION Administration and Course Materials Course Structure and Agenda Delegate and Trainer Introductions SESSION 1: GETTING STARTED About Python Python versions Python documentation Python runtimes Installing Python The REPL shell Python editors SESSION 2: PYTHON SCRIPTS & SYNTAX Script naming Comments Docstring Statements The backslash Code blocks Whitespace Console IO (to enable the writing of simple programs) A first Python program Script execution SESSION 3: VARIABLES & DATA TYPES Literals Identifiers Assignment Numbers (bool,int,float,complex) Binary,octal,and hexadecimal numbers Floating point accuracy Collections (str,list,tuple,set,dict) None Implicit and explicit type conversion (casting) The type function SESSION 4: OPERATORS & EXPRESSIONS Arithmetic Operators Assignment Operators Comparison Operators Logical Operators Membership Operators Bitwise Operators Identity Operators SESSION 5: CONDITIONS & LOOPS Conditional statements (if,elif,else) Nested conditional statements Short hand if/if else Python's alternative to the ternary operator Iterative statements (while,for,else) The range function Iterating over a list Break Continue Nested conditional/iterative statements COURSE CONTENTS - DAY 2 SESSION 6: FUNCTIONS Declaration Invocation Default values for parameters Named arguments args and kwargs Returning multiple values None returned Variable scope Masking and shadowing The pass keyword Recursive functions SESSION 7: OBJECTS AND CLASSES About objects Attributes and the dot notation The dir function Dunder attributes Mutability The id function Pass by reference Introduction to Classes Class Declaration and Instantiation Data attributes Methods Composition SESSION 8: LISTS About lists List syntax including slicing Getting and setting list elements Iterating over a list Checking for the presence of a value The len function List methods incl. append,insert,remove,pop,clear,copy,sort,reverse etc. The del keyword Appending to and combining lists List comprehension SESSION 9: TUPLES About tuples Tuple syntax Getting tuple elements including unpacking Iterating over a tuple Checking for the presence of a value The len function Appending to and combining tuples SESSION 10: SETS About Sets Dictionary syntax Creating,adding and removing set elements Iterating over a set Membership Testing Sorting Copying Set methods incl. union,intersection,difference,symmetric_difference etc. COURSE CONTENTS - DAY 3 SESSION 11: DICTIONARIES About dictionaries Dictionary syntax Getting and setting dictionary elements Iterating over a dictionary (keys,values,and items) Checking for the presence of a key The len function Dictionary methods incl. keys,values,items,get,pop,popitem,clear etc. The del keyword Dictionary comprehension SESSION 12: STRINGS About strings String syntax including slicing Escape characters Triple-quoted strings Concatenation Placeholders The format method Other methods e.g. endswith,find,join,lower,replace,split,startswith,strip,upper etc. A string as a list of bytes SESSION 13: MODULES & PACKAGES About modules Inbuilt modules math,random and platform the dir() and help() functions Creating and using modules the __pycache__ and the .pyc files The module search path Importing modules Namespaces Importing module objects The import wildcard Aliases Importing within a function Executable modules Reloading a module About packages Importing packaged modules Importing packaged module objects Package initialisation Subpackages Referencing objects in sibling packages The Standard Library Installing modules and packages using pip SESSION 14: PATTERN MATCHING About regular expressions Regular expression special characters Raw strings About the re module re module functions incl. match,search,findall,full match,split,sub   COURSE CONTENTS - DAY 4 SESSION 15: EXCEPTION HANDLING About exceptions and exception handling Handling exceptions (try,except,else,finally) Exception types The exception object Raising exceptions Custom exception types Built-in exceptions hierarchy SESSION 16: FILES & THE FILESYSTEM The open function Methods for seeking (seekable,seek) Methods for reading from a file (readable,read,readline,readlines) Iterating over a file Methods for writing to a file (writable,write,writelines) Introduction to context managers Text encoding schemes,codepoints,codespace ASCII and UNICODE (UTF schemes) UTF-8,binary and hexadecimal representations The ord() and chr() functions Binary files,bytes and bytearray I/O layered abstraction. About the os module os module functions incl. getcwd,listdir,mkdir,chdir,remove,rmdir etc. OSError numbers and the errno module SESSION 17: DATABASES The DB-API DP-API implementations Establishing a connection Creating a cursor Executing a query Fetching results Transactions Inserting,updating,and deleting records FOLLOW ON COURSES Python Programming 2  Data Analysis Python  Apache Web Server PHP Programming  PHP & MySQL for Web Development  PHP & MariaDB for Web Development  Perl Programming  Ruby Programming  Introduction to MySQL  Introduction to MariaDB [-]
Les mer
Oslo 3 timer 21 900 kr
29 Sep
29 Sep
03 Dec
DevOps in a .NET environment [+]
DevOps in a .NET environment [-]
Les mer
Klasserom + nettkurs Sentrum 1 dag 4 490 kr
Dette er kurset passer for deg som har grunnleggende Windowskunnskap og som skal begynne og ta i bruk PowerPoint. [+]
Har du lite erfaring med PowerPoint og ønsker en innføring i programmet? På dette kurset lærer du hvordan du lager presentasjoner med bruk av tekst, bilder og ulike oppsett i PowerPoint. Du jobber i ditt eget tempo via et e-læringsprogram, med instruktør tilstede i rommet som hjelper deg om du står fast.   Kursinnhold:   Bli kjent med PowerPoint Oppstart Åpning Visninger Navigering Lagring og lukking Alternativer Egenskaper Hjelpemuligheter   Utforming Utformingsprosessen Nye presentasjoner Nye lysbilder Tema   Tekst Bruk av tekst i presentasjoner Innskriving og redigering Maler Skriftformatering Justering Avstand mellom linjer og avsnitt Punktlister og nummererte lister Angremuligheter Topptekst og bunntekst Tabulatorer Søking og erstatting Stavekontroll Synonymordbok   Bilder og objekter Bruk av bilder Utklipp Bilder fra fil Fotoalbum Video og lyd fra fil Arbeid med objekter Formatering av bilder Import av objekter   Tegning Tegning Koblingslinjer Formatering av objekter WordArt SmartArt   Diagram Utforming av diagram Diagramtyper Diagramelementer Formatering av diagram   Organisasjonskart Utforming av organisasjonskart Formatering av organisasjonskart   Tabeller Utforming av tabeller Merking Innsetting og sletting Radhøyde og kolonnebredde Justering   Utskrift Utskriftsformat Forhåndsvisning og utskrift Eksport av lysbilder til Word   Lysbildeframvisning Animasjoner Egendefinerte animasjoner Lysbildesortering Overgangseffekter Lysbildeframvisning Tilpassede framvisninger Framvisning uavhengig av PowerPoint   Internett og distribusjon Websider Hyperkoblinger Handlingsknapper Elektronisk post PDF- og XPS-format Dokumentinspeksjon Endelig versjon   [-]
Les mer
2 dager 11 900 kr
Power Pivot - Microsoft Excel [+]
Power Pivot - Microsoft Excel [-]
Les mer
Nettkurs 2 timer 1 690 kr
Er arbeidsdagen din ustrukturert og rotete? Delta på denne økten å få en gjennomgang av hvordan du kan benytte Outlook fornuftig til å organisere arbeidsdagen din. [+]
Er arbeidsdagen din ustrukturert og rotete? Delta på denne økten å få en gjennomgang av hvordan du kan benytte Outlook fornuftig til å organisere arbeidsdagen din.  Webinaret varer i 2 timer og består av to økter à 45 min. Etter hver økt er det 10 min spørsmålsrunde. Mellom øktene er det 10 min pause.Webinaret kan også spesialtilpasses og holdes bedriftsinternt kun for din bedrift.   Kursinnhold:    Kalender Legge inn hendelser, avtaler og møter Bruk av kategorier for bedre oversikt Dele kalenderen med andre, og få oversikt i flere kalendere Opprette avtaler/ møter ut av en e-post Generelle innstillinger og oppsett   Oppgaver Huskeliste for oppfølging av innkommen og utgående e-post og andre gjøremål Bruk av kategorier for bedre oversikt Tilordne oppgaver til andre Tilpasning av visninger    3 gode grunner til å delta 1. Få bedre oversikt i oppgaveliste og kalender 2. Få en kort intro til delte møtenotater i OneNote 3. Tips og triks til daglig bruk av kalenderen   [-]
Les mer
Nettkurs 3 timer 549 kr
Adobe Camera Raw er et dataprogram som lar deg importere og forbedre råformatbilder på en rask, enkel og intuitiv måte. Programmet ble utgitt i 2003 og bildebehandlingste... [+]
Dykke ned i verden av råformat-bildebehandling med "Camera Raw: Komplett", ledet av Espen Faugstad hos Utdannet.no. Adobe Camera Raw, lansert i 2003, er et kraftig verktøy for import og forbedring av råformatbilder og er integrert i flere Adobe-programmer som Bridge, Photoshop, og Lightroom. Dette kurset er designet for å gi deg en grundig forståelse av Camera Raw, uavhengig av tidligere erfaring. Du vil lære hvordan du effektivt beskjærer bilder, justerer hvitbalanse, eksponering og fargemetning. Kurset dekker også hvordan du korrigerer bildeperspektiv og objektivfeil, og hvordan du anvender lokaljusteringer for å forbedre dine bilder. Espen vil guide deg gjennom de forskjellige aspektene av Camera Raw, fra grunnleggende til mer avanserte teknikker. Med praktiske prosjekter og eksempler vil du få praktisk erfaring som vil tillate deg å anvende din nye kunnskap til dine egne fotoprosjekter. Ved kursets slutt vil du ha en dyptgående forståelse av Camera Raw og være i stand til å bruke verktøyet for å forbedre dine bilder på en profesjonell måte.   Innhold: Kapittel 1: Introduksjon Kapittel 2: Beskjære Kapittel 3: Basic Kapittel 4: Detail Kapittel 5: Lens corrections Kapittel 6: Resterende Kapittel 7: Spot removal Kapittel 8: Adjustment brush Kapittel 9: Filters Kapittel 10: Prosjekter Kapittel 11: Eksportere Kapittel 12: Avslutning   Varighet: 2 timer og 50 minutter   Om Utdannet.no: Utdannet.no tilbyr noen av landets beste digitale nettkurs. Tjenesten fungerer på samme måte som strømmetjenester for musikk eller TV-serier. Våre kunder betaler en fast månedspris og får tilgang til alle kursene som er produsert så langt. Plattformen har hatt en god vekst de siste årene og kan skilte med 30.000 registrerte brukere og 1,5 millioner videoavspillinger. Vårt mål er å gjøre kompetanseutvikling moro, spennende og tilgjengelig for alle – og med oss har vi Innovasjon Norge og Forskningsrådet. [-]
Les mer
Nettkurs 2 timer 1 990 kr
PowerPoint webinar for deg som skal lage eller endre organisasjonens PowerPoint-maler. Profesjonelt utformede maler er et viktig utgangspunkt for å lage profesjonelle pr.... [+]
Instruktørbasert opplæring:   PowerPoint nivå 4 - Utvikling av maler Lysbildemal Generelt om maloppsettet Flere lysbildemaler i samme presentasjon Definere temafarger Bytte lysbildemal i en presentasjon Gjøre maler tilgjengelig for "alle" Lysbildeoppsett Tilpasse eksisterende oppsett Lage egendefinerte lysbildeoppsett Kontrollere rekkefølgen på plassholdere   3 gode grunner til å delta 1. Få forståelse av hvordan malen fungerer 2. Lær hvordan temafarger styrer utseende 3. Se hvordan du kan tilpasse lysbildeoppsett, og hvordan lage egne [-]
Les mer
Virtuelt klasserom 2 dager 15 000 kr
This course will provide foundational level knowledge of cloud services and how those services are provided with Microsoft Azure. The course can be taken as an optional f... [+]
The course will cover general cloud computing concepts as well as general cloud computing models and services such as Public, Private and Hybrid cloud and Infrastructure-as-a-Service (IaaS), Platform-as-a-Service(PaaS) and Software-as-a-Service (SaaS). It will also cover some core Azure services and solutions, as well as key Azure pillar services concerning security, privacy, compliance and trust. It will finally cover pricing and support services available.   Agenda Module 1: Cloud Concepts -Learning Objectives-Why Cloud Services?-Infrastructure-as-a-Service (IaaS), Platform-as-a-Service (PaaS) and Software-as-a-Service (SaaS)-Public, Private, and Hybrid cloud models Module 2: Core Azure Services -Core Azure architectural components-Core Azure Services and Products-Azure Solutions-Azure management tools Module 3: Security, Privacy, Compliance and Trust -Securing network connectivity in Azure-Core Azure Identity services-Security tools and features-Azure governance methodologies-Monitoring and Reporting in Azure-Privacy, Compliance and Data Protection standards in Azure Module 4: Azure Pricing and Support -Azure subscriptions-Planning and managing costs-Support options available with Azure-Service lifecycle in Azure [-]
Les mer