Skip to main content

Penilaian Tengah Semester II - Kurikulum 2013

Mata Pelajaran : Bahasa Indonesia Kelas VII

PILIHAN GANDA

1. Perhatikan puisi rakyat berikut ini dengan seksama!

Pasir dan ombak di bawah langit biru
Semua ada di Pantai Goa Cemara
Patuhilah selalu nasehat ibumu
Agar hidupmu tidak sengsara

Dilihat dari rimanya, bait puisi tersebut adalah ...
A. syair
B. seloka
C. pantun
D. gurindam  

2. Perhatikan puisi rakyat berikut dengan seksama!

Kurang pikir kurang siasat
Tentu dirimu akan tersesat

Dilihat dari jumlah baris dalam satu baitnya, puisi tersebut adalah ...
A. syair
B. seloka
C. pantun
D. gurindam  


3. Perhatikan puisi rakyat berikut dengan seksama!

Pada zaman dahulu kala
Tersebutlah sebuah cerita
Sebuah negeri yang aman damai sentosa
Dipimpin sang raja rupawan nan bijaksana
 
Dilihat dari jumlah baris dalam satu baitnya, puisi tersebut adalah ...
A. syair
B. seloka
C. pantun
D. gurindam  

4. Perhatikan gurindam berikut dengan seksama!

Apabila hidup selalu berbuat baik
Tanda dirinya berhati cantik

Jika hendak hidup bahagia
Jangan pernah melakukan perbuatan sia-sia
 
Kalimat larangan dalam gurindam tersebut adalah ...
A. Jika hendak hidup bahagia
B. Tanda dirinya berhati cantik
C. Apabila hidup selalu berbuat baik
D. Jangan pernah melakukan perbuatan sia-sia  



Comments

Popular posts from this blog

Menggenerate nomor id

<?php //config $database = "dopo"; $tabel = "po"; $kolom_generate ="id"; $kolom_referensi = "id"; /* Database connection start */ $servername = "localhost"; $username = "root"; $password = ""; $dbname = $database; $mysqli = mysqli_connect($servername, $username, $password, $dbname) or die("Connection failed: " . mysqli_connect_error()); $q1 = "select * from $tabel order by $kolom_referensi DESC"; /* Database connection end */ echo '<table>'; // connect to the database // number of results to show per page $per_page = 10000; // figure out the total pages in the database if ($result = $mysqli->query($q1)) { if ($result->num_rows != 0) { $total_results = $result->num_rows; // ceil() returns the next highest integer value by rounding up value if necessary $total_pages = ceil($total_results / $per_page); // check if the 'page' variab...

Hack File .xlsb

For first you must create a backup copy of your Workbook!!! Then you have to rename the XLSB file with ZIP extension. Test.XLSB => Test.ZIP             Opening your ZIP file using a compression software (e.g. WinRar) I can see the content of the file, structured in folders Inside the folder xl you can find a binary file named vbaProject.bin. Extract it on your desktop and edit it using a text editor. In my case I used Notepad++. Using the Find function of your editor, you must search the text DPB And replace the DPB string with DPx Then save the vbaProject.bin and replace this file inside the .ZIP File, renaming then .ZIP file in XLSB. Reopening the XLSB file using Excel, you will get an error message: you have to answer Yes to this error message. Then  Save , Close and Reopen your XLSB file. Now, if you go to VBA Editor (ALT + F11), you ca...

Membuat Codeigniter PDF di CPANEL

1. Download FPDF dan copykan di folder application/thirdparty/pdf/ 2. Buat file Fpdf_gen.php di libraries. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Fpdf_gen { public function __construct() {  require_once APPPATH.'third_party/fpdf/fpdf-1.8.php'; define('FPDF_FONTPATH', APPPATH.'third_party/fpdf/font/'); $pdf = new FPDF(); $pdf->AddPage(); $CI =& get_instance(); $CI->fpdf = $pdf; } public function Footer() { $this->fpdf->SetY(-15); $this->fpdf->SetFont('Arial','I',8); $this->fpdf->SetTextColor(128); $this->fpdf->Cell(0,10,'Page ',0,0,'C'); } } 3. Buat file pdf.php di controller <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); defined('BASEPATH') OR exit('No direct script access allowed'); class Pdf extends CI_Controller {   public f...