├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── files ├── azure_certification_guide.pdf ├── azure_learning_path.pdf ├── azure_overview.pdf ├── azure_sample_questions_1.pdf ├── azure_sample_questions_2.pdf ├── azure_sample_questions_3.pdf ├── azure_sample_questions_4.pdf ├── azure_sample_questions_5.pdf ├── azure_sample_questions_6.pdf ├── azure_training_guide.pdf └── book_fundamentals_of_Azure.pdf └── images ├── azure_animation.gif ├── azure_certifications.png └── azure_percentages.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /files/azure_certification_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_certification_guide.pdf -------------------------------------------------------------------------------- /files/azure_learning_path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_learning_path.pdf -------------------------------------------------------------------------------- /files/azure_overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_overview.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_1.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_2.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_3.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_4.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_5.pdf -------------------------------------------------------------------------------- /files/azure_sample_questions_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_sample_questions_6.pdf -------------------------------------------------------------------------------- /files/azure_training_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/azure_training_guide.pdf -------------------------------------------------------------------------------- /files/book_fundamentals_of_Azure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/files/book_fundamentals_of_Azure.pdf -------------------------------------------------------------------------------- /images/azure_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/images/azure_animation.gif -------------------------------------------------------------------------------- /images/azure_certifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/images/azure_certifications.png -------------------------------------------------------------------------------- /images/azure_percentages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yurynino/learning-azure-fundamentals/HEAD/images/azure_percentages.png --------------------------------------------------------------------------------