Friday, April 4, 2014

Sample Research Proposal

Share Post:

This is a simple sample proposal which will help students understand how to write a research proposal. By Sadia Hassan.
Introduction:
The topic of my study is the use of self-study to investigate the complexities of teaching practices in the context of teacher educators. Self-study has growing worth in the field of education. Most of experience teachers use the self-study methodology to find out the problems related to their teaching practices.

What this "Stromatolites" Really Is?

Stromatolites are biologically produced structures formed by colonies of photosynthesizing cyanobacteria. Their building communities include oldest known fossils, dating back some 3.5 billion years-old. Stromatolites are unique trace fossils that record both the effect of microbes in the local environment and the effect of environmental influences on microbial ecosystems.

Monday, March 31, 2014

Waste Water Treatment: Introduction and Processing

Water is the most useful and important resource of life. Our life depends on it. When waste water is treated to return this resource to the environment a semisolid, nutrient-rich by product called waste water sludge is produced. By Nadia Hassan. It contains 0.25 to 7% solids by weights.

Friday, March 28, 2014

Get Your IP By C Program!

This program will read your IP from system and then prints it on the screen.
#include<stdio.h>
#include<stdlib.h>

int main()
{
   system("C:\\Windows\\System32\\ipconfig");

   return 0;
}

Bio-Fertilizers: A Brief Introduction

“Biologically active products or microbial inoculants of bacteria algae and fungi are known as bio fertilizers”. These organisms can be used either separately or in combination which may help biological nitrogen fixation for the benefit of plants. By Nadia Hassan.

Emergence of bio fertilizers as agro-inputs:
The concept of microbial inoculation which started with legume Rhizobium inoculant has now been diversified to bacteria, fungi and actinomycetes.

Thursday, March 27, 2014

Core Component Of Human Health (Self-management)

This article will be helpful to you in better understanding and improvement of your health. But, if you really want to improve you fitness as consequence of good health. By Nadia Hassan.
You must know these components of yours' health.
Everyone really wants to be healthy. There is no magic pill for instant tricky good health. Some efforts are necessary for healthy habits, let’s work with them.

Tuesday, March 25, 2014

Do You Have A Good Health Plan ?

HEALTH IS ALWAYS BEEN ONE OF OUR CORE ISSUES. Most of us complaint about different health problems we face in our routine life. The reason to 90% of the issues is lack of health plan. We don't tend to even consider the fact that health issues can be reduced up to 90% merely by having healthy health plan. This article will help help you in bettering your lifestyle with better health plans. By Nadia Hassan.

Personal Health Improvement (Health Triangle):
Health relate to the condition of

Monday, March 24, 2014

What this "Computer" Really Is?

If you are a beginner and you are going to start work with computer, it's good to have some basic knowledge before getting your hands dirty with this amazingly sharp machine. This very simple article will help you understand the basics of computer system and its working based on its structure. By Siddique Hassan.

A computer is an electronic data processing device. It reads data, processes it into meaningful form and produces results so accurately at a very high speed. A computer along with a number of units attached to it

Joomla Tutorial: 019 Pointing your Domain


Joomla Tutorial: 018 Adding a Blog In Joomla


Joomla Tutorial: 017 Manage Users With Joomla


Joomla Tutorial: 016 Add Affiliate Code to Joomla


Joomla Tutorial: 015 Add and Change your Footer in Joomla


Monday, March 17, 2014

Find Maximum Element In Array

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

int main()
{
  int array[100], max, size, i, loc = 1;

  printf("Input number of elements in array\n");
  scanf("%d", &size);

Sunday, March 16, 2014

Check Anagram in C

#include <stdio.h>
#include<conio.h>
int check_anagram(char [], char []);

int main()
{
   char s1[110], s2[110];
   int cond;

   printf("Enter first string\n");
   gets(s1);

   printf("Enter second string\n");
   gets(s2);

Saturday, March 15, 2014

11 Strategies You Ought To Know Before Taking An Exam!

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);

Saturday, March 8, 2014

Joomla Tutorial: 004 Create Web Pages


Joomla Tutorial: 003 Create Categories Section


Joomla Tutorial: 002 Global Configuration


Joomla Tutorial: 001 Common Confusion


C program to find either the entered alphabet is vowel or not

#include <stdio.h>
#include<conio.h>
int main()
{
  char ch;

  printf("Enter a character\n");
  scanf("%c", &ch);

C program to check leap year

C program to find whether the year entered by user is a leap year or not.

#include <stdio.h>
#include<conio.h>
int main()
{
  int year;

  printf("Enter a year to check if it is a leap year\n");
  scanf("%d", &year);

C program to print Floyd's triangle.

This program prints Floyd's triangle. Number of rows of Floyd's triangle to print is entered by the user. First four rows of Floyd's triangle are as follows :-
1
2 3
4 5 6
7 8 9 10

#include <stdio.h>
#include<conio.h>
int main()
{
  int n, i,  c, a = 1;

Friday, March 7, 2014

C program to print Fibonacci series

In Fibonacci series, except first two terms in sequence every other term is the sum of two previous terms, For example 8 = 3 + 5 (addition of 3, 5). This sequence has many applications in mathematics and Computer Science.

#include<stdio.h>
#include<conio.h>
int main()
{
   int n, first = 0, second = 1, next, c;

   printf("Enter the number of terms\n");
   scanf("%d",&n);

Thursday, March 6, 2014

Programming Languages

To perform a job, a computer needs instructions from the users. The instructions given to the computer to perform a task is known as program. In other words programming is a way to communicate with the computer.
We must realize that computer does not

C program to find armstrong number

A number is armstrong if the sum of cubes of individual digits of a number is equal to the number itself. For example 371 is an armstrong number as 3^3 + 7^3 + 1^3 = 371.
#include <stdio.h>                                                     //header file
#include<conio.h>                                                    //header file
int main()
{                                                                                 //start of main body
   int number, sum = 0, temp, remainder;

Wednesday, March 5, 2014

Basic C program to print sum of squares of 4 numbers

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,b,c,d,sumsq;
    printf("\nEnter 1st number...");
    scanf("%d",&a);
    printf("\nEnter 2nd number...");

C program to find a palindrome number

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int n,revers=0,temp;
    printf("Enter the number...");
    scanf("%d",&n);

C program to print sum of even numbers upto 10

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a, sum=0;
    for(a=1; a<=10; a++)

C program to reverse a number

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a,num;
    printf("enter the 2-digit number");

Tuesday, March 4, 2014

Input Devices (Computing)

Input devices are used not only to enter data into the computer but also the instructions or programs that tell the computer what to do and how to do with the given data. Some of the common input devices are keyboard, mouse, joystick, optical character reader, light pen, scanner and disk drives etc.

Keyboard:-
Keyboard is an important input device used to enter data and instructions into the computer.The standard arrangement

Stanford University



Stanford University, established in 1885, is known as one of the world's leading research and teaching organization, with one of the most well-known faculties in the nation.

Oxford University

Oxford is the oldest university in the English-speaking world and lays demand to nine centuries of successive existence. As a globally well-known center for teaching and research, Oxford draws inward knowledge seekers from across the world, with almost a quarter of our students from overseas.