<?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>Forem: Tina Popli</title>
    <description>The latest articles on Forem by Tina Popli (@tina_popli).</description>
    <link>https://forem.com/tina_popli</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%2F616596%2F9c01f191-eb4e-4d77-b899-a675c983c2da.jpg</url>
      <title>Forem: Tina Popli</title>
      <link>https://forem.com/tina_popli</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/tina_popli"/>
    <language>en</language>
    <item>
      <title>Python for Beginners - Part 1</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Sat, 13 Jan 2024 11:38:25 +0000</pubDate>
      <link>https://forem.com/tina_popli/python-for-beginners-part-1-984</link>
      <guid>https://forem.com/tina_popli/python-for-beginners-part-1-984</guid>
      <description>&lt;p&gt;&lt;strong&gt;Link for Introduction&lt;/strong&gt;: &lt;a href="https://dev.to/tina_popli/python-for-beginners-introduction-1pa2"&gt;https://dev.to/tina_popli/python-for-beginners-introduction-1pa2&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the earlier section, we touched upon the fundamentals of Python, exploring why it is regarded as a beginner-friendly language and how it makes an easy entry into programming.&lt;/p&gt;

&lt;p&gt;Once you look into a python code, the immediate understanding is often the exact logic the developer has put into it. This simplicity contributes to a clear understanding of the language and its syntax, making it accessible for beginners and those new to programming.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;INSTALLATION STEPS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1) To download/install Python, click on this link-&lt;a href="https://www.python.org/downloads/" rel="noopener noreferrer"&gt;https://www.python.org/downloads/&lt;/a&gt; and choose the latest/desired version.&lt;/p&gt;

&lt;p&gt;2) Once installed, install the IDE, You can use any ide, the below example shows PyCharm. &lt;a href="https://www.jetbrains.com/pycharm/download/?section=windows" rel="noopener noreferrer"&gt;https://www.jetbrains.com/pycharm/download/?section=windows&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IDE&lt;/strong&gt; is an integrated development environment (IDE).&lt;br&gt;
It is a software that combines all the developer tools into a single graphical user interface (GUI).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Basic Syntax of Python&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. #Program to display "Hello, World"
2.print("Hello, World")

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;#&lt;/strong&gt; in python means the corresponding line is a comment.&lt;br&gt;
A comment in a programming language means that it is not a part of the execution. It is used for you or someone else to understand what the code/logic means.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;print&lt;/strong&gt; is a keyword in python which refers to display. &lt;br&gt;
The string inside the bracket/parenthesis: &lt;strong&gt;Hello,World&lt;/strong&gt; will be printed. Basically, anything we input inside the parenthesis after print, will be displayed. As this is inside " " it will by default take the whole string and display the content inside "". Note that it doesn't include " " while displaying.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;What if we want to take input from the User?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We use another built-in keyword : &lt;strong&gt;input&lt;/strong&gt;&lt;br&gt;
Let's see how!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1.#Program that takes input from the User
2.fav_lang= input("What is your favourite language?")
3.print(fav_lang)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let's break it down step by step and understand what this mean!&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;As mentioned earlier, this is a comment, so it does not execute.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;fav_lang&lt;/strong&gt; is nothing but a &lt;strong&gt;variable&lt;/strong&gt; which basically stores the value which the user inputs. When we use input("What is your favourite language?" we are basically printing &lt;strong&gt;What is your favourite language?&lt;/strong&gt; while waiting for the user to input their value respectively.
3.Let's output the value stored in fav_lang.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Note: If you are copying this snippet, please omit the line numbers, as they are provided for your reference. After providing your input, press enter when prompted.&lt;/p&gt;

&lt;p&gt;What happens when we run the above code?&lt;br&gt;
Code this in your desired IDE (Python must be installed in your system) and comment the output you get! :)&lt;br&gt;
You can also use the command prompt and type, &lt;strong&gt;python&lt;/strong&gt; and start typing your code.&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>coding</category>
      <category>ai</category>
    </item>
    <item>
      <title>Python for Beginners - Introduction</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Thu, 11 Jan 2024 07:11:18 +0000</pubDate>
      <link>https://forem.com/tina_popli/python-for-beginners-introduction-1pa2</link>
      <guid>https://forem.com/tina_popli/python-for-beginners-introduction-1pa2</guid>
      <description>&lt;p&gt;Have you come across programming languages? Have you also come across people telling python is one of the easiest language to start with? Let’s go through!&lt;/p&gt;

&lt;h2&gt;
  
  
  Who invented Python?
&lt;/h2&gt;

&lt;p&gt;Python was designed by Guido van Rossum in 1991.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why is it so popular and a easy language to learn?
&lt;/h2&gt;

&lt;p&gt;Python provides a considerate amount of built-in libraries to ease out on tasks. Its simplicity is also one of the top reasons why it’s considered good for beginners. &lt;br&gt;
Its libraries and frameworks are majorly used in machine learning projects and tasks which also is a growing field right now. &lt;/p&gt;

&lt;h2&gt;
  
  
  What if I am from a non technical background, can I still manage to learn?
&lt;/h2&gt;

&lt;p&gt;Absolutely yes! As I mentioned, Python has its own simplicity and nature to write the code with. Its simple and readable syntax makes it easy for everyone to code and ease their tasks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8drde3z9s3ouh4gbuhta.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8drde3z9s3ouh4gbuhta.jpeg" alt="Image description" width="719" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What are some of the applications built using Python?
&lt;/h2&gt;

&lt;p&gt;Some of the popular and trending applications which are built using python are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Netflix&lt;/li&gt;
&lt;li&gt;Uber&lt;/li&gt;
&lt;li&gt;Spotify&lt;/li&gt;
&lt;li&gt;Instacart&lt;/li&gt;
&lt;li&gt;Instagram&lt;/li&gt;
&lt;li&gt;Pinterest and many more! &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Interesting right?&lt;/p&gt;

&lt;p&gt;Let’s now deep dive into what we’ll be covering in this series. I’ll also be posting exercises at the end of each part for you to practice. &lt;/p&gt;

&lt;h2&gt;
  
  
  Part 1:
&lt;/h2&gt;

&lt;p&gt;Introduction to Basic concepts of Python, setting up the python environment and basic python syntax.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 2:
&lt;/h2&gt;

&lt;p&gt;Looping statements and control statements&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 3:
&lt;/h2&gt;

&lt;p&gt;Python lists and Arrays&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 4:
&lt;/h2&gt;

&lt;p&gt;Methods/Functions&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 5:
&lt;/h2&gt;

&lt;p&gt;OOPS Concept&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 6:
&lt;/h2&gt;

&lt;p&gt;File Handling&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 7:
&lt;/h2&gt;

&lt;p&gt;Python Modules&lt;/p&gt;

&lt;p&gt;Theoretical exercise for today’s part is:&lt;/p&gt;

&lt;h2&gt;
  
  
  Find out why Python is called as Python and answer in the comments below ☺️
&lt;/h2&gt;

&lt;p&gt;Link for Part 1: &lt;a href="https://dev.to/tina_popli/python-for-beginners-part-1-984"&gt;https://dev.to/tina_popli/python-for-beginners-part-1-984&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>ai</category>
      <category>coding</category>
      <category>programming</category>
    </item>
    <item>
      <title>UNIX - DIRECTORIES (PART 2)</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Wed, 08 Nov 2023 08:06:06 +0000</pubDate>
      <link>https://forem.com/tina_popli/unix-directories-part-2-149c</link>
      <guid>https://forem.com/tina_popli/unix-directories-part-2-149c</guid>
      <description>&lt;p&gt;Let us now see how to create new directories.&lt;br&gt;
if we have many files all together, it is always preferable to organize them based on their similarities into same directory.&lt;/p&gt;

&lt;p&gt;3) &lt;strong&gt;MKDIR&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;SYNTAX:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;mkdir (pathname)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;pathname is the path of the directory to be created.&lt;/p&gt;

&lt;p&gt;Example : To create a new directory under the HOME Directory.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ mkdir employees&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;$ cd employees (from home directory change to employees)&lt;br&gt;
$ pwd (verifying it's path)&lt;br&gt;
/home/employees&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When we create a new directory, the system builds a new inode (information node ) for the directory.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;4) &lt;strong&gt;LS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This command can be used to display the names of files and directories.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ pwd&lt;/code&gt;&lt;br&gt;
/home/employees&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ls&lt;/code&gt;&lt;br&gt;
employee1 employee2&lt;/p&gt;

&lt;p&gt;SYNTAX:&lt;/p&gt;

&lt;p&gt;ls [options] &lt;/p&gt;

&lt;p&gt;where options can be&lt;/p&gt;

&lt;p&gt;i) ls -m    Lists directory contents separated by a comma.&lt;br&gt;
ii) ls -Q   Displays directory contents enclosed by quotation marks.&lt;br&gt;
iii) ls -l  Displays files in a long-list format.&lt;br&gt;
iv) ls -lh  Display file size in a human-readable format.&lt;br&gt;
v) ls -g    Omits group ownership column.&lt;br&gt;
vi) ls -F   Adds a forward slash to directories.&lt;br&gt;
vii) ls -i  Display inode number of files and directories.&lt;br&gt;
viii) ls -a Display all files including hidden files.&lt;br&gt;
ix) ls *.   Filters files according to the file extension.&lt;br&gt;
x) ls -la   Displays all files and directories in long list format.&lt;br&gt;
xi) ls -R   Display files and directories recursively.&lt;br&gt;
xii) ls -r  Sort Files in reverse.&lt;br&gt;
xiii) ls -X Sort files alphabetically by file extension.&lt;br&gt;
xiv) ls -tl Display files according to file creation date and time.&lt;br&gt;
xv) ls -n   List UIDs and GIDs.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>UNIX - DIRECTORIES</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Fri, 06 Oct 2023 14:19:11 +0000</pubDate>
      <link>https://forem.com/tina_popli/unix-directories-4npn</link>
      <guid>https://forem.com/tina_popli/unix-directories-4npn</guid>
      <description>&lt;p&gt;Directories provide a better way of organizing files within the system. As we have file system in UNIX System, the directories can further contain sub directories too!&lt;/p&gt;

&lt;p&gt;When we log in to the system, we are located into a particular directory that is our &lt;strong&gt;HOME&lt;/strong&gt; Directory.&lt;/p&gt;

&lt;p&gt;We can freely navigate in between different directories but the directory we are positioned at a particular point of time, that is referred to as &lt;strong&gt;CURRENT WORKING&lt;/strong&gt; DIRECTORY.&lt;/p&gt;

&lt;p&gt;SOME OF THE COMMANDS!&lt;/p&gt;

&lt;p&gt;1) PWD&lt;br&gt;
Pwd command displays the full path of your present/current working directory.&lt;/p&gt;

&lt;p&gt;SYNTAX:&lt;br&gt;
&lt;code&gt;$ pwd&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Sample Output:&lt;br&gt;
/home/tina &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ABSOLUTE AND RELATIVE PATHNAME&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There are two ways a file can be accessed:&lt;br&gt;
1) ABSOLUTE PATH NAME&lt;br&gt;
2) RELATIVE PATH NAME&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1) ABSOLUTE PATH NAME&lt;/strong&gt;&lt;br&gt;
It is the complete path name right from the root that UNIX follows to reach a particular file. &lt;br&gt;
It starts with a slash ("/").&lt;/p&gt;

&lt;p&gt;For example: to access a file named "newfile" which resides under sub directory "files", which is in the home directory, the absolute path will be : /home/files/newfile&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2) RELATIVE PATH NAME&lt;/strong&gt;&lt;br&gt;
A Path name which is shortened and related to your current working directory. Relative path name is represented by a dot (.)&lt;br&gt;
So to access a particular file, we will start from our present directory. Giving a relative reference starting from the current &lt;br&gt;
directory rather than searching from a root.&lt;/p&gt;

&lt;p&gt;SAMPLE: ./files/newfile&lt;/p&gt;

&lt;p&gt;If similarly we want to specify the parent directory of the current directory, we can use double dots ("..") &lt;/p&gt;

&lt;p&gt;../../files/newfile&lt;/p&gt;

&lt;p&gt;Now that we know where we are currently using &lt;em&gt;pwd&lt;/em&gt;, let us see how we can change to a new directory from our present working directory.&lt;/p&gt;

&lt;p&gt;2) CD&lt;/p&gt;

&lt;p&gt;SYNTAX:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cd [directory]&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;where &lt;strong&gt;directory&lt;/strong&gt; is the name of the directory that we want to change to.&lt;/p&gt;

&lt;p&gt;Let us assume the present directory is /user/tina&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;code&gt;_$ pwd_&lt;/code&gt;&lt;br&gt;
/user/tina&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To move to the root directory&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;$ cd /&lt;/code&gt;&lt;br&gt;
where the slash denotes the root directory as already discussed.&lt;/p&gt;

&lt;p&gt;To move to another directory we will use the path name such as:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ cd /user/stud&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;To move to the home directory:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$cd&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;We can use either absolute or relative pathnames to change directory.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;NOTE:&lt;br&gt;
1) cd ../ will take you to the parent directory.&lt;br&gt;
2) cd ../../ takes you to the parent's parent directory&lt;/p&gt;

&lt;p&gt;...To be continued! :)&lt;/p&gt;

</description>
      <category>unix</category>
      <category>directory</category>
      <category>commands</category>
    </item>
    <item>
      <title>Cracking the Code: Decoding the 'Hello World' Program in C++"</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Tue, 30 May 2023 17:46:27 +0000</pubDate>
      <link>https://forem.com/tina_popli/getting-started-with-c-51pl</link>
      <guid>https://forem.com/tina_popli/getting-started-with-c-51pl</guid>
      <description>&lt;p&gt;The C++ Programming language was developed at &lt;strong&gt;AT&amp;amp;T Bell Laboratories&lt;/strong&gt; in the early 1980s. The name C++ was coined by Rick Mascitti where "++" stands for the C increment operator.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcdg1fdtpevegl7hckrfe.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcdg1fdtpevegl7hckrfe.jpeg" alt="Let's code!" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;em&gt;A FIRST LOOK AT C++ PROGRAMMING&lt;/em&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Let us start with a basic, common and a popular example of a C++ Program that prints a string on the screen.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//My First C++ Program
#include &amp;lt;iostream&amp;gt;

int main()
{
    std::cout &amp;lt;&amp;lt; "Hello World";
    return 0;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let us have a look at all these elements one-by-one:&lt;/p&gt;

&lt;p&gt;(i) &lt;strong&gt;//My first C++ Program&lt;/strong&gt;&lt;br&gt;
A Comment in C++ starts from "//". Compiler does not execute or compile these statements. These are generally included for the programmers to explain the logic or give a short explanation. &lt;/p&gt;

&lt;p&gt;(ii) &lt;strong&gt;#include &amp;lt; iostream &amp;gt;&lt;/strong&gt;&lt;br&gt;
The line #include  is like a special instruction in C++. It tells the compiler to include a bunch of useful tools for input and output operations from a file called . This  file is part of the C++ Standard Library, which is like a collection of pre-made code that we can use in our programs. Inside , there are things like std::cin for getting input from the user, and std::cout for displaying output on the screen. If we don't include , the compiler won't know about std::cout and will give us an error if we try to use it. So it's important to include  to make sure we can use std::cout and other useful features for input and output.&lt;/p&gt;

&lt;p&gt;(iii) &lt;strong&gt;int main()&lt;/strong&gt;&lt;br&gt;
This is used as the entry point of any program. The content of main() function is where the execution &lt;strong&gt;begins&lt;/strong&gt; from. It is &lt;strong&gt;essential&lt;/strong&gt; for a C++ Program to have a main() function.&lt;/p&gt;

&lt;p&gt;(iv) &lt;strong&gt;cout&amp;lt;&amp;lt;"Hello World";&lt;/strong&gt;&lt;br&gt;
This is the most important element of the program in order to print the string on the screen. It is like a command in C++ that tells the computer to display the message "Hello World" on the screen. In this line, &lt;strong&gt;std::cout&lt;/strong&gt; is a special object that represents the &lt;strong&gt;standard output stream&lt;/strong&gt;, which is basically a way to send information to the console. It's like a communication channel between our program and the screen.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;&amp;lt;&amp;lt;&lt;/strong&gt; operator is used to send the message "Hello World" to std::cout. It's like putting the message into the communication channel.&lt;/p&gt;

&lt;p&gt;So, when the program executes this line, it takes the message "Hello World" and sends it to std::cout. Then, std::cout displays the message on the screen for us to see.&lt;/p&gt;

&lt;p&gt;This way, we can use std::cout and the &amp;lt;&amp;lt; operator to print out any messages or information we want to show to the user while our program is running.&lt;/p&gt;

&lt;p&gt;(v) &lt;strong&gt;return 0&lt;/strong&gt;&lt;br&gt;
The return statement instructs the main() function to stop and return a value. Here, it is returning 0(zero) which means the program has terminated normally without any errors during the execution.&lt;/p&gt;

&lt;p&gt;Some &lt;strong&gt;NOTES&lt;/strong&gt; to keep in mind:&lt;/p&gt;

&lt;p&gt;(a) Every executable statement in C++ ends with a semicolon &lt;strong&gt;";"&lt;/strong&gt;.&lt;br&gt;
(b) Every C++ program must have a main() function, without a main() function, the program would not have a designated starting point, and the compiler would not know where to begin the execution. Therefore, having a main() function is a fundamental requirement for a valid C++ program.&lt;br&gt;
(c) Comments can be made using "&lt;strong&gt;/&lt;em&gt;....&lt;/em&gt;/&lt;/strong&gt;" as well, this type of syntax is usually used at the time of multiline or block comments. For single line comments, we usually use "//.."&lt;br&gt;
(d) A Program in C++ usually includes a header file "iostream.h" for standard stream input/output facilities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;TIME FOR SOME EXERCISE, ARE YOU READY?&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#include &amp;lt;iostream&amp;gt;

int main()
{
    int num1, num2;
    std::cout &amp;lt;&amp;lt; "Enter 2 numbers: ";
    std::cin &amp;gt;&amp;gt; num1 &amp;gt;&amp;gt; num2;

    // Sum of 2 numbers
    int sum = num1 + num2;
    std::cout &amp;lt;&amp;lt; "Sum = " &amp;lt;&amp;lt; sum &amp;lt;&amp;lt; std::endl;

    // Continue for Product of 2 numbers

    // Continue for Subtraction of 2 numbers

    // Continue for Division of 2 numbers

    return 0;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Drop your snippets in the comments section below, looking forward!! :)&lt;br&gt;
Any questions? Drop them in the comments section below, Let's discuss! :)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Web Development</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Thu, 25 May 2023 08:22:21 +0000</pubDate>
      <link>https://forem.com/tina_popli/introduction-to-web-development-2al5</link>
      <guid>https://forem.com/tina_popli/introduction-to-web-development-2al5</guid>
      <description>&lt;p&gt;&lt;strong&gt;Web Development&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Have you ever wondered how are the beautiful websites you see in the internet, created? What's the behind the scene work done, how's it maintained? &lt;br&gt;
In our modern era, the internet has seamlessly integrated into our daily lives. We depend on websites to fulfill various needs, be it finding information, socializing, or engaging in online shopping. However, behind the captivating user interfaces lies a sophisticated process called web development. &lt;br&gt;
The term Web Development is basically made using two words:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Web&lt;/strong&gt;- Websites, using the internet&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Development&lt;/strong&gt;- Behind the scene work done to create a website, i.e Building these websites from the scratch!&lt;br&gt;
Isn't it amazing? &lt;br&gt;
Let's head over to how's it done now! &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsnr6xilk2eewt3xazfj5.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsnr6xilk2eewt3xazfj5.jpeg" alt="Image description" width="800" height="534"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Different Categories in Web Development&lt;/strong&gt;&lt;br&gt;
Web development is broadly divided into 2 Categories, they are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1) Front End Web Development&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;2) Back End Web Development&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;FRONT END WEB DEVELOPMENT&lt;/strong&gt;&lt;br&gt;
This involves building, developing and maintaining the user interface of the website so that the website visitors can easily interact with the page. It basically focuses on the Client side of web development&lt;/p&gt;

&lt;p&gt;This is done by using 3 main languages which are:&lt;/p&gt;

&lt;p&gt;1) HTML&lt;br&gt;
2) CSS and &lt;br&gt;
3) JAVASCRIPT&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt;&lt;br&gt;
HTML stands for Hyper Text Mark-up Language. &lt;br&gt;
It uses Mark-up to describe the structure of the Web Pages. It is a language which is used to create the structure of the websites. For example, a website may include content like words, paragraphs, images, tables etc. and this content is structured using HTML.&lt;/p&gt;

&lt;p&gt;Here is a basic example of how HTML Syntax looks like!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feljvkyrcnref2kqj36zv.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feljvkyrcnref2kqj36zv.JPG" alt="Image description" width="656" height="324"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS&lt;/strong&gt;&lt;br&gt;
CSS (Cascading Style Sheets) is used to style the content of the page. It describes how the content written by html should be displayed. For example, it can be used to control the Formatting styles, colors, background images, borders etc.&lt;/p&gt;

&lt;p&gt;Here is how we could style the above basic html page using CSS-&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flaa979elmn42kk6m6e1s.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flaa979elmn42kk6m6e1s.JPG" alt="Image description" width="678" height="326"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JAVASCRIPT&lt;/strong&gt;&lt;br&gt;
JavaScript involves controlling and manipulating data. It is a dynamic programming language that supports Math calculations, allows us to manipulate HTML and CSS characteristics.  &lt;/p&gt;

&lt;p&gt;Here's a basic example as to how we can trigger the changeText() function in JavaScript.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcepw0n8nq4088iusqzyg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcepw0n8nq4088iusqzyg.png" alt="Image description" width="800" height="551"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;BACKEND WEB DEVELOPMENT&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Backend Development is also known as server-side development. It encompasses the creation of websites by managing the behind the scene functions, Backend developers use languages such as Python,php,Ruby along with frameworks like Django or Ruby on Rails, to handle data storage, server-side logic, and API (Application Programming Interface) integration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;FULL STACK DEVELOPMENT&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This involves both frontend and backend development skills, hence allows the developers to handle all aspects of web development.&lt;/p&gt;

&lt;p&gt;Full-stack developers play a crucial role in the end-to-end development of web applications, encompassing a broad range of responsibilities and requiring a comprehensive understanding of various technologies and tools. Collaboration is a key aspect of their work, as they often collaborate with team members throughout the development process.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>javascript</category>
      <category>website</category>
    </item>
    <item>
      <title>All About Microsoft Learn Student Ambassadors (MLSA)</title>
      <dc:creator>Tina Popli</dc:creator>
      <pubDate>Tue, 20 Apr 2021 19:12:17 +0000</pubDate>
      <link>https://forem.com/tina_popli/all-about-microsoft-learn-student-ambassadors-mlsa-22nc</link>
      <guid>https://forem.com/tina_popli/all-about-microsoft-learn-student-ambassadors-mlsa-22nc</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Microsoft Learn Student Ambassadors Program ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Microsoft Learn Student Ambassadors Program is a program to bring together all the students from all over the world who have the passion for Technology, have the desire and craze to learn more about technology and help the community.&lt;br&gt;
The Ambassadors get an opportunity to interact with their peers, mentors, Professionals, learn various Microsoft technologies, and implement it in real world.&lt;br&gt;
  &lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjb1p0zcvmgrdx7yq9sur.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjb1p0zcvmgrdx7yq9sur.png" alt="image" width="800" height="447"&gt;&lt;/a&gt; &lt;strong&gt;Eligibility Criteria:&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;To apply for the program:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;i) You must be at least 16 years old, have valid identification and be actively enrolled in an accredited, higher education academic institution.&lt;/p&gt;

&lt;p&gt;ii) Some experience in coding or technology will definitely be helpful, but do not worry if you don't have much of technical background. Students of all  academic backgrounds who are interested in growing their career and tech skills, are encouraged to apply for this program, as all the tools and resources are provided to help you learn more and engage in the program. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What are the benefits of being a Microsoft Learn Student Ambassador?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;. Access to Microsoft 365, plus TechSmith Snagit and Camtasia &lt;br&gt;
  screen capture and recording software&lt;br&gt;
. Visual Studio Enterprise subscription and $150 monthly Azure &lt;br&gt;
  credits&lt;br&gt;
. Exam certification vouchers&lt;br&gt;
. LinkedIn Learning&lt;br&gt;
. Free Name.com domain name&lt;br&gt;
. Event support&lt;br&gt;
. Engagement with Cloud Advocates and Microsoft MVPs&lt;br&gt;
. Student Ambassador Milestone badges to highlight program accomplishments on your LinkedIn profile&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;New Student Ambassadors&lt;/strong&gt; receive access to the Amazing Community on Microsoft Teams and get opportunity to connect with Professionals/Mentors etc. in this community, Access to Microsoft 365, access to Techsmith Snagit and Camtasia screen capture and recording software and many more benefits. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;.&lt;/strong&gt;  Apart from this, There are 3 milestones you can achieve to avail the benefits-&lt;br&gt;
i) &lt;strong&gt;Alpha&lt;/strong&gt; - Complete a Microsoft Learn path and Azure credits will be unlocked (Azure credits of 150$ per month) with your Visual Studio Enterprise subscription benefit. LinkedIn Learning subscription. You’ll also receive a certification voucher, and a free domain name and many more. &lt;/p&gt;

&lt;p&gt;ii) &lt;strong&gt;Beta&lt;/strong&gt; - You have to host an event in your community to unlock event support and resource benefits. Once you reach Beta, You could also get an invitation to join the annual Microsoft Learn Student Ambassadors Summit, You will be receiving Swags and amazing accessories from Microsoft as well. &lt;br&gt;
(This includes the benefits of Alpha as well)&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7t0rrfxxqh5bajk308th.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7t0rrfxxqh5bajk308th.jpg" alt="Alt Text" width="800" height="800"&gt;&lt;/a&gt; My Beta MLSA Swag Kit :)  &lt;/p&gt;

&lt;p&gt;iii) &lt;strong&gt;Gold&lt;/strong&gt; - Once you’ve gone above and beyond in earning your badges and serving your local community, and have been an active participant in the program, you will be invited to the Gold milestone! You'll also be able to gain access to special events, and may also be invited to become a Microsoft Most Valuable Professional (MVP), also Gold MLSA Swag Kit with super amazing goodies! (Including the benefits of Alpha and beta) &lt;/p&gt;

&lt;p&gt;&lt;em&gt;More details in the below picture!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe33bqe4o5rdgwm38ymfz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe33bqe4o5rdgwm38ymfz.png" alt="Alt Text" width="800" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This program sponsors all the undergraduate and postgraduate students in terms of technology and all the events they do in this community. Once you are an ambassador, you are introduced to the amazing community and you can start hosting events!&lt;/p&gt;

&lt;p&gt;One of the most special thing I love about this program is, we get to learn so much, grow our career and technical skills, and whatever we learn, we share it among our peers by hosting events. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Isn't it amazing? So, what are you waiting for? Apply now!:)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Application form is open throughout the year&lt;/strong&gt;, The selections are done on a quarterly basis. The latest selections were in July(2023), so the next cohort is expected to be announced in around &lt;strong&gt;October 2023&lt;/strong&gt; for which the last date to apply was 31st august 2023, applications sent after that will be considered for January 2024 cohort.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;You can apply for this program through this link:&lt;/em&gt;&lt;br&gt;
&lt;a href="https://studentambassadors.microsoft.com/en-US/" rel="noopener noreferrer"&gt;https://studentambassadors.microsoft.com/en-US/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The main steps to follow while applying for this program are as follows:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 1:&lt;/strong&gt; Go to &lt;a href="https://studentambassadors.microsoft.com/en-US/" rel="noopener noreferrer"&gt;https://studentambassadors.microsoft.com/en-US/&lt;/a&gt;&lt;br&gt;
            Click on "Apply now" and Login with any of the mentioned options available.  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fja6plpqbqx9kl1bng4or.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fja6plpqbqx9kl1bng4or.png" alt="Alt Text" width="800" height="385"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 2:&lt;/strong&gt; Once you are logged in, read all the privacy and terms, and confirm your eligibility.&lt;br&gt;
Once you confirm, you will be introduced to a Personal Info section, fill all the details carefully. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F85wibopwwdsg11t5ihjc.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F85wibopwwdsg11t5ihjc.jpg" alt="Alt Text" width="800" height="405"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 3:&lt;/strong&gt; Once you have filled the personal information, you will be introduced to the academic information section, once you fill that, the most important part of this application comes: Written Sample.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu7a43haway2zoug6hmzj.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu7a43haway2zoug6hmzj.jpeg" alt="Alt Text" width="800" height="390"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt; The Written Sample is the most important part of this application, where you have to answer the given questions. &lt;br&gt;
This section is divided into three parts, as shown in the picture.&lt;br&gt;
&lt;strong&gt;.&lt;/strong&gt; &lt;em&gt;INSPIRE&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;.&lt;/strong&gt; &lt;em&gt;TEACH&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;.&lt;/strong&gt; &lt;em&gt;PROMOTE&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffm1s24hrzkqif0sjnt6u.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffm1s24hrzkqif0sjnt6u.jpeg" alt="Alt Text" width="800" height="401"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3zvvs8n7rwpxfbyheqvr.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3zvvs8n7rwpxfbyheqvr.jpeg" alt="Alt Text" width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Each field has to be answered with either a video or a written sample. Please note: It is necessary to answer at least one question in the form of a video.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;&lt;em&gt;Tips to answer these questions:&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
1) Make sure your answers are honest and genuine, try to explain why you are passionate about technology, and what made you inspire in your best way, that is very important! &lt;br&gt;
2) Mention all your achievements including the projects you are working on/completed, what are the programming languages you've learnt, competitions/Workshops you have organized/participated/won. &lt;br&gt;
3) Take an example and explain how you would teach that topic to your peers. &lt;br&gt;
4)If you are hosting an event, explain how would you plan on organizing it from the start, how would you promote it to gather as many students possible to attend the event. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;These are some of the main points you can keep in your mind while answering the questions, accordingly.&lt;/em&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 5:&lt;/strong&gt; Then comes the social media section, where you can include the links of all the social media platforms you use, as mentioned in the fields.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4lh5gok8l9v15ly7su5.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4lh5gok8l9v15ly7su5.jpeg" alt="Alt Text" width="800" height="405"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also do not hesitate to share the links of any of your blogs/YouTube videos etc.  thinking there is nothing much in it or there is less content, nothing is less when you try to share your knowledge or ideas, what you share and how you share it, is important! :)&lt;br&gt;
This is also where they will get to know more about you! :) &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STEP 6:&lt;/strong&gt; Once you have completed filling the social media section, mention all the technologies you are interested in!&lt;br&gt;
And if you think there is some additional information you want to add, you can add it in the next field asked in Additional Information section, after the technologies list!&lt;br&gt;
For example, I am also passionate about the game of Chess, so I mentioned some of my achievements of Chess in this field.&lt;br&gt;
Similarly, you can add in anything you want to share, here.&lt;/p&gt;

&lt;p&gt;And this completes the Application form!&lt;/p&gt;

&lt;p&gt;Hope you were able to fill it properly, if you have any doubts/questions, do put it in the comments below, I will answer them, Or you can contact me through LinkedIn: &lt;em&gt;&lt;a href="https://www.linkedin.com/in/tina-popli-025a891b4/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/tina-popli-025a891b4/&lt;/a&gt;&lt;/em&gt; or Twitter: &lt;em&gt;&lt;a href="https://twitter.com/tina_popli" rel="noopener noreferrer"&gt;https://twitter.com/tina_popli&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I discovered about this Program by one of my seniors and through social media, and from then I was super excited to fill this form and apply for this amazing program. Once I filled, I was super happy to be one of those ambassadors who were selected, in January 2021. It was one of the most amazing days. Since then I am enjoying being in such a program and community.&lt;br&gt;
I always tell everyone, that this is a family where we learn and grow together! I Hope you're all even more inspired to apply for this super amazing program, and are as excited as I was, to apply for this program! :)&lt;/p&gt;

&lt;p&gt;No matter what the result will be, give your best, and work hard!!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: If an application is rejected, Applicant can reapply for the program.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Also, if you are thinking that can Microsoft Learn Student Ambassadors apply for Imagine Cup? YES! If you have a unique technology solution that you’d like to enter for the &lt;em&gt;Imagine Cup&lt;/em&gt; , all Microsoft Student Ambassadors are welcome to register for it, if you would like to know more about Imagine Cup, you can check here, &lt;a href="https://imaginecup.microsoft.com/en-us/Events" rel="noopener noreferrer"&gt;https://imaginecup.microsoft.com/en-us/Events&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Best Wishes! :)&lt;/p&gt;

</description>
      <category>microsoft</category>
      <category>msftstudentambassadors</category>
      <category>imaginecup</category>
      <category>mlsa</category>
    </item>
  </channel>
</rss>
