<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>ASSINGNMENT SC025 by Nurain Rasyidah</title>
      <link>https://padlet.com/ainrusli1119/swto5cbwa91namfo</link>
      <description>NURAIN RASYIDAH BINTI MOHD RUSLI</description>
      <language>en-us</language>
      <pubDate>2021-04-02 14:38:30 UTC</pubDate>
      <lastBuildDate>2023-04-22 19:17:41 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>PSEUDOCODE</title>
         <author>ainrusli1119</author>
         <link>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378155494</link>
         <description><![CDATA[<div>Start</div><div>&nbsp; &nbsp; &nbsp; &nbsp;read n</div><div>&nbsp; &nbsp; &nbsp; &nbsp;set i=0, highest=0, lowest=100, t_excellent=0, t_average=0, t_weak=0, sum=0, average</div><div>&nbsp; &nbsp; &nbsp; &nbsp;repeat while i&lt;n</div><div>&nbsp; &nbsp; &nbsp; &nbsp;read name[i], mark[i]</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if mark[i] &gt; highest</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;highest = mark[i]</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if mark[i] &lt; lowest</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;lowest = mark[i]</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if mark[i] &gt;= 80</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t_excellent = t_excellent +1</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else if mark[i] &gt;= 50</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t_average = t_average +1</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t_weak = t_weak +1</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end if</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sum = sum + mark[i]</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i = i+1</div><div>&nbsp; &nbsp; &nbsp;end repeat</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;average = sum/n</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;display highest mark, lowest mark</div><div>&nbsp; &nbsp; &nbsp;set i = 0</div><div>&nbsp; &nbsp; &nbsp;repeat while i &lt; n</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if mark[i] = = highest</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print name, i</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end if</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i = i+1</div><div>&nbsp; &nbsp; &nbsp;end repeat</div><div>&nbsp; &nbsp; &nbsp;set i = 0</div><div>&nbsp; &nbsp; &nbsp;repeat while i &lt; n</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if mark[i] = = lowest</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print name, i</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end if</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i = i+1</div><div>&nbsp; &nbsp; end repeat</div><div>&nbsp; &nbsp; display t_excellent, t_average, t_weak, average mark</div><div>Stop</div><div>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-02 14:46:52 UTC</pubDate>
         <guid>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378155494</guid>
      </item>
      <item>
         <title>FLOWCHART</title>
         <author>ainrusli1119</author>
         <link>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378186562</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1116580581/bf3e75419b7a863677328645aebaa3c9/FLOWCHART.docx" />
         <pubDate>2021-04-02 15:05:14 UTC</pubDate>
         <guid>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378186562</guid>
      </item>
      <item>
         <title>JAVA CODING</title>
         <author>ainrusli1119</author>
         <link>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378192832</link>
         <description><![CDATA[<div><strong>/*Assignment SC025 Session 2020/2021<br>&nbsp;Author name: Nurain Rasyidah Binti Mohd Rusli<br>&nbsp;Class: F2T10<br>&nbsp;This program will summarize student's performance*/<br>&nbsp;<br>import java.util.Scanner ;<br>&nbsp;class F2P10NurainRasyidah{<br>&nbsp;public static void main(String[] args){<br>&nbsp;Scanner sc=new Scanner (System.in);<br>&nbsp;<br>&nbsp;System.out.println("Welcome to Nurain Rasyidah Information System ");<br>&nbsp;int n;<br>&nbsp;System.out.print("\nEnter number of student: ");<br>&nbsp;n = sc.nextInt();<br>&nbsp;sc.nextLine();<br>&nbsp;<br>&nbsp;String name[] =new String[n];<br>&nbsp;double mark[]=new double[n];<br>&nbsp;int i, t_excellent=0, t_average=0, t_weak=0;<br>&nbsp;double highest=0, lowest=100, sum=0, average;<br>&nbsp;<br>&nbsp;i=0;<br>&nbsp;while (i&lt;n)<br>&nbsp;{<br>&nbsp; System.out.print("\nEnter student's name: ");<br>&nbsp; name[i]=sc.nextLine();<br>&nbsp; System.out.print("\nEnter student's mark: ");<br>&nbsp; mark[i]=sc.nextDouble();<br>&nbsp;&nbsp;<br>&nbsp; &nbsp;if(mark[i]&gt;highest)<br>&nbsp; &nbsp; highest=mark[i];<br>&nbsp; &nbsp;if(mark[i]&lt;lowest)<br>&nbsp; &nbsp; lowest=mark[i];<br>&nbsp; &nbsp;if(mark[i]&gt;=80)<br>&nbsp; &nbsp; t_excellent=t_excellent+1;<br>&nbsp; &nbsp;else if(mark[i]&gt;=50)<br>&nbsp; &nbsp; t_average=t_average+1;<br>&nbsp; &nbsp;else<br>&nbsp; &nbsp;t_weak=t_weak+1;<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;sum=sum+mark[i];<br>&nbsp; &nbsp;i=i+1;<br>&nbsp; &nbsp;sc.nextLine();<br>&nbsp; &nbsp;}<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;average=sum/n;<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;System.out.println("\nHighest mark: "+highest);<br>&nbsp; &nbsp;System.out.println("\nLowest mark: "+lowest);<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;i=0;<br>&nbsp; &nbsp;while(i&lt;n)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; if(mark[i]==highest)<br>&nbsp; &nbsp; System.out.println("\nStudent with the highest mark is "+name[i]+" present at index "+i);<br>&nbsp; &nbsp; i=i+1;<br>&nbsp; &nbsp;}<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;i=0;<br>&nbsp; &nbsp;while(i&lt;n)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; if(mark[i]==lowest)<br>&nbsp; &nbsp; System.out.println("\nStudent with the lowest mark is "+name[i]+" present at index "+i);<br>&nbsp; &nbsp; i=i+1;<br>&nbsp; &nbsp;}<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;System.out.println("\nTotal number of EXCELLENT student is: "+ t_excellent);<br>&nbsp; &nbsp;System.out.println("\nTotal number of AVERAGE student is: "+ t_average);<br>&nbsp; &nbsp;System.out.println("\nTotal number of WEAK student is: "+ t_weak);<br>&nbsp; &nbsp;System.out.println("\nAVERAGE MARK is: "+ average);<br>&nbsp; &nbsp;<br>&nbsp;}}</strong></div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-02 15:08:50 UTC</pubDate>
         <guid>https://padlet.com/ainrusli1119/swto5cbwa91namfo/wish/1378192832</guid>
      </item>
   </channel>
</rss>
