Skip to main content

Posts

Public and Private Schools in Japan and Kuwait مقارنة بين المدارس الخاصة والحكومية في دولة اليابان والكويت

Hello. It's me, Shouq. So in this post I uploaded my part of my report and presentation for an elective class called Introduction to Sociology - Summer 2017 - AUM - American University of the Middle East. Enjoy!        "What do you think is better private or public schools?" is the question I asked in a survey. Two hundred fifty one people answered the survey. 51% of them think that private schools are better than public schools while 49% of them think that public schools are better. What are public and private schools? What are the differences between them? Public schools are schools that are funded by the government, and most of the time you do not have to pay money to enter them, so public schools are free of charge. However, private schools are funded by group of individuals. Private schools will cost you money if you want to enter them (" Private school ", n.d.; "Public school", n.d.). In this report, we will talk about the differences in...

How to code a jeoparody game كيف أبرمج لعبة من سيربح المليون

Have you ever thought about making your own game and programming it by yourself? Then this is your chance! This is my project for a class called Programming Application for Engineering - CS159 - American University of The Middle East (AUM) - Spring 2016. We were supposed to make a jeopardy game that has three levels which are easy, intermediate, and difficult level. When you answer a question correctly, your score will increase based on the points of that question. When you reach the end of the level, you will be asked if you want to save your score or not as well as if you want to see your previous score. After that you will be asked if you want to play a new session. The coding program used in the code below is called Microsoft Visual Studio. And we used c++ language. #include<stdio.h> #include<stdlib.h> void simple(int score);//add function simple level massege void Intermediate(int score);//add function intermediate level void Difficult(int score...