RAM on a computer

RAM (pronounced ramm) is an acronym for random access memory, a type of computer memory that can be accessed randomly; that is, any byte of memory can be accessed without touching the preceding bytes. RAM is the most common type of memory found in computers and other devices, such as printers.

Laptop

A laptop, often called a notebook, or notebook computer, is a portable personal computer with a "clamshell" form factor, with a keyboard on the lower part of the "clamshell" and a thin LCD/LED computer screen on the upper portion, which is opened up to use the computer. Laptops are folded shut for transportation, and thus are suitable for mobile use. Although originally there was a distinction between laptops and notebooks, the former being bigger and heavier than the latter, as of 2014, there is often no longer any difference. Laptops are commonly used in a variety of settings, such as at work, in education, and for personal multimedia and home computer use.

Desktop computer

A desktop computer is a personal computer designed for regular use at a single location on or near a desk or table due to its size and power requirements. The most common configuration has a case that houses the power supply, motherboard (a printed circuit board with a microprocessor as the central processing unit, memory, bus, and other electronic component's), disk storage (usually one or more hard disk drives, optical disc drives, and in early models floppy disk drives); a keyboard and mouse for input; and computer monitor and printer for output. The case may be oriented horizontally and placed atop a desk or vertically and placed underneath or beside a desk.

Motherboard

A motherboard is the main printed circuit board (PCB) found in general purpose microcomputers and other expandable systems. It holds and allows communication between many of the crucial electronic components of a system, such as the central processing unit (CPU) and memory, and provides connectors for other peripherals. Unlike a backplane, a motherboard usually contains significant sub-systems such as the central processor, the chipset's input/output and memory controllers, interface connectors, and other components integrated for general purpose use.

Motherboard

Motherboard specifically refers to a PCB with expansion capability and as the name suggests, this board is often referred to as the "mother" of all components attached to it, which often include peripherals, interface cards, and daughtercards: sound cards, video cards, network cards, hard drives, or other forms of persistent storage; TV tuner cards, cards providing extra USB or FireWire slots and a variety of other custom components.

Programming Contest

Programming Contest at Green University in Bangladesh.

Prize giving for Programming Contest

Programming Contest at Green University of Bangladesh.

Signboard

Our Logo

It Home 824/1(2nd floor) east side of Monipur girls school main campus, Mirpur-2,Dhaka-1216,Bangladesh.

IT HOME Programming care

IT HOME Programming Care

Showing posts with label PROGRAMMING. Show all posts
Showing posts with label PROGRAMMING. Show all posts

Tuesday, February 21, 2017

Queue Enqueue and Dequeue in Data Structure by C Programming

Queue Enqueue and Dequeue in Data Structure by C Programming
Queue in Data Structure


Dequeue Function in Data Structure

Monday, February 6, 2017

algorithm graph element finding: degree, in degree, out degree, directed or undirected graph and edge

Algorithm Graph element finding:

Vertex, In degree, Out degree, Directed or Undirected graph and Edge

algorithm graph element finding vertex, in degree, out degree, directed, undirected, edge

Monday, January 30, 2017

Push Pop in Data Structure by C Programming

Push Pop in Data Structure by C Programming


Sunday, January 29, 2017

Circular Queue in Data Structure with C Programming


Circular Queue in Data Structure with C Programming
Circular Queue in Data Structure with C Programming

Pyramid code by C Programming


#include<stdio.h>

main()

{

  int i,j,k=0;

for(i=1;i<=5;i++){

for(j=5;j>i;j--)

printf(" ");

  for(j=1;j<=(i+k);j++)

printf("*");

/*for(j=1;j<=i;j++)

  printf("*");

for(j=2;j<=i;j++)

printf("*");*/

k++;

printf("\n");

}

}

   
     
         
    
         
     
        
       
           
           
       
   

Thursday, November 17, 2016

Function for Entire link list display

function for Entire link list display

Function for character check character exit or not

Function for character check: 

character exit or not, is character more then 18, is number, is another character?

 function for character check character exit or not,more then 18,number,another


Function id wise display in link list

Function  id wise display in link list


Function  id wise display in link list


user defined function for sorting student ID in link list

user defined function for sorting student ID in link list
sorting student ID in link list

User defined Function Check special characters exists in the input or not

/* User defined Function Check special characters exists in the input or not */

Function special_character_checker

Wednesday, November 16, 2016

Queue Enqueue and Dequeue Link List

Program for Enqueue in Link List  with c program

Queue Enqueue Dequeue in link list


// TIME: 10.53PM, Date: 16-11-16, Created by Md. Sohidul Islam Shoikat.

// Link List Queue Enqueue and Dequeue : 

//Program 1: Link List Enqueue:

#include<stdio.h>
main()
{
    int f=0,r=0,n=6;
    int q[6];
    int item;
    while(1)
    {
        printf("enter a value:  ");
        scanf("%d",&item);
        r=(r+1)%6;

        if(r==f)
        {
            r=(r-1)%6;
            printf("the queue is full.\nand r=%d",r);
        }
        else
        q[r]=item;
        printf("the input value is: %d \nand the index number is: %d\n",item,r);

    }
}

Link list insert and delete specific location in c program

Link list insert and delete specific location in c program

Link list insert & delete main function

Monday, June 27, 2016

Bubble Short in C programming

Bubble Sort in Data Structure by C Programming

Binary search in C Program

Binary search in C Programming

Binary Search with data Structure in C Programming

IT HOME Freelancing Care