<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rafeek01</title>
    <description>The latest articles on DEV Community by Rafeek01 (@rafeek01).</description>
    <link>https://dev.to/rafeek01</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F802857%2Fea6c0ec6-ccfe-4c5e-b4c2-c111e354d06f.jpg</url>
      <title>DEV Community: Rafeek01</title>
      <link>https://dev.to/rafeek01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rafeek01"/>
    <language>en</language>
    <item>
      <title>Python #list #tuple #set #dictionary</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Wed, 02 Feb 2022 06:11:26 +0000</pubDate>
      <link>https://dev.to/rafeek01/python-list-tuple-set-dictionary-3k98</link>
      <guid>https://dev.to/rafeek01/python-list-tuple-set-dictionary-3k98</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. List :&lt;/strong&gt;&lt;br&gt;
It is used to store multiple items in single variable.&lt;br&gt;
In list,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Items will be in order.&lt;/li&gt;
&lt;li&gt; We can change items.&lt;/li&gt;
&lt;li&gt; It allows duplicate of items .&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;mylist = ['dog','cat','monkey','cat']&lt;br&gt;
 mylist[0]='cow'&lt;br&gt;
 print(mylist)&lt;/code&gt;&lt;br&gt;
Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;['cow','cat','monkey','cat']
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Tuple :&lt;/strong&gt;&lt;br&gt;
It is used to store multiple items in single variable.&lt;br&gt;
In tuple,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Items will be in order.&lt;/li&gt;
&lt;li&gt; We can not change items.&lt;/li&gt;
&lt;li&gt; It allows duplicate of items &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;mytuple = ('dog','cat','monkey','cat') &lt;br&gt;
 mytuple[0]='cow'&lt;br&gt;
 print(mytuple)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;TypeError: 'tuple' object does not support item assignment
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Set :&lt;/strong&gt;&lt;br&gt;
It is used to store multiple items in single variable.&lt;br&gt;
In set,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Items will not be in order.&lt;/li&gt;
&lt;li&gt; We can not change items.&lt;/li&gt;
&lt;li&gt; It do not allows duplicate of items -(in below example cat will be showed only once when you print myset)-.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;myset = ('dog','cat','monkey','cat') &lt;br&gt;
 myset[0]='cow'&lt;br&gt;
 print(myset)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;TypeError: 'set' object does not support item assignment
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Dictionary :&lt;/strong&gt;&lt;br&gt;
It is used to store multiple items in single variable.&lt;br&gt;
In dictionary,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Items will be in order.&lt;/li&gt;
&lt;li&gt; We can change items.&lt;/li&gt;
&lt;li&gt; It do not allows duplicate of items .&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;mydictionary = {'dog':'moo','cat':'meow','cat': 'meow''lion':'roar'}&lt;br&gt;
mydictionary['dog']="bark"&lt;br&gt;
print(mydictionary)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{'dog': 'bark', 'cat': 'meow', 'lion': 'roar', 'cow': 'moo'}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;-------Thank you-------------&lt;br&gt;
-------have a good day------&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Best road-map to become full stack developer in 2022</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Tue, 01 Feb 2022 02:27:01 +0000</pubDate>
      <link>https://dev.to/rafeek01/best-road-map-to-become-full-stack-developer-in-2022-1ol9</link>
      <guid>https://dev.to/rafeek01/best-road-map-to-become-full-stack-developer-in-2022-1ol9</guid>
      <description>&lt;p&gt;I am beginner to tech can you suggest me the best way or best road map to become full stack developer in 2022.&lt;br&gt;
Thank you for reading. &lt;br&gt;
Have a good day!!!🙂🙂🙂&lt;/p&gt;

</description>
      <category>explainlikeimfive</category>
      <category>beginners</category>
      <category>programming</category>
      <category>devops</category>
    </item>
    <item>
      <title>Getting started with Git day 03  😊.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Sat, 29 Jan 2022 06:05:02 +0000</pubDate>
      <link>https://dev.to/rafeek01/getting-started-with-git-day-03--3efi</link>
      <guid>https://dev.to/rafeek01/getting-started-with-git-day-03--3efi</guid>
      <description>&lt;p&gt;*&lt;em&gt;In day 04 I have learned *&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;To create remote.&lt;br&gt;
&lt;code&gt;git remote add remote-name https://(from server)&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To see created/available remote.&lt;br&gt;
&lt;code&gt;git remote&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To see details about remote.&lt;br&gt;
&lt;code&gt;git remote -v&lt;/code&gt;  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To push the code/file's to server &lt;br&gt;
&lt;code&gt;git push **remote-name** branch-name&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To clone existing file from server's:&lt;br&gt;
&lt;code&gt;git clone https:/(from server file)&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To push cloned update file to server:&lt;br&gt;
&lt;code&gt;git push origin branch-name&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;origin is default remote of cloned file.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;&lt;strong&gt;Have a great day  😊.&lt;/strong&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Today I have attempted 5 java programming exercises 😊.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Sat, 29 Jan 2022 05:50:25 +0000</pubDate>
      <link>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--38c3</link>
      <guid>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--38c3</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to print a face.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to add two binary numbers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to multiply two binary numbers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to convert a decimal number to binary &lt;br&gt;
number.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to convert a decimal number to &lt;br&gt;
hexadecimal number.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;blockquote&gt;
&lt;p&gt;Exercise from w3resourse&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I am new to programming. I will be happy if you can give some advice..&lt;br&gt;
&lt;strong&gt;have a great day&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>java</category>
      <category>beginners</category>
      <category>help</category>
    </item>
    <item>
      <title>Getting started with Git day 03 :).</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Fri, 28 Jan 2022 03:54:11 +0000</pubDate>
      <link>https://dev.to/rafeek01/getting-started-with-git-day-03--1oe4</link>
      <guid>https://dev.to/rafeek01/getting-started-with-git-day-03--1oe4</guid>
      <description>&lt;p&gt;In day 3 I have learned git merge's:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast forward merge:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--90MM2Nku--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2i5x7qymxo1vgqogt42u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--90MM2Nku--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2i5x7qymxo1vgqogt42u.png" alt="Image description" width="880" height="880"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Recursive merge:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WgGiwKNA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/31m5gmynuh13751jcerg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WgGiwKNA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/31m5gmynuh13751jcerg.png" alt="Image description" width="880" height="880"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;And I also learned about conflicts during merge. and how to resolve that conflict.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Today I have attempted 5 java programming exercises 😊.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Fri, 28 Jan 2022 03:47:55 +0000</pubDate>
      <link>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--10l8</link>
      <guid>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--10l8</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to print the area and perimeter of a circle. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program that takes three numbers as input to calculate and print the average of the numbers. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to print the area and perimeter of a rectangle&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to print an flag on the screen. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Write a Java program to swap two variables.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;blockquote&gt;
&lt;p&gt;Exercise from w3resourse&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I am new to programming. I will be happy if you can give some advice..&lt;br&gt;
&lt;strong&gt;have a great day&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>news</category>
      <category>programming</category>
    </item>
    <item>
      <title>Getting started with Git day 02 :).</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Thu, 27 Jan 2022 04:25:23 +0000</pubDate>
      <link>https://dev.to/rafeek01/getting-started-with-git-day-02--4de3</link>
      <guid>https://dev.to/rafeek01/getting-started-with-git-day-02--4de3</guid>
      <description>&lt;p&gt;In day 2 I have leaned some more git commands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;git stash&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git branch "new branch name"&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git branch&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git checkout ID/branch name&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git diff file-name&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;&lt;em&gt;have a good day :)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Today I have attempted 5 java programming exercises 😊.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Thu, 27 Jan 2022 04:02:00 +0000</pubDate>
      <link>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--4pg5</link>
      <guid>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--4pg5</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Java program to print the sum (addition), multiply, subtract, &lt;br&gt;
divide and remainder of two numbers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Java program that takes a number as input and prints its&lt;br&gt;
multiplication table up to 10.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Java program to display the following pattern. &lt;br&gt;
Sample Pattern :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6e-zu6im--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2cnoj3yf66rqlldjpr0l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6e-zu6im--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2cnoj3yf66rqlldjpr0l.png" alt="Image description" width="347" height="114"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Java program to compute the specified expressions and &lt;br&gt;
print the output.&lt;br&gt;
Test Data:&lt;br&gt;
((25.5 * 3.5 - 3.5 * 3.5) / (40.5 - 4.5))&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Java program to compute a specified formula.&lt;br&gt;
Specified Formula :&lt;br&gt;
4.0 * (1 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11))&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;&amp;gt; Exercise from w3resourse&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
      <category>top</category>
    </item>
    <item>
      <title>Today I have attempted 5 java programming exercises  😊.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Wed, 26 Jan 2022 11:47:19 +0000</pubDate>
      <link>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--1kp0</link>
      <guid>https://dev.to/rafeek01/today-i-have-attempted-5-java-programming-exercises--1kp0</guid>
      <description>&lt;p&gt;1.Java program to print 'Hello' on screen and then print my name on a separate line.&lt;/p&gt;

&lt;p&gt;2.Java program to print the sum of two numbers. &lt;/p&gt;

&lt;p&gt;3.Java program to divide two numbers and print on the screen.&lt;/p&gt;

&lt;p&gt;4.Java program to print the result of the following operations.&lt;br&gt;
Test Data:&lt;br&gt;
a. -5 + 8 * 6&lt;br&gt;
b. (55+9) % 9&lt;br&gt;
c. 20 + -3*5 / 8&lt;br&gt;
d. 5 + 15 / 3 * 2 - 8 % 3&lt;/p&gt;

&lt;p&gt;5.Java program that takes two numbers as input and display the product of two numbers.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;&amp;gt; Exercise from w3resourse&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Getting started with Git day 01.</title>
      <dc:creator>Rafeek01</dc:creator>
      <pubDate>Wed, 26 Jan 2022 02:28:59 +0000</pubDate>
      <link>https://dev.to/rafeek01/getting-started-with-git-day-01-1bcp</link>
      <guid>https://dev.to/rafeek01/getting-started-with-git-day-01-1bcp</guid>
      <description>&lt;p&gt;Three days before I have started learning git.&lt;br&gt;
In &lt;strong&gt;day 01&lt;/strong&gt; I have learned basic commands used in git&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;git init&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git status&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git add &lt;strong&gt;filename&lt;/strong&gt;/./--all&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git commit -m "message"&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;git log&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;-------------:)-have a good day--------------------&lt;/p&gt;

</description>
      <category>git</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
