The C# programmer's study guide (MCSD) : exam 70-483
(eBook)

Book Cover
Average Rating
Author
Contributors
Ali, Hamza, author.
Published
[Berkeley, CA] : Apress, 2017.
Format
eBook
ISBN
1484228596, 148422860X, 9781484228593, 9781484228609
Physical Desc
1 online resource
Status

Description

Loading Description...

Also in this Series

Checking series information...

More Like This

Loading more titles like this title...

Syndetics Unbound

More Details

Language
English
UPC
9781484228593, 10.1007/978-1-4842-2860-9

Notes

General Note
Includes index.
Description
Code Challenges; Challenge 1: Develop an Arithmetic Calculator Application; Challenge 2: Develop a Student Report Card Application; Practice Exam Questions; Question 1; Question 2; Question 3; Question 4; Question 5; Answers; Chapter 2: Types in C#; Understand Types; Create Types; Enum; Enum and Integer; Override Constant's Values; Supporting Types; Struct; Constructor in struct; this keyword; Class; Constructor in Class; Base Constructor; Types and Memory Management; Value Type ; Reference Type; Heap; Stack; Register; Special Types in C#; System. Object Type; Anonymous Type.

Reviews from GoodReads

Loading GoodReads Reviews.

Citations

APA Citation, 7th Edition (style guide)

Asad, A., & Ali, H. (2017). The C# programmer's study guide (MCSD): exam 70-483 . Apress.

Chicago / Turabian - Author Date Citation, 17th Edition (style guide)

Asad, Ali and Hamza, Ali. 2017. The C# Programmer's Study Guide (MCSD): Exam 70-483. Apress.

Chicago / Turabian - Humanities (Notes and Bibliography) Citation, 17th Edition (style guide)

Asad, Ali and Hamza, Ali. The C# Programmer's Study Guide (MCSD): Exam 70-483 Apress, 2017.

MLA Citation, 9th Edition (style guide)

Asad, Ali,, and Hamza Ali. The C# Programmer's Study Guide (MCSD): Exam 70-483 Apress, 2017.

Note! Citations contain only title, author, edition, publisher, and year published. Citations should be used as a guideline and should be double checked for accuracy. Citation formats are based on standards as of August 2021.

Staff View

Grouped Work ID
edc14530-5c9b-6d0c-a8d9-53312dba3792-eng
Go To Grouped Work

Grouping Information

Grouped Work IDedc14530-5c9b-6d0c-a8d9-53312dba3792-eng
Full titlec programmers study guide mcsd exam 70 483
Authorasad ali
Grouping Categorybook
Last Update2024-09-06 16:31:08PM
Last Indexed2024-09-14 04:23:41AM

Book Cover Information

Image Sourcesyndetics
First LoadedAug 29, 2024
Last UsedSep 18, 2024

Marc Record

First DetectedJul 29, 2024 04:03:02 PM
Last File Modification TimeSep 06, 2024 04:37:55 PM

MARC Record

LEADER05508cam a2200613 i 4500
001ocn991854387
003OCoLC
00520240830103855.0
006m     o  d        
007cr cnu---unuuu
008170627s2017    cau     o     001 0 eng d
010 |a  2017944951
015 |a GBB8O2173|2 bnb
0167 |a 019177202|2 Uk
019 |a 992180827|a 996420856|a 999562497|a 1005803397|a 1012024346|a 1021275348|a 1062728178|a 1066638810|a 1086456107|a 1113372506|a 1162788344|a 1204084151
020 |a 1484228596
020 |a 148422860X|q (electronic bk.)
020 |a 9781484228593
020 |a 9781484228609|q (electronic bk.)
020 |z 9781484228593
0243 |a 9781484228593
0247 |a 10.1007/978-1-4842-2860-9|2 doi
035 |a (OCoLC)991854387|z (OCoLC)992180827|z (OCoLC)996420856|z (OCoLC)999562497|z (OCoLC)1005803397|z (OCoLC)1012024346|z (OCoLC)1021275348|z (OCoLC)1062728178|z (OCoLC)1066638810|z (OCoLC)1086456107|z (OCoLC)1113372506|z (OCoLC)1162788344|z (OCoLC)1204084151
037 |a 9781484228593|b 00152887
040 |a N$T|b eng|e rda|e pn|c N$T|d N$T|d EBLCP|d GW5XE|d YDX|d UAB|d AZU|d UPM|d OCLCF|d MERER|d ESU|d OCLCQ|d COO|d OCLCQ|d VT2|d IOG|d K6U|d IDB|d MERUC|d LIV|d U3W|d D6H|d CAUOI|d OCLCQ|d VVB|d KSU|d WYU|d UMI|d STF|d TOH|d UKMGB|d G3B|d AUD|d OCLCQ|d UKAHL|d C6I|d OCLCQ|d OCLCO|d OCLCQ|d DCT|d OCLCO|d OCLCQ
049 |a FMGA
050 4|a QA76.73.C154
066 |c (Q
08204|a 005.13/3|2 23
1001 |a Asad, Ali,|e author.
24514|a The C# programmer's study guide (MCSD) :|b exam 70-483 /|c Ali Asad, Hamza Ali.
264 1|a [Berkeley, CA] :|b Apress,|c 2017.
300 |a 1 online resource
336 |a text|b txt|2 rdacontent
337 |a computer|b c|2 rdamedia
338 |a online resource|b cr|2 rdacarrier
347 |a text file|b PDF|2 rda
4901 |a For professionals by professionals
500 |a Includes index.
5050 |a At a Glance; Contents; About the Authors; About the Technical Reviewer; Acknowledgments; Introduction; Foreword; Chapter 1: Fundamentals of C #; Program Structure & Language Fundamentals; First Program in C#; Variables & Data Types; Data Types in C#; Variables in C#; Operator in C#; Arithmetic Operator; Relational Operator; Boolean Logical Operators; Expression in C#; Type Casting; Implicit Conversion; Explicit Conversion; var keyword; Array in C#; Single Dimension Array; Multi Dimension Array in C#; Jagged Array in C#; Implement Program Flow; Decision Structure.
5058 |a If {} Structure in C#If Else {} Structure in C#; If Else If {} Structure; Switch {} Structure in C#; Decision Operators; Conditional Operator (?:); Null Coalescing Operator (??); Loops in C#; While Loop; Do-while Loop; For Loop; Foreach loop; Jump Statements in C#; Goto; Break; Use break statement in loop; Continue; Use continue statement in loop; Return; Use return in method (a); Use return Statement in Main Method (b); Methods in C#; Named Argument; Optional Argument; Pass by Reference with ref Keyword; Pass by Reference with out Keyword; Use Params Array to Pass Unlimited Method Argument.
5058 |a Dynamic TypeNullable Type;?? Operator; Static Type; Static Constructor; Extension Methods; Type Conversion; Implicit Type Conversion; Explicit Type Conversion; as operator ; is operator ; User Defined Type Conversion; Implicit User Defined Conversion; Explicit User Defined Conversion; Summary; Code Challenges; Develop Temperature Converter Application; Practice Exam Questions; Question 1; Question 2; Question 3; Question 4; Question 5; Answers; Chapter 3: Getting Started with Object Oriented Programming; Introduction to Object Oriented Programming; OOP in a PIE; Encapsulation.
5058 |a Access SpecifiersPublic; Private; Protected; Internal; Internal Protected; Data Protection; Properties; Full Property; Auto Property; Indexers; Inheritance; Multi Level Inheritance; Abstract Class; Interface; Implement interface implicitly; Implement interface explicitly; Polymorphism; Static Polymorphism; Method Overloading; Overload Method by Parameter Type; Overload Method by length of parameter; Operator Overloading; Overload Unary Operators; Overload Binary Operator; Overload Comparison Operator; Dynamic Polymorphism; Virtual Method; Abstract method; Summary; Code Challenges.
520 |a Code Challenges; Challenge 1: Develop an Arithmetic Calculator Application; Challenge 2: Develop a Student Report Card Application; Practice Exam Questions; Question 1; Question 2; Question 3; Question 4; Question 5; Answers; Chapter 2: Types in C#; Understand Types; Create Types; Enum; Enum and Integer; Override Constant's Values; Supporting Types; Struct; Constructor in struct; this keyword; Class; Constructor in Class; Base Constructor; Types and Memory Management; Value Type ; Reference Type; Heap; Stack; Register; Special Types in C#; System. Object Type; Anonymous Type.
5880 |a Online resource; title from PDF title page (EBSCO, viewed June 28, 2017).
650 0|a C# (Computer program language)|0 http://id.loc.gov/authorities/subjects/sh2001001705
650 0|a Application software|x Development.|0 http://id.loc.gov/authorities/subjects/sh95009362
650 2|a Electronic Data Processing
7001 |a Ali, Hamza,|e author.
7730 |t Springer eBooks
77608|i Printed edition:|z 9781484228593
830 0|a Books for professionals by professionals.
85640|u https://www.aclib.us/OReilly
88014|6 245-00/(Q|a The C# Programmerѫs Study Guide (MCSD) :|b Exam: 70-483 /|c Ali Asad, Hamza Ali.