Contact online

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Monday, March 25, 2019

Cara Menyembunyikan Taskbar Windows 7

Bangiz - Taskbar pada komputer Windows berfungsi untuk menampilkan beragam aplikasi yang sedang terbuka. Hal ini akan memudahkan saat kita akan berpindah dari aplikasi satu ke aplikasi lainnya. Dengan adanya taskbar, kita bisa membuka aplikasi lebih dari satu sekaligus.

Salah satu fitur pada Taskbar di Windows, mulai dari Windows 7, 8, dan 10 ialah adanya fitur auto-hide the taskbar. Khususnya buat contoh saat ini, admin menggunakan Windows 7, tetapi untuk versi selanjutnya sama saja.

Cara Menampilkan Taskbar Windows 7

Secara default, taskbar akan berada pada mode tampil. Posisi taskbar bisa dipindahkan dengan cara drag (klik dan tahan lalu seret) pada posisi yang diinginkan. Misalnya ke bagian kiri, kanan, atas, maupun bawah. Supaya dapat dipindahkan taskbar dalam mode tidak terkunci (unlock).
  1. Klik kanan Taskbar, pilih Properties
  2. Pada tab Taskbar, pilih Taskbar appearance.
  3. Bersihkan ceklis kotak pada Auto-hide the taskbar.
  4. Klik OK.
Jika ingin menggunakan cara di atas, pastikan sebelumnya Anda menyembunyikan dahulu Taskbar. Caranya berada di bawah ini:
auto hide taskbar
auto-hide taskbar
Cara Menyembunyikan Taskbar Windows 7
  1. Klik kanan Taskbar, pilih Properties
  2. Pada Tab Taskbar pilih Taskbar appearance.
  3. Ceklis kotak Auto-hide the taskbar.
  4. Klik OK.
Untuk mengakses ke menu taskbar silahkan arahkan pointer mouse pada posisi taskbar terakhir disembunyikan. Baik bagian bawah, atas, kanan, atau kiri.

Itulah tips kali ini tentang bagaimana cara menyembunyikan atau menampilkan taskbar pada Windows. Bisa dikatakan juga sebagai cara membuat auto-hide taskbar di Windows 7/8/10.

Nantikan tips menarik lainnya dari kami, untuk berbagi artikel silahkan gunakan tombol sosial media di bawah.

Wednesday, March 20, 2019

Cara Merubah Gambar Folder di Windows

Bangiz - Folder pada laptop maupun komputer berguna untuk menyimpan sejumlah file baik itu dokumen, foto, maupun video. Dengan adanya folder, kita dapat dengan mudah mengelompokkan dokumen berdasarkan kriteria atau topik tertentu.

Untuk mempercantik tampilan folder, Anda bisa mengkustomisasi dengan gambar atau icon lain, sehingga lebih relevan dengan isinya. Misalnya untuk folder video bisa menggunakan icon kamera, folder foto memakai icon gambar, dan lainnya.
Icon folder
Icon folder
Jika tertarik untuk merubah icon yang biasanya hanya berupa dokumen berwarna kuning dengan icon lainnya, ikuti caranya berikut ini:

1. Klik kanan pada  Folder yang akan diganti.

2. Pilih Properties (bagian paling bawah).
Properties
Properties
3. Pada jendela Properties pilih Customize.

4. Pilih Change Icon...
Change Icon
Change Icon
5. Di jendela munculan baru, secara default akan menampilkan icon-icon dari SystemRoot. Anda tinggal pilih icon yang sesuai lalu klik OK. Jika Anda ingin menggunakan icon dari aplikasi, pilih Browse... lalu pilih Computer > Local disk (C) > Program File > Pilih gambar atau icon aplikasi > klik OK, lalu klik Apply atau langsung  OK lagi.

Itulah cara merubah icon folder pada laptop atau komputer Anda, pastinya mudah untuk dipahami dan dipraktekkan. Jika mengalami kesulitan silahkan tambahkan komentar Anda. Jangan lupa ikuti kami untuk tips menarik lainnya.

Thursday, March 7, 2019

Use of logical operators in c language

DKDE || blogpemula2019.blogspot.com || okysetyakelana.blogspot.com
in this article, I share with you little code of C programming that how logical operators work.

this is an example of Marksheet where I use logical operators.


Use of logical operators in c language

#include<conio.h>
#include<stdio.h>
main()
{
      //Use of logical operator &&
   
   
      int obt_matric,obt_inter,max_matric,max_inter;
      float per_matric,per_inter;
   
      printf("Enter matriculation obtained:");scanf("%d",&obt_matric);
      printf("Enter matriculation maximum:");scanf("%d",&max_matric);
      printf("Enter intermediate obtained:");scanf("%d",&obt_inter);
      printf("Enter intermediate maximum:"); scanf("%d",&max_inter);
   
      per_matric = obt_matric*100/max_matric;
      per_inter = obt_inter*100/max_inter;
   
      if(per_matric>=80 && per_inter>=80)
      printf("Congratulation! you got double top A-1 Grade in matric And Inter");
      else
      printf("You fail to got double top"); 
   
   
      getch();} 




Simple Grading System in C programming Without Loop

DKDE || blogpemula2019.blogspot.com || okysetyakelana.blogspot.com
The grading system is essential for students because everyone student wants that who get A grade A+ Grade in an institution or College and University.

Basically today I tell you a simple program which written on C language for the Grading system nested condition flow.

Simple Grading System in C programming Without Loop


there are so many ways to make a grading system but I'm sharing with you a very basic and very simple method Code.

so let's start.

#include<conio.h>
#include<stdio.h>
main()
{
      //Grading system - Nested conditional flow
   
   
      int obt,max;
      float per;
      printf("Grading System");
      printf("\n***************\n\n");
   
   
      printf("Enter obtained marks:"); scanf("%d",&obt);
      printf("Enter max marks:"); scanf("%d",&max);
      per = obt * 100 / max;
   
      if(per>=80)
      printf("Congrats! you got A-1 Grade");
      else if(per>=70)
      printf("Good, you got A Grade");
      else if(per>=60)
      printf("You secure B-Grade");
      else
      printf("You are fail :-( you need to work hard more");   
   
      getch();}

I hope you understood the above code.

Tuesday, March 5, 2019

Basic C Language Tutorial for beginners

I'm telling you about Some Basic Programming Languages in Computer Science Feild. So, guys, there are many Basic Programming Languages to begin to start your career in Web development.

Today I teach you C Language. according to www.tiobe.com C Language is the second number of Top Programming Languages in the Wolrd.

There are some basic programming languages.


  • Fortran
  • COBOL
  • Pascal programming language
  • C++
  • Java
  • Visual Basic
You may also learn basic from the above-mentioned Languages.



Why I  Use C Langauge Programming for Basic?

This is true and no doubt that is the second top in the list and this is so simple and easier than other languages by my opinion. this is also can easily work on a simple note pad.

How it is Work.

it's work simply and also need an interpreter like (Dev C ++ ) because you should practice on the compiler. So you can improve your programming via practice.

so let us Start Programming.

1. Simple Program. Hello World 


#include<conio.h>
#include<stdio.h>
main()
{
      printf("Hello World");
      
      getch();}

this is Simple Program where we print hello world.

2. Size of Function 


#include<conio.h>
#include<stdio.h>
main()
{
   
      printf("Integer occupies %d bytes",sizeof(int));
      printf("\n");
      printf("float occupies %d bytes",sizeof(float));
      printf("\n");
      printf("char occupies %d bytes",sizeof(char));
   
   
      getch();}

3. Arithmetic Operator 

How Arithmetic Operators Work in below Code.


#include<conio.h>
#include<stdio.h>
main()
{
      //implementation of arithmatic operators
      
      int x,y;
      
      printf("Enter first value:");scanf("%d",&x);
      printf("Enter second value:");scanf("%d",&y);
      
      printf("\n\n");
      printf("\nSum = %d",x+y);
      printf("\nDiff = %d",x-y);
      printf("\nProduct = %d",x*y);
      printf("\nDivision = %d",x/y);
      
      
      getch();}

4. Format Specifier in print function

#include<conio.h>
#include<stdio.h>
main()
{
      //use of %d - Format Specifier in printf function
   
      int x,y;
   
      printf("Enter first value:");scanf("%d",&x);
      printf("Enter second value:");scanf("%d",&y);
   
      printf("\n\n");
      printf("\n %d + %d = %d",x,y,x+y);
      printf("\n %d - %d = %d",x,y,x-y);
      printf("\n %d * %d = %d",x,y,x*y);
      printf("\n %d / %d = %d",x,y,x/y);
   
   
      getch();} 

5. Odd-Even identification, use of modulus % operator with an if-else structure 


#include<conio.h>
#include<stdio.h>
main()
{
      //Odd - Even identification, use of modulus % operator with if-else structure
   
      int num;
   
      printf("Enter Number:");scanf("%d",&num);
   
      if(num%2 == 0)
      printf("%d is even number",num);
      else
      printf("%d is odd number",num);

   
   
      getch();}

Search This Blog