<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Siti Sarah Syamimi by SITI SARAH SYAMIMI BINTI WAN MAT Moe</title>
      <link>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr</link>
      <description>SC025</description>
      <language>en-us</language>
      <pubDate>2021-04-02 16:41:15 UTC</pubDate>
      <lastBuildDate>2025-10-20 15:35:40 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f917.png</url>
      </image>
      <item>
         <title>PSEUDOCODE</title>
         <author>mms1917271997</author>
         <link>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378377997</link>
         <description><![CDATA[<div>START<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Read n<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set i=0, highest=0, lowest=0, total_aver=0, total_exce=0, total_weak=0, sum=0<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Repeat while i&lt;n<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Read name[i], mark[i]<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If mark[i]&gt;highest<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; highest=mark[i]<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If mark[i]&lt;lowest<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lowest=mark[i]<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If mark[i]&gt;=80<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; total_exce=total_exce + 1<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else if mark[i]&gt;=50<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; total_aver=total_aver + 1<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; total_weak=total_weak + 1<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End if<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sum=sum+ mark[i]<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i=i+1<br><br></div><div>End repeat<br><br></div><div>average=sum/n<br><br></div><div>Display highest, lowest<br><br></div><div>Set i=0<br><br></div><div>Repeat while i&lt;n<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If mark[i]==highest<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Display name[i], i<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End if<br><br></div><div>i=i+1<br><br></div><div>End repeat<br><br></div><div>Set i=0<br><br></div><div>Repeat while i&lt;n&nbsp;<br><br></div><div>If mark[i]==lowest&nbsp;<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Display name[i], i<br><br></div><div>End if<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i=i+1<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End repeat<br><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Display total_exce, total_aver, total_weak, average<br><br></div><div>STOP<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-02 16:46:52 UTC</pubDate>
         <guid>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378377997</guid>
      </item>
      <item>
         <title>CODING JAVA</title>
         <author>mms1917271997</author>
         <link>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378421954</link>
         <description><![CDATA[<div>//Assignment SC025 Session 2020/2021<br>//Programmer:Siti Sarah Syamimi<br>//class: F2T10<br>//This program will display the summarization of student's performance<br><br>import java.util.Scanner;<br>class F2T10sarahsyamimi{<br>public static void main(String[] args){<br>Scanner sc = new Scanner(System.in);<br>System.out.println(" ********************************************************* ");<br>System.out.println("&nbsp; &nbsp; &nbsp; &nbsp; Welcome to SarahSyamimi Information System&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;");<br>System.out.println(" ********************************************************* ");<br>int n;<br>System.out.print("\n Enter number of student : "); //To read input number of student<br>n = sc.nextInt();<br>sc.nextLine();<br>String name[]= new String [n];<br>double mark[]= new double [n];<br>int i, total_exce=0, total_aver=0, total_weak=0;<br>double highest=0, lowest=100, sum=0, average;<br><br>i=0;<br>while (i&lt;n)<br>{<br>&nbsp; &nbsp;System.out.print("\n Enter student's name: "); //To read input student's name<br>&nbsp; &nbsp;name[i]=sc.nextLine();<br>&nbsp; &nbsp;System.out.print("\n Enter student's mark: "); //To read input student's mark&nbsp;<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;mark[i]=sc.nextDouble();<br>&nbsp; &nbsp; &nbsp; if (mark[i]&gt;highest)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;highest=mark[i];&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; if (mark[i]&lt;lowest)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;lowest=mark[i];<br>&nbsp; &nbsp; &nbsp; if (mark[i]&gt;=80)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;total_exce=total_exce+1;<br>&nbsp; &nbsp; &nbsp; else if (mark[i]&gt;=50)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;total_aver=total_aver+1;<br>&nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;total_weak=total_weak+1;<br>&nbsp; &nbsp; &nbsp; sum=sum+mark[i];<br>&nbsp; &nbsp; &nbsp; i=i+1;<br>&nbsp; &nbsp; &nbsp; sc.nextLine();<br>}<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;System.out.println("***************************************************************:");<br>&nbsp; &nbsp;System.out.println("&nbsp; &nbsp; &nbsp; &nbsp; SUMMARY REPORT SINARAN COLLEGE INFORMATION SYSTEM&nbsp; &nbsp; &nbsp; &nbsp;");<br>&nbsp; &nbsp;System.out.println("***************************************************************:");<br><br>&nbsp; &nbsp;average=sum/n;&nbsp; //Formula for average<br>&nbsp; &nbsp;System.out.println("\nHighest mark is "+highest);<br>&nbsp; &nbsp;System.out.println("Lowest mark is "+lowest);<br>&nbsp; &nbsp;<br>i=0;<br>while (i&lt;n)<br>{<br>&nbsp; &nbsp;if (mark[i]==highest)<br>&nbsp; &nbsp; &nbsp; System.out.println("Student with highest mark is "+name[i]+" present at index "+i);<br>i=i+1;<br>}<br><br>i=0;<br>while (i&lt;n)<br>{<br>&nbsp; &nbsp;if (mark[i]==lowest)<br>&nbsp; &nbsp; &nbsp; System.out.println("Student with lowest mark is "+name[i]+" present at index "+i);<br>i=i+1;<br>}<br><br>System.out.println("Total number of Excellent students is "+total_exce);<br>System.out.println("Total number of Average students is "+total_aver);<br>System.out.println("Total number of Weak students is "+total_weak);<br>System.out.println("Average mark is "+average);<br>System.out.println("***************************************************************");<br>}}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-02 17:10:17 UTC</pubDate>
         <guid>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378421954</guid>
      </item>
      <item>
         <title>FLOWCHART</title>
         <author>mms1917271997</author>
         <link>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378445153</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1116733108/79a64356a728c262fed6bc5aaa8552ac/FLOWCHART.pdf" />
         <pubDate>2021-04-02 17:22:05 UTC</pubDate>
         <guid>https://padlet.com/mms1917271997/9lhg3t1v0hj8fjpr/wish/1378445153</guid>
      </item>
   </channel>
</rss>
