2024-09-06

1.) Rechne die Zahl in binaer Darstellung  in eine Dezimale Darstellung um
1101101100000110b 56070d
2.) Rechne die Zahl in dezimal darstellung in eine Binaerdarstellung um
40466 1001111000010010
3.) Addiere die drei Zahlen schriftlich
            10912
+           43602
+           32967
-----------------
            87481
4.) Subtrahiere die letzten drei Zahlen schriftlich von der ersten schriftlich
             6832
-            6992
-            2589
-           14564
-----------------
           -17313
5.) Rechne die Zahl ins zweier komplement um, mit 8 Bit - und subtrahiere diese zahl von der ersten und rechne das Ergebnis nach dezimal
35 -63 = -28
00100011 11000001 = 11100100
6.) Multipliziere die zwei Zahlen schriftlich
4626*24100 = 111486600
7.) Dividiere die zwei Zahlen schriftlich
23407/9048 = 2
8.) Errechne x Logarithmisch mit dem Taschenrechner
50688^x = 1680181162
9.) Errechne mit dem Abakus
42 + 50 + 44 + 91 + 32 + 53 + 79 + 61 + 78 + 11
10.) Errechne mit dem Abakus
9990 + 5552 + 50 + 2037 + 1783 + 6682 + 8215 + 3700 + 9292 + 9625

$\displaystyle m = 4,n = 4,s = 5$

$\displaystyle \left(\begin{array}{ccccc}5&9&5&5&\\
6&0&6&4&\\
3&8&5&8&\\
2&4...
...&132&132&\\
160&146&61&152&192&\\
94&68&22&100&120&\\
\par\end{array}\right)$

#20240906

print (5+6)
x = 5 + 4
y = 6 + 3
z = 7 + 2

print (x+y+z)
print (x)
print (y)
print (z)

if x < y:
    print ("x ist kleiner als y")
    if x < z:
        print ("x kleiner z")
    else:
        print ("x ist nicht kleiner z")
else:
    print ("x ist nicht kleiner als y")

i = 0
while i < 10:
    print (i)
    i = i + 1

a = [1,4]
i = 3
while i <= 10:
    a.append (i**2)
    i = i + 1

i = 0
while i < 10:
    print (a [i])
    i = i + 1

#!/bin/bash

name="Vajda"
firstname="David"

if [[ "$name" == "$2" && "$firstname" == "$1" ]]
then
    echo "Das bin ich"
elif [ "$name" == "$1" ]
then
    echo "Das koennte ich sein"
else
    i=0
    while [ $i -lt 10 ]
    do
        echo "Hallo zum $(($i+1))."
        i=$(($i+1))
    done
    a=(A B C D)
    a+=(E F G H)
    i=0
    while [ $i -lt 8 ]
    do
        echo "${a[$i]}"
        i=$(($i+1))
    done
    for s in "${a[@]}"
    do
        echo "$s"
    done
    l=$(ls)
    #for s in $l
    #do
    #    echo "$l"
    #done
fi

#!/bin/bash
pdftoppm -jpeg uebungen2.pdf uebungen2
i=0
l=$(ls *.jpg)
j=0
mkdir "dir$j"
for s in $l
do
    mv $s "dir$j"
    if [ $i -eq 40 ]
    then
        i=0
        j=$(($j+1))
        mkdir "dir$j"
    fi
    i=$(($i+1))
done

Image mykurrent0003-1 Image IMG_2647 Image IMG_2648 Image IMG_2649 Image IMG_2650 Image IMG_2651 Image IMG_2652 Image IMG_2653 Image IMG_2654 Image IMG_2655 Image IMG_2656 Image IMG_2657 Image IMG_2658 Image IMG_2659 Image IMG_2660 Image IMG_2661 Image IMG_2662 Image IMG_2663 Image IMG_2664 Image IMG_2665 Image IMG_2666 Image IMG_2667 Image IMG_2668 Image IMG_2673 Image IMG_2674 Image IMG_2675 Image IMG_2676 Image IMG_2677 Image IMG_2678 Image IMG_2679 Image IMG_2680 Image IMG_2681 Image IMG_2682 Image IMG_2683 Image IMG_2684 Image IMG_2685 Image IMG_2686 Image IMG_2687 Image IMG_2688 Image IMG_2689 Image IMG_2690 Image IMG_2691 Image IMG_2692 Image IMG_2693 Image IMG_2694 Image IMG_2695 Image IMG_2696 Image IMG_2697 Image IMG_2698 Image IMG_2699 Image IMG_2700 Image IMG_2701 Image IMG_2702 Image IMG_2703 Image IMG_2704 Image IMG_2705 Image IMG_2706 Image IMG_2707 Image IMG_2708 Image IMG_2709 Image IMG_2710 Image IMG_2711 Image IMG_2712 Image IMG_2713 Image IMG_2714 Image IMG_2715 Image IMG_2716 Image IMG_2717 Image IMG_2718 Image IMG_2719 Image IMG_2720 Image IMG_2721 Image IMG_2722 Image IMG_2723 Image IMG_2724