Latihan Uas Kecerdasan Buatan

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Henilei
H
Henilei
Community Contributor
Quizzes Created: 11 | Total Attempts: 4,565
| Attempts: 384 | Pertanyaan: 30
Please wait...

Question 1 / 30
0 %
0/100
Score 0/100
1. Cara untuk menyajikan pengetahuan yang diperoleh ke dalam suatu skema/diagram tertentu disebut ...

Explanation

Representasi pengetahuan adalah cara untuk menyajikan pengetahuan yang diperoleh ke dalam suatu skema atau diagram tertentu. Ini melibatkan mengorganisir dan menggambarkan informasi secara visual atau simbolik agar lebih mudah dipahami dan digunakan. Dengan representasi pengetahuan, kita dapat menyederhanakan dan mengelompokkan informasi sehingga dapat dengan mudah diproses dan dianalisis.

Submit
Please wait...
About This Quiz
Latihan Uas Kecerdasan Buatan - Quiz

Personalize your quiz and earn a certificate with your name on it!
2. Input dari sel sensor dan output dari sel neuron pada ANN bernilai …

Explanation

The input from the sensor and the output from the neuron in an Artificial Neural Network (ANN) can have values between 0 and 1.

Submit
3. Gambar berikut adalah neural network dengan arsitektur ...

Explanation

The given correct answer is "Multi Layer". In neural networks, the term "Multi Layer" refers to a network architecture that consists of multiple layers of interconnected nodes or neurons. Each layer in a multi-layer neural network performs specific computations and passes the results to the next layer. This architecture allows the network to learn complex patterns and relationships in the data by extracting and combining features at different levels of abstraction. Multi-layer neural networks are commonly used in various applications, including image and speech recognition, natural language processing, and machine translation.

Submit
4. Gambar berikut adalah penyajian fungsi keanggotaan

Explanation

The given answer, "Linier," is the correct answer because the question states that the image represents the presentation of a membership function. A linear membership function is a type of membership function that has a straight line shape. It is characterized by a constant slope and represents a gradual change in membership from 0 to 1 or vice versa. Therefore, the image is showing a linear membership function.

Submit
5. Yang termasuk metode pencarian heuristic search adalah ...

Explanation

Best first search is a heuristic search method that uses an evaluation function to determine the next node to expand. It selects the node with the lowest evaluation value, which represents the most promising path towards the goal. This evaluation function is based on heuristics, which are estimates of the distance or cost to reach the goal. By using heuristics, best first search can efficiently search through a large search space and find a solution more quickly than other uninformed search methods like breadth-first search or depth-first search.

Submit
6. Sebuah kromosom dibentuk dari komponen-komponen penyusun yang disebut sebagai ...

Explanation

A chromosome is formed from the components called genes. Genes are the basic units of heredity and they contain the instructions for building and maintaining an organism. They are made up of DNA and are located on chromosomes. Therefore, the correct answer is "Gen".

Submit
7. Metode pencarian berdasarkan arah diantaranya yaitu ...

Explanation

Forward dan Backward search adalah metode pencarian berdasarkan arah. Forward search mengacu pada pencarian dari titik awal ke titik tujuan, sedangkan Backward search mengacu pada pencarian dari titik tujuan ke titik awal. Kedua metode ini digunakan dalam berbagai aplikasi seperti pemrosesan bahasa alami, kecerdasan buatan, dan pemecahan masalah.

Submit
8. Yang tidak termasuk dalam teknik representasi pengetahuan adalah ...

Explanation

The given options are all techniques for knowledge representation except for "Scan," which is not a recognized technique for representing knowledge.

Submit
9. ANN dinotasikan dengan …

Explanation

The correct answer is "Simpul dan garis." This suggests that ANN (Artificial Neural Network) is represented by nodes (or neurons) and connections (or edges) between them. Nodes represent the processing units that receive and transmit information, while connections represent the flow of data between these nodes. This representation is commonly used to illustrate the structure and functioning of neural networks.

Submit
10. Untuk penarikan kesimpulan digunakan penalaran (reasoning). Dalam sistem berbasis aturan, penarikan kesimpulan ini disebut ...

Explanation

The correct answer is "Ruler Interpreter". In a rule-based system, the process of drawing conclusions using reasoning is called a ruler interpreter.

Submit
11. Gambar berikut merupakan teknik pencarian ...

Explanation

The given answer, Depth first search, is a technique used in searching algorithms. It starts at the root node and explores as far as possible along each branch before backtracking. This means that it goes deep into the search tree before exploring other branches. It is often used in maze solving or graph traversal problems.

Submit
12. Gambar berikut adalah representasi pengetahuan dengan metode

Explanation

The given answer "Frame" is correct because a frame is a method of knowledge representation that organizes information into a structured format. Frames consist of a set of properties or attributes that describe an object or concept, and these properties can have values or relationships with other objects or concepts. Frames are commonly used in artificial intelligence and cognitive science to model and represent knowledge in a way that is easy to understand and manipulate.

Submit
13. Metode pencarian dalam sistem pakar yaitu ... dan ...

Explanation

The correct answer is Forward dan Backward Chaining. Forward chaining is a method in expert systems where the system starts with the available data and uses inference rules to derive new information until a conclusion is reached. Backward chaining, on the other hand, starts with the goal or conclusion and works backward to find the necessary data and rules to support that conclusion. These two methods are commonly used in expert systems to reason and make decisions based on the available knowledge and data.

Submit
14. Sel tiruan dalam ANN nilainya selalu …

Explanation

In artificial neural networks (ANN), the activation function of a neuron determines the output value based on the weighted sum of its inputs. In this case, the given answer "1" suggests that the activation function used in the ANN for the simulation always produces an output value of 1. This means that regardless of the input values or weights, the neuron will always be activated and produce the same output value of 1.

Submit
15. Yang termasuk metode pencarian blind search adalah ...

Explanation

Breadth first search is a blind search method because it explores all the nodes at the current level before moving on to the next level. It does not use any heuristics or information about the goal state to guide the search. Instead, it systematically expands all possible paths from the start node until it finds the goal node. This makes it a complete and optimal search algorithm for finding the shortest path in an unweighted graph or tree.

Submit
16. Dalam pernyataan "Jika IPK>=3,5 dan prestasi non akademik=ada maka mendapat beasiswa" yang merupakan consequent yaitu
=3,5 dan prestasi non akademik=ada maka mendapat beasiswa" yang merupakan consequent yaitu">

Explanation

The given statement is a conditional statement that states that if a student's GPA is greater than or equal to 3.5 and they have non-academic achievements, then they will receive a scholarship. The consequent in this statement is "mendapat beasiswa," which translates to "receive a scholarship." This means that the outcome or result of the condition being true is that the student will be awarded a scholarship.

Submit
17. Blind Search disebut juga ...

Explanation

Uninformed search refers to a search algorithm that does not have any prior knowledge or information about the problem domain. It explores the search space systematically without considering any heuristics or additional information. This type of search is also known as blind search because it does not have any insight or guidance on which paths to explore first. It simply generates and explores all possible paths until a solution is found.

Submit
18. Metode forward chaining disebut juga ...

Explanation

Forward chaining is a method in artificial intelligence and expert systems where the system starts with a set of initial facts and uses rules to derive new facts until a goal is reached. In data-driven forward chaining, the system uses available data to infer new facts and make decisions. It focuses on analyzing and processing the available data to drive the reasoning process and reach a conclusion. This approach is particularly useful when dealing with large amounts of data and complex systems.

Submit
19. Anak panah dalam ANN disebut …

Explanation

The correct answer is "Sinapsis". Sinapsis refers to the connection or junction between two neurons where information is transmitted. In the context of Artificial Neural Networks (ANN), sinapsis represents the connections between artificial neurons that allow the flow of information and the learning process to occur. Neurons are the basic units of ANN that process and transmit information, while sinapsis is the mechanism that enables communication between these neurons.

Submit
20. Sebuah solusi yang dibangkitkan dalam algoritma genetika disebut sebagai ...

Explanation

Dalam algoritma genetika, solusi yang dibangkitkan untuk memecahkan masalah disebut sebagai kromosom. Kromosom ini mengandung informasi genetik yang merepresentasikan solusi potensial. Algoritma genetika bekerja dengan menggabungkan dan memodifikasi kromosom-kromosom ini melalui operasi seperti seleksi, crossover, dan mutasi untuk mencari solusi yang optimal. Populasi terdiri dari beberapa kromosom, dan generasi mengacu pada iterasi dari algoritma genetika di mana populasi kromosom-kromosom baru dibangkitkan dan dievaluasi.

Submit
21. Dalam kecerdasan buatan, masalah biasanya disajikan dalam bentuk ...

Explanation

The correct answer is "Graf". In artificial intelligence, problems are often presented in the form of graphs. Graphs are a data structure that consists of nodes (vertices) and edges that connect these nodes. They are used to represent relationships and connections between different elements. In the context of artificial intelligence, graphs are commonly used in various algorithms and techniques such as search algorithms, neural networks, and decision trees. They provide a visual representation of complex relationships and allow for efficient problem-solving and inference.

Submit
22. Bagaimana melakukan penarikan kesimpulan dari pengetahuan yang ada disebut ...

Explanation

Inferensi adalah kemampuan untuk melakukan penarikan kesimpulan dari pengetahuan yang sudah ada. Dalam konteks ini, inferensi adalah proses menghubungkan informasi yang ada untuk mencapai suatu kesimpulan yang logis. Dengan menggunakan inferensi, seseorang dapat mengambil kesimpulan atau membuat asumsi berdasarkan pengetahuan yang dimiliki.

Submit
23. Operasi-operasi pada himpunan fuzzy yaitu ...

Explanation

The operations on fuzzy sets are union, intersection, and complement. Union combines two fuzzy sets by taking the maximum membership value at each point. Intersection combines two fuzzy sets by taking the minimum membership value at each point. Complement finds the complement of a fuzzy set by subtracting its membership values from 1. These operations are commonly used in fuzzy logic to perform calculations and make decisions based on fuzzy sets.

Submit
24. Yang tidak termasuk metode inferensi dalam fuzzy yaitu ...

Explanation

The correct answer is "Otsuka". This is because Otsuka is not a well-known method of inference in fuzzy logic. The other options, Mamdani, Larsen, Sugeno, and Tsukamoto, are all commonly used methods of inference in fuzzy logic. Therefore, Otsuka does not belong in this list of inference methods.

Submit
25. Proses pencarian pada metode Backward chaining mulai dari

Explanation

In the backward chaining method, the search process starts from the consequent. This means that the system begins by identifying the desired outcome or goal and then works backward to determine the antecedent conditions or rules that need to be satisfied in order to achieve that goal. By starting from the consequent, the system can trace the chain of reasoning back through the nodes and edges of the knowledge base to find the appropriate rules and conditions that lead to the desired outcome.

Submit
26. Ada dua macam simpul dalam ANN yaitu …

Explanation

The correct answer is "Neuron dan Input". In an Artificial Neural Network (ANN), the nodes are called neurons, and they receive inputs from other neurons or external sources. The inputs are then processed in the neurons to produce an output. Therefore, the two types of nodes in an ANN are neurons and inputs.

Submit
27. Pada algoritma genetika kumpulan kromosom-kromosom disebut ...

Explanation

In the context of genetic algorithms, a population refers to a group of individuals or solutions that are evaluated and evolved over multiple generations. In this case, the correct answer is "Populasi" because it accurately represents the collection of chromosomes in the algorithm. The population serves as the starting point for the algorithm and is subject to selection, crossover, and mutation operations to generate new individuals in subsequent generations. By iteratively evolving the population, the algorithm aims to find the optimal solution to a given problem.

Submit
28. Ada dua simpul input dalam ANN yaitu …

Explanation

The correct answer is "Sel sensor dan sel tiruan". In an Artificial Neural Network (ANN), the input nodes are responsible for receiving input signals from the external environment. In this case, "Sel sensor" refers to the sensor cells that detect and convert external stimuli into electrical signals, while "sel tiruan" refers to the artificial cells that simulate the behavior of neurons in the network. Therefore, the input nodes in an ANN can be represented by "Sel sensor dan sel tiruan".

Submit
29. Himpunan fuzzy mempunyai dua atribut yaitu ...

Explanation

The correct answer is "Linguistik dan Numeris." Fuzzy sets are characterized by linguistic terms that describe the membership of an element in a set. These linguistic terms are usually represented by numerical values that indicate the degree of membership. Therefore, fuzzy sets have attributes that are both linguistic and numerical, as they involve the use of linguistic terms and numerical values to describe and represent membership.

Submit
30. Perceptron menggunakan aktivasi …

Explanation

Perceptron menggunakan aktivasi threshold karena threshold function digunakan untuk mengubah output perceptron menjadi nilai biner, yaitu 0 atau 1. Jika hasil penjumlahan dari input dan bobot melebihi nilai threshold, maka output akan menjadi 1, dan jika tidak, output akan menjadi 0. Dengan menggunakan fungsi threshold, perceptron dapat melakukan klasifikasi biner dengan mengambil keputusan berdasarkan apakah hasil penjumlahan input dan bobot melebihi nilai threshold atau tidak.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 21, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Jun 04, 2017
    Quiz Created by
    Henilei
Cancel
  • All
    All (30)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Cara untuk menyajikan pengetahuan yang diperoleh ke dalam suatu...
Input dari sel sensor dan output dari sel neuron pada ANN bernilai...
Gambar berikut adalah neural network dengan arsitektur ...
Gambar berikut adalah penyajian fungsi keanggotaan
Yang termasuk metode pencarian heuristic search adalah ...
Sebuah kromosom dibentuk dari komponen-komponen penyusun yang disebut...
Metode pencarian berdasarkan arah diantaranya yaitu ...
Yang tidak termasuk dalam teknik representasi pengetahuan adalah ...
ANN dinotasikan dengan …
Untuk penarikan kesimpulan digunakan penalaran (reasoning). Dalam...
Gambar berikut merupakan teknik pencarian ...
Gambar berikut adalah representasi pengetahuan dengan metode
Metode pencarian dalam sistem pakar yaitu ... dan ...
Sel tiruan dalam ANN nilainya selalu …
Yang termasuk metode pencarian blind search adalah ...
=3,5 dan prestasi non akademik=ada maka mendapat beasiswa" yang merupakan consequent yaitu" type="button" name="16" value="16" > =3,5 dan prestasi non akademik=ada maka mendapat beasiswa" yang merupakan consequent yaitu" > Dalam pernyataan "Jika IPK>=3,5 dan prestasi non akademik=ada maka...
Blind Search disebut juga ...
Metode forward chaining disebut juga ...
Anak panah dalam ANN disebut …
Sebuah solusi yang dibangkitkan dalam algoritma genetika disebut...
Dalam kecerdasan buatan, masalah biasanya disajikan dalam bentuk ...
Bagaimana melakukan penarikan kesimpulan dari pengetahuan yang ada...
Operasi-operasi pada himpunan fuzzy yaitu ...
Yang tidak termasuk metode inferensi dalam fuzzy yaitu ...
Proses pencarian pada metode Backward chaining mulai dari
Ada dua macam simpul dalam ANN yaitu …
Pada algoritma genetika kumpulan kromosom-kromosom disebut ...
Ada dua simpul input dalam ANN yaitu …
Himpunan fuzzy mempunyai dua atribut yaitu ...
Perceptron menggunakan aktivasi …
Alert!

Advertisement