<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>DP2_2023 (Reflection Wall) by Swati Shirude [EISB]</title>
      <link>https://padlet.com/swati_shirude/eawsaj7s0qsb</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2017-02-28 09:49:06 UTC</pubDate>
      <lastBuildDate>2025-12-04 00:24:48 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>1D Array - Ritthick (Thinking and self-management skills)</title>
         <author></author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2106718256</link>
         <description><![CDATA[<div>import java.util.*;<br>public class adaptdatastructure<br>{<br>&nbsp; &nbsp; public static void main(String args[])<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; int i;<br>&nbsp; &nbsp; &nbsp; &nbsp; int j;<br>&nbsp; &nbsp; &nbsp; &nbsp; int temp;<br>&nbsp; &nbsp; &nbsp; &nbsp; Scanner input = new Scanner(System.in);&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter class strength");<br>&nbsp; &nbsp; &nbsp; &nbsp; int n=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; int a[]=new int[n];<br>&nbsp; &nbsp; &nbsp; &nbsp; int c[]=new int[n];<br>&nbsp; &nbsp; &nbsp; &nbsp; for(i=0;i&lt;n;i++)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter roll number");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[i]=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter Student Marks for roll number "+a[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[i]=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; int max=c[0];<br>&nbsp; &nbsp; &nbsp; &nbsp; for (i = 0; i &lt; n; i++)&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (j = i + 1; j &lt; n; j++)&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (c[i] &gt; c[j])&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; temp = c[i]; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[i] = c[j]; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[j] = temp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println("Highest marks is "+c[n-1]);<br>&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-22 04:24:34 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2106718256</guid>
      </item>
      <item>
         <title>1D Array Task1- Chiranjith. ATL SKILLS : Thinking skills and Self management skills. </title>
         <author>chiranjithpradeep</author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111004474</link>
         <description><![CDATA[<div>import java.util.*;<br>public class Task {<br>public static void main (String[]args) {<br>	int max = 0;<br>	int[] n = new int[20];<br>	int index = 0;<br>	Scanner kb = new Scanner (System.in);<br>	System.out.print("Enter the marks of the students in the roll number order: ");<br>	for (int i=0;i&lt;20;i++) {<br>		n[i]= kb.nextInt();<br>	}<br>	for (int i=0;i&lt;20;i++) {<br>	if (n[i] &gt; max) {<br>		max = n[i];<br>		index = i;<br>	}<br>	}<br>	System.out.print("The role number of the student with the highest mark" + index);<br><br><br>}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-24 03:07:48 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111004474</guid>
      </item>
      <item>
         <title>2D Array task 2- Chiranjith. ATL SKILLS : Thinking skills and Self management skills.</title>
         <author>chiranjithpradeep</author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111007042</link>
         <description><![CDATA[<div>import java.util.*;<br>public class Sum_of_2D_array {<br>public static void main (String[]args) {<br>&nbsp;int n [][] = new int [2][2];<br>&nbsp;Scanner kb = new Scanner(System.in);<br>&nbsp;for (int i=0; i&lt;3;i++) {<br>	 for (int j=0; j&lt;3; j++) {<br>		 n[i][j] = kb.nextInt();<br>	 }<br>&nbsp;}<br>&nbsp;int sum = 0;<br>&nbsp;for (int i=0; i&lt;3;i++) {<br>	 for (int j=0; j&lt;3; j++) {<br>&nbsp; &nbsp; &nbsp;sum = n[i][j] + sum;<br>	 }<br>&nbsp;}<br>&nbsp;System.out.print("Sum of all the numbers: " + sum);<br>&nbsp; for (int i=0; i&lt;3;i++) {<br>	 for (int j=0; j&lt;3; j++) {<br>		 int sum2 = 0;<br>		sum2 = n[i][j] + sum2;<br>		System.out.print("Sum of row " + (i+1) + ": " + sum2);<br>	 }<br>&nbsp;}<br>&nbsp; for (int i=0; i&lt;3;i++) {<br>		 for (int j=0; j&lt;3; j++) {<br>			 int sum3= 0;<br>			 sum3= n[j][i] + sum3;<br>			 System.out.print("Sum of coloum " + (j+1) + ": " + sum3);<br>		 }<br>	 }<br>	&nbsp;<br>}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-24 03:09:41 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111007042</guid>
      </item>
      <item>
         <title>NITHISH- critical thinking  </title>
         <author></author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111008931</link>
         <description><![CDATA[<div>import java.util.*;<br>public class 1darray<br>{<br>&nbsp; &nbsp; public static void main(String args[])<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; int i;<br>&nbsp; &nbsp; &nbsp; &nbsp; int j;<br>&nbsp; &nbsp; &nbsp; &nbsp; Scanner input = new Scanner(System.in);&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter No of students");<br>&nbsp; &nbsp; &nbsp; &nbsp; int n=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; int a[]=new int[n];<br>&nbsp; &nbsp; &nbsp; &nbsp; int c[]=new int[n];<br>&nbsp; &nbsp; &nbsp; &nbsp; for(i=0;i&lt;n;i++)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter roll number");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[i]=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println("Enter Students Marks for roll number "+a[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[i]=input.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; int max=c[0];<br>&nbsp; &nbsp; &nbsp; &nbsp; for (i = 0; i &lt; n; i++)&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (j = i + 1; j &lt; n; j++)&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (c[i] &gt; c[j])&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; temp = c[i]; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[i] = c[j]; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c[j] = temp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println("Highest marks is "+c[n-1]);<br>&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-24 03:11:00 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2111008931</guid>
      </item>
      <item>
         <title>Recursion - Prakriti : Critical thinking</title>
         <author></author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2113080432</link>
         <description><![CDATA[<div>import java.util.*;<br>public class recursion<br>{<br>&nbsp; &nbsp;public static long fact (int n)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; if(n&lt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; return 1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;return n*fact(n-1);&nbsp;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp;}<br>&nbsp; &nbsp;public static void main(String args[])<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp;Scanner kb =new Scanner(System.in);<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println("Enter a number :");<br>&nbsp; &nbsp; &nbsp; &nbsp;int x = kb.nextInt();<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println(fact(x));<br>&nbsp; &nbsp;}<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 03:07:02 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2113080432</guid>
      </item>
      <item>
         <title>Recursion fibonacci</title>
         <author></author>
         <link>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2113083078</link>
         <description><![CDATA[<div>Recursion fibonacci:<br>import java.util.*;<br>public class Recursion_fibonacci<br>{<br>&nbsp; public static long fibonach (int n)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp;if(n&lt;=1)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return 0;<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp;else if(n==2)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; return 1;&nbsp;<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return fibonach(n-1) + fibonach(n-2);<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; public static void main(String args[])<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; Scanner kb =new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Enter a number :");<br>&nbsp; &nbsp; int n = kb.nextInt();<br>&nbsp; &nbsp; for(int i=1;i&lt;=n;i++)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println(fibonach(i));&nbsp;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 03:08:56 UTC</pubDate>
         <guid>https://padlet.com/swati_shirude/eawsaj7s0qsb/wish/2113083078</guid>
      </item>
   </channel>
</rss>
