본문 바로가기
반응형

tonyzorz22

[AWS/SAA] Solutions Architect Associate 자격증 준비 (SAA)(Section 3 : Getting Started with AWS & Section 4 : IAM & AWS CLI)(1) 2024년 SAA-C03 자격증 준비하면서 필요한 노트 정리했습니다  강의는 유데미 "Ultimate AWS Certified Solutions Architect Associate SAA-C03" 통해 공부했습니다 url = https://www.udemy.com/course/aws-certified-solutions-architect-associate-saa-c03  Section 3 : Getting Started with AWS8. AWS Cloud Overview - Regions & AZenables to build sophisiticated, scalable applications Website hosting, gaming, etc https://infrastructure.aws = Can v.. 2024. 8. 30.
Debugging syntax errors that prevent a program from running runtime errors when code fails to execute or has unexpected behavior semantic (or logical) errors when code doesn't do what it's meant to. 2020. 2. 14.
Basic Javascript JavaScript provides seven different data types which are undefined, null, boolean, string, symbol, number, and object. When JavaScript variables are declared, they have an initial value of undefined. If you do a mathematical operation on an undefined variable your result will be NaN which means "Not a Number". If you concatenate a string with an undefined variable, you will get a literal string .. 2020. 2. 8.
Algorithms(week3, problemset) 1. Plurality 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 #include #include #include #define MAX 9 typedef struct{ .. 2020. 1. 6.
Arrays(week 2, problem set) 1. Readability 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 #import #import #import #import int main(int argc, char *argv[]){ int z; if(argc = 3){ printf("Usage: ./caesar key\n"); return 1; } else if((z = atoi(argv[1])) == 0 ){ printf("Usage: ./caesar key\n"); return 1; } z = atoi(argv[1]).. 2019. 12. 30.
Memory (week3) Compiling contains four steps, preprocessing, compiling, assembling and linking. First convert a source code into required functions, like for instance in c, read hashtags and copy and past files. Second step is compiling, convert source code into assembling codes. Third step is assembling, converting assembling codes into machine codes, 1s and 0s. Last, link all files into 0s and 1s. Programmer.. 2019. 12. 27.
반응형