Saturday, March 15, 2014

11 Strategies You Ought To Know Before Taking An Exam!

Share Post:
Almost each one of us has been a student in one or the other part of life. But being a regular school student is something that includes even non-popular things (among students) such as exams which we all have to take no matter how unhappy we are.Nevertheless, we all share the same fate but what we can do is to first be punctual in lectures and prepare well for the exams. By Siddique Hassan.

Friday, March 14, 2014

What This "Cloud" Really Is? ( Part 2 of 2)

In the previous article we talked about Cloud Computing general idea and named its types plus layers. In this article we are going to discuss different types and layers of cloud.
By Siddique Hassan Part 2 of 2.

Types of Cloud Computing:
Cloud computing, one of the fastest growing service and business over the internet, has three types that classify it and let the companies choose

What This "Cloud" Really Is ? ( Part 1 of 2)


As part of a joke cloud computing is not what the phrase suggests that you go to hill station and start using your laptop sitting inside a cloud.
By Siddique Hassan. Part 1 of 2.
It's just a phrase which interprets different sort of computing concept that includes a large number of computers interconnected or simply connected through a real-time network (like Internet).

Thursday, March 13, 2014

C program in order to reverse a number

This program reverses the number given as input by the user. Eg. if user enters 123 the output will be 321.
By Siddique Hassan.

#include <stdio.h>
#include<conio.h>
int main()
{
   int n, reverse = 0;

   printf("Enter a number to reverse\n");
   scanf("%d",&n);

Wednesday, March 12, 2014

10 Most Fundamental Things You Must Do For Preparing Exams

Preparing for exams? Give yourself the best chance with these top ten study tips.


1. Give yourself enough time to study
Don't leave it until the last second. While some students do seem to succeed on last-minute 'cramming', it's widely accepted that for most of us, this is not the best way to get to an exam.

Tuesday, March 11, 2014

Are You Distracted When You Are Studying ?

One of the most common share of students belonging to any age or class is the distraction while they are studying. It would be more profound to say that in this matter we all share the same sky.
By Siddique Hassan. 
If you have also been a shareholder of this situation then you are not alone. Many join hands with you.
As it turns out to be an important issue some say that it's the game of your own will many still believe that these distractions can be reduced to minimum by only taking few steps in the right direction.

Monday, March 10, 2014

How to be a better learner without age discrimination

You’re studying wrong. But don’t worry, it’s not too late to get much, much better.

By Peter C. Brown, Henry L. Roediger III and Mark A. McDaniel

PEOPLE COMMONLY BELIEVE that if you expose yourself to something enough times — say, a textbook passage or a set of terms from biology class — you can burn it into memory. Not so. Many teachers believe that if they can make learning easier and faster, the learning will be better.Much research turns this belief on its head: When learning is harder, it’s stronger and lasts longer.

Sunday, March 9, 2014

C program to concatenate strings without strcat(function)

#include <stdio.h>
#include<conio.h>

void concatenate_string(char*, char*);

int main()
{
    char original[100], add[100];

    printf("Enter source string\n");
    gets(original);

C program to print Pascal triangle

#include <stdio.h>
#include<conio.h>

long factorial(int);

int main()
{
   int i, n, c;

   printf("Enter the number of rows you wish to see in pascal triangle\n");
   scanf("%d",&n);