Posts

Showing posts from June, 2020

Crafting Captivating Paragraphs: Understanding, Structure, and Types

Assalamu’alaikum warahmatullahi wabarakatuh, In this occasion, I will share a little material about paragraphs. Hopefully, it will be beneficial :) Understanding Paragraphs A paragraph, often referred to as an 'alinea,' is a part of a discourse consisting of a set of sentences that refer to one topic (Semi, 1990:55; Arifin, 1993:113; Djajasudarma, 1994:64; Finoza, 2004:149). Paragraph Structure A paragraph consists of a topic sentence and several supporting sentences. The topic sentence contains the main idea or main topic of the paragraph, while the supporting sentences explain or support the main idea of the paragraph. The sentences in the paragraph must be related to each other (Arifin, 1993:121; Finoza, 2004:151). Types of Paragraphs A. Types of Paragraphs According to the Position of the Topic Sentence 1. Deductive Paragraph A deductive paragraph presents the main issue at the beginning of the paragraph. 2. Inductive Paragraph An inductive paragraph presents the main issue

Contoh Program C++ Mata Pelajaran Kimia ( menetukan sifat reaksi dengan deret volta )

Image
Assalamu’alaikum warahmatullahi wabarakatuh, Kali ini saya akan mambagikan contoh dari penerapan C++ di mata pelajaran kimia. Dimana materinya yaitu sel volta. Berbeda dengan postingan sebelumnya kali ini akan membahas tentang mencari sifat reaksi dengan menggunakan deret volta. Kode Pogram #include<iostream>    using   namespace  std;      int  main(){   int  n,m,p;       string senyawa[]= { "Li" , "K" , "Ba" , "Ca" , "Na" , "Mg" , "Al" , "Mn" , "H2O" , "Zn" , "Cr" , "Fe" , "Cd" , "Co" , "Ni" , "Sn" , "Pb" , "H" , "Cu" , "Hg" , "Ag" , "Pt" , "Au" };           for ( int  i=0;i<23;i++){       cout<<i<< " = " <<senyawa[i]<<endl;          }          cout<< "Senyawa Reduksi" <<endl;       cout<<

Contoh Program C++ Mata Pelajaran Kimia ( nilai sel volta dan sifat reaksi )

Image
Assalamu’alaikum warahmatullahi wabarakatuh, Kali ini saya akan mambagikan contoh dari penerapan C++ di mata pelajaran kimia. Dimana materinya yaitu sel volta. Disini program akan menghasilkan nilai E reaksi dan menentukan sifat reaksi yang terjadi. Semoga bermanfaat :) Kode Program #include<iostream>    using   namespace  std;      int  main(){              cout << "Menentukan Nilai dan Sifat Reaksi dari Sel Volta " <<endl;       cout<< "**************************************************" <<endl;                   float  a,b;          cout <<  "Masukan nilai katoda: " ;       cin>> a;       cout <<  "Masukan nilai anoda:" ;       cin >>b;       cout<< "Nilai sel volta = " <<a-b<<endl;            float  c;       c=a-b;       cout<< "Sifat Reaksi : " ;        if (c==0){           cout<< "Reaksi dalam keadaan setimbang" ;       }