RAM. About RAM RAM stand's for Random Access Memory. RAM is type of Memory device which holds programs or instructions which is going to be executed. So we say that RAM is a primary memory which stores currently running programs . Some features of RAM are as Follows:: --RAM is a volatile memory --It is expensive memory device. --We read and write data instructions in RAM. --High speed memory Types of RAM are ::: 1. Static RAM (SRAM) 2. Dynamic RAM (DRAM) Pic of RAM given below.... Pic: RAM from:google.com
Program in Class and Object: #include < cmath > #include < cstdio > #include < vector > #include < iostream > #include < algorithm > #include < cassert > using namespace std ; // Write your Student class here class Student { private : int score [ 5 ]; public : void input () { for ( int i = 0 ; i < 5 ;++ i ) { cin >> score [ i ]; } } int calculateTotalScore () { int ...
Comments
Post a Comment