Senin, 28 Oktober 2024

Number Line In Latex 3

  1. type this following latex code in Latex editor for drawing a number line:
    % !TEX TS-program = pdflatex
    % !TEX encoding = UTF-8 Unicode
    %Plotting inequalities on a number line
    %* Using Relative Coordinates
    \documentclass[12pt]{article}
    \usepackage[left=0.1cm,right=0.1cm,top=0.5cm,bottom=0.5cm]{geometry}
    \usepackage{tikz}
    \usetikzlibrary{arrows}
    \begin{document}
    \begin{tikzpicture}
    %draw axes line
    \draw[latex-,thick] (-1,0) -- (9,0) ;
    \draw[-latex,thick] (-1,0) -- (9,0) ;

    %edit here for vertical lines
    \foreach \x in {0,1,2,3,4,5,6,7,8} \draw[shift={(\x,0)},color=black] (0pt,3pt) -- (0pt,-3pt);

    %edit here for number labels
    \foreach \x in {0,1,2,3,4,5,6,7,8} \draw[shift={(\x,0)},color=black] (0pt,0pt) -- (0pt,-3pt) node[below] {$\mathbf{\x}$};

    %draw a node in number
    \draw[o-*] (2.9223,0) -- (5.075,0);
    %edit to sharpen the intersection line of axes
    \draw[ultra thick] (2.98,0) -- (5.02,0);

    %draw x <= 5 line
    \draw [red, thick, -stealth] (5,0) -- ++(0,0.6) -- ++(-5,0);
    %draw x >= 3 line
    \draw [blue, thick, -stealth] (3,0) -- ++(0,0.4) -- ++( 4,0);

    \end{tikzpicture}
    \end{document}

  2. Save file as plotInequal1a.tex.
  3. Typeset or Build.

Output

Number Line In Latex 3


How To Check Sqlite Version

Requirement: SQLite 3
  1. You must installed sqlite.
  2. Open Command Prompt, to learn How To Launch Command Prompt >
  3. Go to sqlite path, in this example D:\portable\sqlite\
  4. type sqlite3, press Enter on keyboard.
  5. type SELECT sqlite_version(); Built-In Scalar SQL Function then press Enter on keyboard.

Alternative step

  1. You must installed sqlite.
  2. Open Command Prompt, to learn How To Launch Command Prompt >
  3. Go to sqlite path, in this example D:\portable\sqlite\
  4. type sqlite3 --version, press Enter on keyboard.

Notes

  • Type only font in monospace in command prompt, e.g. sqlite3.
  • To see the more clear screenshot, click on the picture.

Related Post

Mathematics Set Operation In Latex 7

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Difference Set picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-7.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Difference Set Picture
%A\verb!$\setminus$!B,
%is the set of all values of A that are not members of B
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A$\mathbf{\setminus}$B or A difference B};

%draw Set A
\filldraw[fill=white!60!white,pattern=dots, draw=black,thick] (0.3,-0.10) circle[radius=1.3] node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw[fill=white,draw=black,thick] (2,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

%Define the A difference B
\begin{scope}
\clip (2,-0.10) circle[radius=1.3];
%\clip (0.3,-0.10) circle[radius=1.3];
\filldraw[fill=white!70,draw=black] (0.3,-0.10) circle[radius=1.3];
\end{scope}

%draw border of Set B
\draw[draw=black,thick] (2,-0.10) circle [radius=1.3];

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-7.tex

Output






<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Mathematics Set Operation In Latex 6

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Disjoint Set picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-6.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Disjoint Set picture
%A and B are disjoint set
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A and B are disjoint set};

%draw Set A
\filldraw[fill=white!60!white, draw=black,thick] (-0.5,-0.10) circle[radius=1.3] node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw[black,thick] (2.5,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}
\end{document}

Save file as diaVenns1-6.tex

Output



Mathematics Set Operation In Latex 5

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Subset picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-5.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%Subset picture
%B is proper subset of A
%B\verb!$\subset$!A
\begin{tikzpicture}
 % Universal set U
 \draw[fill=white!20, even odd rule] (-2, -2) rectangle (4, 2);
 % Set B
 \draw[fill=white!30,thick] (0,0) circle (1.5cm);
 \node[font=\bfseries] at (0.99,-0.15) {$\mathbf{B}$};
 % Set A (subset of B)
 \draw[fill=white!30] (-0.3,0) circle (1cm);
 \node at (-0.5,0) {$\mathbf{A}$};
 % title Labeling
 \node[font=\bfseries] at (2.5,1.5) {$\mathbf{A \subset B}$};
 \node[font=\bfseries] at (2.5,1) {$\mathbf{\scriptstyle{A\ subset\ of\ B}}$};
 % Draw the universal set label
 \node[font=\bfseries] at (3.5,-1.7) {U};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-5.tex

Output



Mathematics Set Operation In Latex 4

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

A intersect B picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-4.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

% A intersect B picture
% Both A and B, A intersect B
%A\verb!$\cap$!B,
%is the set of all values that are members of both A and B.
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2) (0:2cm) circle [radius=1.3];

% title
\node[font=\bfseries] at(1,1.5) {A$\mathbf{\cap}$B or A intersect B};
%draw Set A
\filldraw[fill=white!60!white, draw=black,thick] (0.3,-0.10) circle[radius=1.3] node[above,fill=white!30] {$A$};
%draw Set B
\draw[black,thick] (2,-0.10) circle [radius=1.3] node[above,fill=white!20] {$\mathbf{B}$};

%Define the intersect of A and B
\begin{scope}
\clip (2,-0.10) circle[radius=1.3];
%\clip (0.3,-0.10) circle[radius=1.3];
\filldraw[fill=green!70,draw=black,pattern=dots] (0.3,-0.10) circle[radius=1.3];
\end{scope}

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-4.tex

Output



Mathematics Set Operation In Latex 3

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

A union B picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-3.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

% A union B picture
%Either A or B, A union B
%A \verb!$\cup$! B,
%is the set of all values that are a member of A, or B, or both.
\begin{tikzpicture}
% Universal set U
\fill[white!35!white, even odd rule]
  (-2,-2) rectangle (4,2);
  
% Union text label
\node[black!100!black,font=\bfseries\large] at (0.9,1.8) {A$\mathbf{\cup}$ B or A union B};

% Set A
\node [circle, draw=black, pattern=dots, minimum size=2.6cm] (A) {};
% Set B
\node [circle, draw=black, pattern=dots,  minimum size=2.6cm] (B) at (1.8,0) {};

% Set text label
\node[left,black,fill=white,font=\Large] at (A.center){$A$};
\node[right,black,fill=white,font=\Large] at (B.center){$B$};

% Circles outline
\draw[black,thick] (0,0) circle(1.3cm);
\draw[black,thick] (1.8,0) circle(1.3cm);

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-3.tex

Mathematics Set Operation In Latex 2

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Complement Set A picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-2.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%Complement A picture
%A\verb!$\prime$! the complement of A
\begin{tikzpicture}
% Universal set U
\draw[fill=blue!20, even odd rule, pattern=dots] (-2, -2) rectangle (4, 2);
% title
\node[font=\bfseries,fill=white!20] at(1,1.5) {A$^\prime$ the complement of A};
%draw Set A
\draw[fill=white!30,thick] (0.3,-0.10) circle(1.3)  node[above,fill=white!30] {$A$};
%draw Set B
\draw[thick] (2.,-0.10) circle (1.3) node[above,fill=white!20] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries,fill=white!30] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}
Save file as diaVenn1-2.tex

Output






<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Mathematics Set Operation In Latex 1

Mathematics Set Operation in this post series consist of:
  • Set A picture
  • Complement Set A picture
  • A union B picture
  • A intersect B picture
  • Subset picture
  • Disjoint Set picture
  • Difference Set picture

Set A picture

Type this following Latex source code in the Latex editor:
% !TEX TS-program=pdflatex
% !TEX encoding=UTF-8 Unicode
%
% File name: diaVenns1-1.tex
% Description:
% The Set operations in diagram venn
%
\documentclass[12pt,a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{0.25pt}
\begin{document}
%%%title page
\centering \begin{tikzpicture}
\node[font=\bfseries\Huge] at(0,0) {$Set$};
\node[font=\bfseries\Huge] at(0,-1) {$Operations$};
 \end{tikzpicture}

%%%Set A picture
\begin{tikzpicture}
% Universal set U
\draw[fill=white, even odd rule] (-2, -2) rectangle (4, 2);
% title
\node[font=\bfseries\large] at(1,1.5) {Set A};
%draw Set A
\draw[fill=blue!30,pattern=dots,thick] (0.3,-0.10) circle(1.3)  node[above,fill=white!30] {$\mathbf{A}$};
%draw Set B
\draw (2,-0.10) circle (1.3) node[above] {$\mathbf{B}$};

% Draw the Universal Label
\node[font=\bfseries] at (3.5,-1.7) {\textbf{U}};
\end{tikzpicture}

\end{document}

Save file as diaVenns1-1.tex

Output




<< Back to Class 11 Math

type in latex, write in latex, draw latex, diagram venn, mathematical equation, venn diagram, math diagram

Related Post

Jumat, 25 Oktober 2024

Number Line In Latex 2

  1. type this following latex code in Latex editor for drawing a number line:
% !TEX TS-program = pdflatex
% !TEX encoding = UTF-8 Unicode
\documentclass[tikz,margin=0.25cm]{standalone}
\usepackage{tikz}
\usepackage{amsmath}
\usetikzlibrary{arrows}

% Number line in Latex
\begin{document}
\begin{tikzpicture}

% edit here for the x-axis horizontal line
\draw[latex-latex,ultra thick](-6,0) -- (6,0);

% edit here for x-axes tick/node/point/dot lines
\foreach \x in {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5} 
\draw[shift={(\x,0)},color=black] (0pt, 3pt) -- (0pt, -3pt);

% edit here for the axes numbers below the x-axes horizontal line
\foreach \x in {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5}
\draw[shift={(\x,0)}, color=black] (0pt, 0pt) -- (0pt, -3pt) node[below] {$\textbf{\x}$};

% edit here for the axes symbol/numbers above the x-axes horizontal line
\draw[shift={(-1.7,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\dfrac{\textbf{-3}}{\textbf{2}}$};

\draw[shift={(0.8,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\dfrac{\textbf{3}}{\textbf{4}}$};

\draw[shift={(1.3,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\sqrt{\mathbf{2}}$};

\draw[shift={(3.1,0)}, color=black] (0pt, 0pt) -- (0pt, 3pt) node[above] {$\pmb{\pi}$};
\end{tikzpicture}
\end{document}

  1. Save file as numberLine2.tex.

Output

number line in latex 2
number line in latex 2

Notes:

  • To see the more clear screenshot, click on the picture.




Related Post

Rabu, 23 Oktober 2024

Jenis Kata Dalam Bahasa Indonesia

Jenis Kata / Kelas Kata dalam bahasa Indonesia adalah:

  1. Kata benda (nomina)
    1. Berdasarkan Acuan
      1. Nomina konkret (contoh: meja, kursi, mawar, kucing) dengan nomina abstrak (contoh: masalah, kesalahan, kejujuran, kebenaran). 
      2. Nomina umum atau nama jenis (pasar, hewan) dengan nomina nama diri (menyebut nama spesifik, contoh: Amir, Ita, kelinci). 
      3. Nomina terbilang (contoh: guru, pensil) dengan nomina tak terbilang (contoh: air, rasa hormat, rasa cinta)
    2. Berdasarkan Bentuk
      1. Nomina dasar
        Nomina dasar adalah kata-kata yang yang secara konkret menunjukkan identitas suatu benda, sehingga kata ini sudah tidak bisa lagi diuraikan ke bentuk lainnya. Contohnya meja, kursi. 
      2. Nomina turunan
        Nomina turunan adalah nomina yang mengalami proses morfologis, misalnya sudah mendapat imbuhan. Contohnya seperti kata masakan, anaknya, kewajiban. 
  2. Kata bilangan (numeralia)
    1. Kata bilangan pokok yang menjawab pertanyaan, contohnya pada kata “berapa”.
    2. Kata bilangan tingkat yang menjawab pertanyaan, contohnya kata “keberapa”. 
  3. Kata depan (preposisi)
  4. Kata ganti (pronomina)
    1. Kata ganti persona (contohnya: saya, aku, dll), 
    2. Kata ganti tanya (contoh: apa, siapa, bagaimana), 
    3. Kata ganti penunjuk (contoh: ini, disini, begini). 
  5. Kata hubung (konjungsi)
    1. Konjungsi tunggal memiliki bentuk satu kata saja, misalnya pada kata “untuk”.
    2. Konjungsi gabungan adalah konjungsi yang terdiri dari dua kata. Misalnya pada kata “oleh karena”. 
  6. Kata kerja (verba)
    1. Kata kerja dasar adalah verba yang berupa kata dasar sehingga tidak mendapat imbuhan. Contohnya kata makan, minum, lari, dll. 
    2. Kata kerja turunan adalah kata kerja yang sudah mengalami perubahan bentuk, misalnya sudah mendapat imbuhan. Contohnya adalah kata memakan, memasak, berlari, meminum, diminum. 
  7. Kata keterangan (adverbia)
    1. Berdasarkan makna, yaitu :
      1. kata keterangan kualitatif, 
      2. kata keterangan kuantitatif, 
      3. kata keterangan limitatif, 
      4. kata keterangan frekuentatif, 
      5. kata keterangan kewaktuan, 
      6. kata keterangan kecaraan atau cara, 
      7. kata keterangan kontrastif, 
      8. kata keterangan keniscayaan.
    2. Berdasarkan bentukya, 
      1. Kata keterangan tunggal contohnya kata: akan, sebaiknya, dll.
      2. Kata keterangan gabungan seperti: hampir saja, bukan….saja. 
  8. Kata sandang (artikel/artikula)
  9. Kata seru 
  10. Kata sifat (adjektiva)
    1. Berdasarkan Makna
      1. Kata sifat bertaraf (penunjuk kualitas, misalnya kata ringan)
        1. Kata sifat menerangkan kualitas atau intensitas, misalnya bersih, rapi, nyaman.
      2. Kata sifat tak bertaraf (penunjuk keanggotaan dalam golongan, misalnya kata buntu).
    2. Berdasarkan Bentuk
      1. Kata sifat dasar, Contohnya pada kata “megah”.
      2. Kata sifat turunan. Contohnya pada kata dasar ketika ada imbuhan menjadi “termegah” maka menjadi kata sifat turunan.
  11. Partikel Penegas.
    yaitu kata yang berfungsi untuk menegakkan kata yang mendahuluinya. Dalam TBBBI terdapat 4 partikel penegas, yakni pun, -kah, -lah, dan -tah. 
tata bahasa, pelajaran bahasa indonesia

Related Post

Hello World In Java

  1. Type this following Java source code in your IDE:
    class MyFirstJavaProgram {
      public static void main(String args[]) {
        // Prints "Hello, World" in the terminal window
        System.out.println("Hello World");
      }
    }
    //As main method is static no need to create a object for class MyFirstJavaProgram
  2. Save as MyFirstJavaProgram.java.
  3. Compile and run Java source code from above.

Related Post


Change Directory In Command Prompt

Set current directory to the root directory of the current drive

  1. type this in Command Prompt
    cd \
  2. press Enter

Set current directory to "Windows" relative to current directory of the current drive

  1. type this in Command Prompt
    cd Windows
  2. press Enter

Set current directory absolutely to "\Windows\System" of the current drive

  1. type this in Command Prompt
    cd \Windows\System
  2. press Enter

Set current directory absolutely. Enclosed with double quotes if pathname contains blank.

  1. type this in Command Prompt
    cd "\Program Files\Microsoft Office"
  2. press Enter

Notes:

Alternatively, you can type chdir. This command does the exact same thing as "cd."

Bibliography

https://microsoft.com/
https://www.ibm.com/
https://www.wikihow.com/
https://www3.ntu.edu.sg/

Related Post

Selasa, 22 Oktober 2024

HTML Alternate Text

Type this following HTML code in Web editor:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>

<body>
<img src="/my-image.jpg" alt="This is the alt text for my image">
</body>
</html>


HTML ALT Text Notes:

  • The ALT text adds a text description to an image on a Web page, and should be used for all images, graphical bullets, and graphical horizontal rules.
  • The ALT text is accessed by screen reader (e.g. Jaws, Microsoft Narrator, Apple VoiceOver, etc.) users to provide them with a text equivalent of images.
  • In browsers such as Firefox, the ALT text is displayed when an image is fail to load.

Bibliography

https://www.psu.edu/ ( university )
https://www.perkins.org/ ( school )
https://www.freecodecamp.org/

Related Post

Lyx Menu

File

 New

 New from Template

 Open

 Open Recent

 Close

 Save

 Save As

 Import

 Export

 New Window

 Close Window

 Exit

Edit

 Undo

 Redo

 Cut

 Copy

 Paste

 Select All

 Find & Replace ( Quick )

 Find & Replace ( Advanced )

 Move Paragraph Up

 Move Paragraph Down

 Paragraph Settings

Related Post

Senin, 21 Oktober 2024

Case Tools

Components of CASE Tools

  • Central Repository CASE Tools: A central repository is required by the tools to serve as a common source of integrated and consistent information. The central place of storage consisting of specifications of product, documents requirement, diagrams and reports and information about the management is a central repository.  The central repository also acts as a data dictionary.
  • Upper CASE Tools: Planning, analysis, and designing of different stages of the software development life cycle can be performed using upper case.
  • Lower CASE Tools: Implementation, testing, and maintenance can be performed using lower case.
  • Integrated: All the stages of the software development life cycle right from the gathering of requirements for testing and documentation can be performed using integrated tools.
Top 13 Types of CASE Tools
  1. Diagram Tools:
    The components of the system, data flow, control flow and the structure of the system can be represented in graphical form using diagram tools.
  2. Process Modeling:
    The software process model can be created using process modelling tools for software development. The managers can choose a process model using process modelling tools or make modifications depending upon the software product requirements.
  3. Project Management
    Planning of the project, estimation of cost and efforts, scheduling of project and organizing of resources can be done using project management tools.
  4. Documentation Tools
    Before the beginning of software process, documentation of the software project must begin. This documentation must cover the all the software development life cycle phases and the completion of the software development phase as well. The documents are generated by the documentation tools for both technical and end users. The in-house professionals in the development team who refer the manual maintained for the system, manual maintained for reference, manual for training, manuals for installation etc. is described in the technical users documents. The functioning of the system and how system works is described in the end user documents.
  5. Analysis
    Requirements gathering, inconsistency checks, diagrams inaccuracy, redundancies in the data etc. can be checked using analysis.
  6. Design
    The block structure of the software can be designed by the software designers using design tools which are again broken down into smaller modules using techniques of refinement. The detailing of every module and the interconnections between the modules can be done using this.
  7. Configuration Management Tools
    Whenever one version of software instance is released, configuration management tools deals with the following:
    • Management of revision and version.
    • Configuration management of baseline.
    • Change control management.
    Automatic tracking, management of version, and management of release can be done with the help of configuration management.
  8. Change Control
    Change Control are a part of configuration management. The changes that occur in the software after fixing its baseline or after the first release of the software are dealt by change control tools. Tracking the changes, management of files, management of codes etc. can be automated using change control. The change policy of the organization can be enforced by using change control.
  9. Programming
    The programming environments like integrated development environment , library consisting of in built modules, simulation are all included in programming tools. The development of software product is aided by these and simulation and testing features are included.
  10. Prototyping
    The simulated version of the software product to be built is called a prototype in software. The look and feel of the product is provided by the prototype and several aspects of the actual product can be simulated using prototyping. Graphical libraries are contained in the prototyping tools. User interfaces and design that are hardware independent can be created using prototyping. Rapid prototypes can be built using prototyping based on the existing information. The software prototype can be simulated using prototyping tools.
  11. Web Development
    The web pages like forms, text, script, graphic etc. can be designed using web development tools. The web page that is being developed can be previewed to see how it looks after completion using web development.
  12. Quality Assurance
    Monitoring the engineering process and methods used for software development to ensure the quality is as per the standards of the organization can be performed using quality assurance tools. The configuration change control and software testing tools come under the category of QA tools.
  13. Maintenance
    If there are any modifications after the delivery of the software product can be done through software maintenance tools. Techniques for automatically logging, error reporting, generation of error tickets automatically and root cause analysis are used in the maintenance phase of the software development life cycle to help the software organizations.


Related Post

DFD ( Data Flow Diagram ) 1

A Data Store/File/Database may represent one of many different physical data; for example, a file folder, one or more computer-based file(s), or a notebook. A Data Store/File/Database symbol notation by Ed Yourdon-Peter Coad and Yourdon-DeMarco use parallel lines, while A Data Store/File/Database symbol notation by Chris Gane and Trish Sarson use an open-ended rectangle.

A Process/Function is the work or actions performed on data so that they are transformed, stored, or distributed. A Process/Function symbol notation by Ed Yourdon-Peter Coad and Yourdon-DeMarco use circles for processes, while A Process/Function symbol notation by Chris Gane and Trish Sarson use rectangles with rounded corners, sometimes called lozenges.

A Source/Sink or Input/Output is the origin and/or destination of the data. Sources/sinks are sometimes referred to as external entities because they are outside the system. A Source/Sink or Input/Output symbol notation use rectangle/square/box.

A Data Flow/Flow can be best understood as data in motion, moving from one place in a system to another. A Data Flow symbol notation use arrow line.

Bibliography

https://en.wikipedia.org/

https://www.lucidchart.com/

Related Post

Most Common UML Notation

UML Diagram List

UML Vocabulary List

Ribbon Yang Ada Di Microsoft Office Excel

Tab yang ditampilkan pada Microsoft Office Ribbon secara default adalah Ribbon Tab Menu Home, Ribbon Tab Menu Insert, Ribbon Tab Menu Page Layout, Ribbon Tab Menu Formulas, Ribbon Tab Menu Data, Ribbon Tab Menu Review, Ribbon Tab Menu View.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Home: Clipboard, Font, Alignment, Number, Styles, Cells, Editing.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Insert: Tables, Illustrations, Charts, Links, Text.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Page Layout: Themes, Page Setup, Scale to Fit, Sheet Options, Arrange.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Formulas: Function Library, Defined Names, Formula Auditing, Calculation.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Data: Get External Data, Connections, Sort & Filter, Data Tools, Outline.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu Review: Proofing, Comments, Changes.

Ribbon Group Yang Ada Di Microsoft Office Excel Ribbon Tab Menu View: Workbook Views, Show/Hide, Zoom, Window, Macros.

Bibliography

https://melkiapia4excel.weebly.com/
https://support.microsoft.com/
https://usd.edu/ ( university )
https://uma.ac.id/ ( university )

Related Post

How To Check Your Dot Net Framework Version

How To Check Microsoft .Net Framework Version Using File Explorer

  1. Open File Explorer.
  2. Browse the following path: C:\Windows\Microsoft.NET\Framework
  3. Open the folder with the latest version – for example, v4.0.30319.
  4. Right-click any of the ".dll" files and select the Properties option.
  5. Click the Details tab.
  6. In the "Product version" section, confirm the version of .NET – for example, 4.8.9032.0.

How To Check Microsoft .Net Framework Version Using Registry

  1. Open Start.
  2. Search for regedit and click the top result to open the Registry.
  3. Browse the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP.
  4. Expand the main version key – for example, v4 or v4.0.
  5. Select the Client key.
  6. On the right, check the "Version" string to determine the release of the .NET Framework.
Notes: In releases older than version 4, the Client key will be a number or "Setup." For example, .NET version 3.5 includes the version number under the 1033 key.

How To Check Microsoft .Net Framework Version Using Program and Features

  1. Open Start menu > Control Panel.
  2. Click “Programs” > “Programs and Features”.
  3. Scroll down to “Microsoft .NET Framework”.
  4. Check the version number next to each entry. It’s usually in a format like “vX.Y.ZZZZ”.

Bibliography

https://learn.microsoft.com/
https://www.process.st/
https://www.windowscentral.com/