<?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: Sumaiya Tasnim</title>
    <description>The latest articles on DEV Community by Sumaiya Tasnim (@sumaiyatasnim).</description>
    <link>https://dev.to/sumaiyatasnim</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%2F767182%2Fddc9cd76-e528-4413-9d61-3aaed18185e0.jpeg</url>
      <title>DEV Community: Sumaiya Tasnim</title>
      <link>https://dev.to/sumaiyatasnim</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sumaiyatasnim"/>
    <language>en</language>
    <item>
      <title>Some Concepts of backend </title>
      <dc:creator>Sumaiya Tasnim</dc:creator>
      <pubDate>Sat, 19 Feb 2022 21:04:27 +0000</pubDate>
      <link>https://dev.to/sumaiyatasnim/some-concepts-of-backend-ji</link>
      <guid>https://dev.to/sumaiyatasnim/some-concepts-of-backend-ji</guid>
      <description>&lt;p&gt;Q.  CRUD Operations. &lt;br&gt;
CRUD Meaning: CRUD is an acronym that comes from the world of computer programming and refers to the four functions that are considered necessary to implement a persistent storage application: create, read, update and delete.&lt;/p&gt;

&lt;p&gt;Q. JWT .&lt;br&gt;
WT, or JSON Web Token, is an open standard used to share security information between two parties — a client and a server. Each JWT contains encoded JSON objects, including a set of claims. JWTs are signed using a cryptographic algorithm to ensure that the claims cannot be altered after the token is issued.&lt;/p&gt;

&lt;p&gt;Q .What is a mongoose used for?&lt;/p&gt;

&lt;p&gt;Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node. js. It manages relationships between data, provides schema validation, and is used to translate between objects in code and the representation of those objects in MongoDB.&lt;/p&gt;

&lt;p&gt;Q. Is MySQL is a relational database?&lt;br&gt;
MySQL databases are relational.&lt;br&gt;
The logical model, with objects such as databases, tables, views, rows, and columns, offers a flexible programming environment. ... SQL is the most common standardized language used to access databases.&lt;/p&gt;

&lt;p&gt;Q.What is aggregation and example?&lt;br&gt;
Aggregation is the process of combining things. That is, putting those things together so that we can refer to them collectively. As an example, think about the phone numbers on your cell phone. You can refer to them individually - your mother's number, your best friend's number, etc.&lt;/p&gt;

&lt;p&gt;Q. Express&lt;br&gt;
Express. js is a free and open-source web application framework for Node. js. It is used for designing and building web applications quickly and easily.&lt;/p&gt;

</description>
      <category>node</category>
      <category>backend</category>
    </item>
    <item>
      <title>Some CSS Questions</title>
      <dc:creator>Sumaiya Tasnim</dc:creator>
      <pubDate>Sat, 19 Feb 2022 16:25:19 +0000</pubDate>
      <link>https://dev.to/sumaiyatasnim/some-css-questions-2bla</link>
      <guid>https://dev.to/sumaiyatasnim/some-css-questions-2bla</guid>
      <description>&lt;p&gt;1.How will you make font size responsive?&lt;br&gt;
-If we specify text size with vw unit, it will be changed with respect to the screen size.&lt;br&gt;
-We can also change font size with media queries.&lt;br&gt;
-also declaring the value with rem can also make fonts responsive if the root value of the browser changes.&lt;br&gt;
 11.What are CSS Sprites?&lt;br&gt;
-The mechanism of combining multiple images into one larger image is called CSS sprites. Gmail uses such technique. A sprite generator pack can be used to achieve the objective.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What are Vendor-Prefixes?
-Browser vendors add some experimental CSS and JavaScript APIs. It is done to inspire developers to try out new ideas. But in reality we see that sometimes these prefixes breaks code. 
Some common prefixes are -webkit-(chrome), -moz-(firefox), -o-(opera), -ms-(IE, ME)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;3.What is tweening?&lt;br&gt;
-Sometimes there is a frame that is produced between two images, this mechanism is called tweening. It is an illusion that makes an impression that the first image is naturally transitioned into the second image. Almost all forms of animation use this technology. This effect can be produced with CSS3 with Transform values such as matrix, convert, rotate and scale.&lt;/p&gt;

&lt;p&gt;4.How is inheritance implemented in CSS?&lt;br&gt;
-When a child class get holds off, the assets that the parent element posses is called inheritance. It easily defines the hierarchy in CSS from top to bottom. Usually, if the class-name in parent and child are the same, then child class will override the property.&lt;/p&gt;

&lt;p&gt;5.What does the embedded stylesheet mean?&lt;br&gt;
-A reserved space which specify the style sets for the HTML text in a singular location. It is put into effect when the styles are embedded inside HTML tags.&lt;/p&gt;

&lt;p&gt;6.What is a declaration block?&lt;br&gt;
-Declaration block in CSS is the space where one or more declaration takes place separated by semicolon. Each declaration contains a CSS property name and value assigned to it and then separated by a semicolon. Declaration blocks look like this&lt;/p&gt;

&lt;p&gt;h1{color:white;}&lt;br&gt;
p{text-align:center} &lt;/p&gt;

&lt;p&gt;7.What is RWD?&lt;br&gt;
-RWD stands for Responsive web design. This idea is implemented to make a webpage fit to any kind of screen available and make the page readable.&lt;/p&gt;

&lt;p&gt;8.What is the difference between visibility: hidden and display: none?&lt;br&gt;
-visibility hidden means the element is there but can not be seen. But it will consume no space.&lt;br&gt;
-Display none means the element is hidden, but it will take up some space, hence the layout will be affected.&lt;/p&gt;

&lt;p&gt;9.What is the ruleset?&lt;br&gt;
-The phenomenon where two selectors are combined is called a ruleset.&lt;br&gt;
1&lt;/p&gt;

&lt;blockquote&gt;
&lt;/blockquote&gt;

&lt;p&gt;0.How case-sensitive is CSS?&lt;br&gt;
-CSS is not usually case-sensitive, except for the URLs and font families. But when XML is used, the declaration with XHTML DOCTYPE CSS is case-sensitive.&lt;/p&gt;

</description>
      <category>css</category>
    </item>
  </channel>
</rss>
