<?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: Pragati Singh</title>
    <description>The latest articles on DEV Community by Pragati Singh (@pragatisingh9155).</description>
    <link>https://dev.to/pragatisingh9155</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%2F1504726%2Fe729fdde-2bb5-48e3-b71c-cf3378905ff4.png</url>
      <title>DEV Community: Pragati Singh</title>
      <link>https://dev.to/pragatisingh9155</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pragatisingh9155"/>
    <language>en</language>
    <item>
      <title>Python for school students</title>
      <dc:creator>Pragati Singh</dc:creator>
      <pubDate>Sun, 26 May 2024 15:12:46 +0000</pubDate>
      <link>https://dev.to/pragatisingh9155/python-for-school-students-1beg</link>
      <guid>https://dev.to/pragatisingh9155/python-for-school-students-1beg</guid>
      <description>&lt;p&gt;Let's start with basics -&lt;/p&gt;

&lt;p&gt;What is programming?🧐&lt;/p&gt;

&lt;p&gt;Programming is a way to instruct computers to perform a given task .&lt;/p&gt;

&lt;p&gt;What is Algorithm -&lt;br&gt;
A complete sequence of instructions is termed as Algo.&lt;br&gt;
CompVocab :-&lt;br&gt;
Instruction = command&lt;/p&gt;

&lt;p&gt;Why we need programming languages??&lt;/p&gt;

&lt;p&gt;Computer is just a dumb machine, it can only understand binary language which (0 &amp;amp; 1),&lt;br&gt;
So to deliver our instruction to the computer we have to first convert our language into machine level Language {0 and 1 form or into a combination of (0 &amp;amp; 1)}... That's why programming lang is required...!!&lt;/p&gt;

&lt;p&gt;Machine Language=&lt;/p&gt;

&lt;p&gt;Combination of 0 &amp;amp; 1 , can't use anything except 0 &amp;amp; 1&lt;/p&gt;

&lt;p&gt;Assembly Language= &lt;/p&gt;

&lt;p&gt;Combination of mnemonics like (ADD SUB DIV ) , it is only understandable to humans...to make it executable (run so that computer can understand) first assembly language is converted into Machine Language by the use of Assembler(work as Translator)&lt;br&gt;
Next 🙂&lt;br&gt;
☕Deep delve into the world of Python :-&lt;br&gt;
Soon --&amp;gt;&lt;br&gt;
Follow for more &lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/pragatisingh9155"&gt;@pragatisingh9155&lt;/a&gt; &lt;/p&gt;

</description>
      <category>python</category>
      <category>coding</category>
      <category>softwaredevelopment</category>
      <category>development</category>
    </item>
    <item>
      <title>👉Version Control System</title>
      <dc:creator>Pragati Singh</dc:creator>
      <pubDate>Sun, 19 May 2024 13:01:06 +0000</pubDate>
      <link>https://dev.to/pragatisingh9155/version-control-system-4gkp</link>
      <guid>https://dev.to/pragatisingh9155/version-control-system-4gkp</guid>
      <description>&lt;p&gt;Part 1 :)&lt;/p&gt;

&lt;p&gt;⭐ &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A version control system is a software tool which enables us to track and undo the changes done in a code ...&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;Repository= Storage Location 
*&lt;em&gt;The most popular version control system tool is "Git" used by developers worldwide *&lt;/em&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;🤫&lt;strong&gt;Advantage&lt;/strong&gt; - &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;using the git command (git status , anyone can see the previous version of code along with the updated one and with this on every single change a commit I'd is created which help others to identify who makes the change)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;There are basically 2 types of version Control System&lt;/strong&gt; :-
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1&lt;/strong&gt;-👀&lt;strong&gt;Centralised Version Control System&lt;/strong&gt;: &lt;/p&gt;

&lt;p&gt;Here in the Centralised Version control system every developer has given access to the remote/main repository &lt;br&gt;
from where he can update the code(taking code into the local system from the remote repo) or commit the code (putting code into the remote repository from the local machine)&lt;/p&gt;

&lt;p&gt;🥲&lt;/p&gt;

&lt;h2&gt;
  
  
  Disadvantage
&lt;/h2&gt;

&lt;p&gt;=&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;if the main repo will be corrupted then the data will be lost&lt;/li&gt;
&lt;li&gt;System Dependency &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;2&lt;/strong&gt;-👀&lt;strong&gt;Distributed Version Control System&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;Here in The Distributed Version control system, every developer has a local repository(where they can commit their code and [update = make changes] in their code)&lt;br&gt;
with this a copy of there file is maintained in there local repository and to collaborate with other developer they push there files from local repository to remote repository &lt;/p&gt;

&lt;h2&gt;
  
  
  Advantage
&lt;/h2&gt;

&lt;p&gt;-😍&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Collaborative Environment&lt;/li&gt;
&lt;li&gt;No system Dependency&lt;/li&gt;
&lt;li&gt;if the main repo gets corrupted every developer has their soft copy maintained in their local repository so no data is going to be lost&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Follow for more 🤧&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/pragatisingh9155"&gt;@pragatisingh9155&lt;/a&gt; &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>java</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
