Posts

KSU CS3540 Assignment 3

Modify the "grades" program so that the user initially enters the number of grades and then enters the grades.  The program will output the average of the grades, the standard deviation of the grades, and the median of the grades.  Please email your source code to your instructor by 9:30 am on  Tuesday, January 21 st .   /* Name : Dalibor Labudovic    Course: CS3540 Sec. 2    Prof. : J. Higgins */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <assert.h> //function prototype int* get_data(int num_grades); // function to get grades //function to calculate average and display results float calc_average(int num_grades, int* grades); void display_average(float average); //function to clculate median and display results float calc_median(int num_grades, int* grades); void display_median(float median); //function to calculate standard deviation and display results float calc_standard_deviation(int num_grade...

KSU CS3540 Assignment 2

Assignment 2 Modify the "grades" program so that the initially enters the number of grades and then enters the grades.  The program will output the average of the grades.  Please email your source code to your instructor by Noon on  Thursday, January  16 th .    /* Name : Dalibor Labudovic    Course: CS3540 Sec. 2    Prof. : J. Higgins */ #include <stdio.h> int main(){         int grade;         int num_grades;                 printf("Enter the number of grades: ");                 scanf("%d", &num_grades);                         int i;          ...

KSU CS3540 Assignment 1

Assignment 1 Modify the hello world program so that a "southern greeting" is display.  Please email your source code to your instructor by 8:00 am on Tuesday, Jan 14 th .   /* Name : Dalibor Labudovic    Course: CS3540 Sec. 2    Prof. : J. Higgins */ #include <stdio.h> int main (int argc, char* argv[]){         printf("Howdy folks!");         return 0; }  

Send money via PayPal without an account

Image
Description: Do you need to send money or pay someone via PayPal without an account? Here is a way, it worked for me several times. Give it a try. Step 1: Type this url in your browser url address bar:  http://paypal.com/xclick/business= Step 2: After the  http://paypal.com/xclick/business= [Email address to whom your are sending funds]. Example:  http://paypal.com/xclick/business= sherkon18@gmail.com Once done, press enter. Step 3: Fill in description and item price then select update.(Screen shot below) Step 4: Select "Don't Have a PayPal Account?" Step 5: Enter Your credit card/debit card info and select Pay at the bottom. (Screen shot below)

SAP Definition

Users Definition for SAP 1.)Stops All Production 2.)Select Another Package 3.)Suffering and Pain 4.)Salary Advancement Program 5.)Scare Another Programmer 6.)Slow and Pointless 7.)Say a Prayer

CS3530 Assigment 8

Kennesaw State University     Department of Computer Science Operating Systems CS3530/01 Assignment # 8 / Dynamic Page Replacement Dalibor Labudovic 07/24/12013 Initial Problem Statement: Study of Performance with dynamic page replacement in Virtual Memory Management, using the Working Set algorithm. Observation of general behavior of a system with dynamic page replacement. Computation of some relevant performance metrics.   The simulation model for this assignment is implemented in C++ using Psim3 package: "wspgrep.cpp". This model uses the Working Set technique. Copy the source file from the system directory on CS3 (follow instructions on the Web), then compile, and link. Run the program at least three times. Write a report describing the characteristics of the page replacement technique modeled. Use the usual guidelines for structuring the report. Include at the end of the report your ans...

CS 3530 Assignment 7

Kennesaw State University     Department of Computer Science Operating Systems CS3530/01 Assignment # 7 / Virtual Memory Managment Dalibor Labudovic 07/24/12013 Initial Problem Statement: Study of static page replacement in Virtual Memory Management. Observation of general behavior of a system with page replacement. Computation of some   relevant performance metrics.   The simulation models for this assignment are implemented in the C++ programs: "fifopgrep.cpp", "lrupgrep.cpp", and "optpgrep.cpp". These models apply the FIFO, LRU, and Optimal techniques. Copy the source files from the system directory on CS3 (follow instructions on the Web), then compile, and link. Run the programs. Write a report describing the characteristics of the page replacement techniques modeled. Run the simulation models. Change the average and standard deviation for the normal distribution, and comp...