Skip to main content

LATEST FROM BMR BLOG

STRUCTURED QUERY LANGUAGE(SQL)

STRUCTURED QUERY LANGUAGE(SQL) Created by: B Mokshagna Reddy (BMR) SQL DATA DEFINITION AND DATATYPES SQL Schema: An SQL schema is identified by a schema name and includes an authorization identifier name to indicate user or account who owns the schema, as well as descriptor for each elements in the schema. Schema creation with authorization: CREATE SCHEMA DATABASE_NAME AUTHORIZATION IDENTIFIER; Eg: CREATE SCHEMA COMPANY AUTHORIZATION ‘JSMITH’; Catalog: Named collection of schemas. Data Definition, Constraints, and Schema Changes Used to CREATE, DROP, and ALTER the descriptions of the tables (relations) of a database Creating a Database Syntax: CREATE DATABASE database_name; Creating a Table Syntax CREATE TABLE table_name (Column_name datatype[(size)], Column_name datatype[(size)], ); Specifies a new base relation by giving it a name, and specifying each of...

KNOW ABOUT BMR COINS

BMR COINS

Created by: B Mokshagna Reddy (BMR)


1. REFERRING A FRIEND - 30 Per Referral:

Get 30 Per Referral for a existing user.
The Coins will be instantly Credited into your BMR EDUCATION account after the new user verifies your account.
To avail this option you to register by entering the refferal code of your friend's BMR EDUCATION account.
For new registration using referal code can also get 15 BMR COINS.

2. PAGE VIEWS - 1 Per Page View:

Get 1 Per Page View
The Coins will be instantly Credited into your BMR EDUCATION account after the user views the pages of BMR EDUCAION Website.
To avail this option the user needs to login into their BMR EDUCATION account.

3. SHARING - 5 Per Sharing:

Get 5 Per Sharing on Social media accounts.
The Coins will be instantly Credited into your BMR EDUCATION account after the user share on Social media accounts.
You can share only on facebook and Twitter available on Home page of this websie.

4. USER RATING - 3 Per User Rating:

Get 3 Per User Rating
The Coins will be instantly Credited into your BMR EDUCATION account after the user Gives his rating n our website.
You can give the rating on EDUCATION, CODING and REFERENCE Pages of this websie.

IMPORTANT POINTS TO NOTE

All Options are active when you are logged into our BMR EDUCATION account.
BMR COINS are a Digital number Coins which are valid only in BMR EDUCATION(www.bmreducation.com) website only.
BMR COINS Can be redeemed only at BMR STORE where you can buy BADGES, MEMBERSHIPS, BOOK and More.



Know More at BMR EDUCATION

Comments

Popular Posts From BMR BLOG

CSS SELECTORS

CSS SELECTORS Created by: B Mokshagna Reddy (BMR) CSS Selectors ➢CSS selectors are used to "find" (or select) the HTML elements you want to style. ➢We can divide CSS selectors into five categories: ➢Simple selectors (select elements based on name, id, class) ➢Combinator selectors (select elements based on a specific relationship between them) ➢Pseudo-class selectors (select elements based on a certain state) ➢Pseudo-elements selectors (select and style a part of an element) ➢Attribute selectors (select elements based on an attribute or attribute value) The CSS Element Selectors ➢The element selector selects HTML elements based on the element name. Example p {font-size: 10px;color:red; } The CSS id Selectors ➢The id selector uses the id attribute of an HTML element to select a specific element. ➢The id of an element is unique within a page, so the id selector is used to select one unique...

HTML INTRODUCTION

HTML INTRODUCTION Created by: B Mokshagna Reddy (BMR) INTRODUCTION ➢HTML stands for Hyper Text Markup Language. ➢HTML is the standard markup language for creating Web pages. ➢HTML describes the structure of a Web page. ➢HTML consists of a series of elements. ➢HTML elements tell the browser how to display the content. ➢HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. Web or Internet? ➢It is important to understand that the Internet and the Web is not the same thing. ➢The Internet is a collection of computers and other devices connected by equipment that allows them to communicate with each other. ➢The Web is a collection of software and protocols that has been installed on most, if not all, of the computers on the Internet. The World Wide Web ➢Tim Berners Lee and his group proposed a new protocol for the Inter...

MAKE YOUR OWN BLOG SITE AND START EARNING

Minimum Requirements 1. You need your Gmail account. 2. An Adsense account. 3. Prepare your own content about any topic you wish. How to Start your own blog? 1. You can start your own blog without any code or programming Knowledge. 2. By user Google Blogger website. 3. you can start your own Blog website. 4. Enter your articles and publish them on your Blog website. 5. you can edit your blog articles, theme, and more anytime easily. 6. you can create your own blog website theme. How do I earn from my blog website? 1. To start earning from my blog website you should connect your site to Adsense. 2. if you are new to AdSense then create an account easily. 3. On your blogger home page you will find the earnings section. 4. At the earnings section you will find an option Connect to Adsense . 5. Connect your site and wait until the page is reviewed for approval. How to set up an AdSens...

ENGINEERING

ENGINEERING Created by: B Mokshagna Reddy (BMR) CHEMISTRY 1. Environmental Studies - Related Topics 2. Nano Technology - Related Topics COMPUTER SCIENCE 1. Ardunio Board Using C - Related Topics 2. Software Engineering - Related Topics ENGLISH 1. BASIC ENGLISH - Related Topics 2. MEDIUM ENGLISH - Related Topics ELECTRONICS 1. Communication Systems - Related Topics 2. Digital Design - Related Topics 3. Opto Electronics and device Physics Related Topics MATHEMATICS 1. Calculus and Linear Algebra - Related Topics 2. Transsform Techniqued and Partial Differrential Equations - Related Topics 3. Applied Statistics Related Topics Note: 1. Topics are designed by BMR EDUCATION. 2. As of December 19 2022 Updated list of available Notes of ENGINEERING TOPICS. 3. You can also download the content notes for free at our ...

NEET UG

NEET UG Created by: B Mokshagna Reddy (BMR) UNIT - 1 : CELL STRUCTURE AND FUNCTION 1. Cell: The unit of Life - Related Notes 2. Biomoleclues - Related Notes 3. Cell Cycle and Cell Division - Related Notes UNIT - 2 : DIVERSITY IN THE LIVING WORLD 1. The Living World - Related Notes 2. Biological Classification - Related Notes UNIT - 3 : PLANT AND ANIMAL KINGDOM 1. Plant Kingdom - Related Notes 2. Animal Kingdom: Basics of Classification - Related Notes 3. Animal Kingdom: NON - CHORDATA - Related Notes 4. Animal Kingdom: CHORDATA - Related Notes NEET UG GUIDE 1. Neet Stats - Related Notes 2. Neet Syllabus - Related Notes 3. Neet Seat Matrix - Related Notes Note: 1. Topics are designed by BMR EDUCATION. 2. As of December 19 2022 Updated list of available Notes of NEET UG. 3. You can also download the content notes for free at our website. Know More at BMR EDUCATION

HTML ELEMENTS

HTML ELEMENTS Created by: B Mokshagna Reddy (BMR) ➢An HTML element is defined by a start tag, some content, and an end tag. ➢The HTML element is everything from the start tag to the end tag. Start tag Element Content Eng tag <h1> Headings </h1> <p> Paragraphs </p> <br> none none Nested HTML Elements ➢HTML elements can be nested (this means that elements can contain other elements). ➢All HTML documents consist of nested HTML elements. The following example contains four HTML elements (<html>, <body>, <h1> and <p>): Example <!DOCTYPE html> <html> <body> <h1>Heading</h1> <p>Paragraph</p> </body> </html> Result ...

PYTHON INTRODUCTION

PYTHON INTRODUCTION Created by: B Mokshagna Reddy (BMR) INTRODUCTION ➢Created by Guido Van Rossum. ➢First released in 1991. ➢Supports object-oriented Programming with classes and multiple inheritance. ➢Comes with large standard library. ➢Includes an IDLE. ➢Runs on Mac OS X, Windows, Linux as Freeware. FEATURES Easy to Use: Python is very easy to use and high level language. Thus it is programmer-friendly language. Expressive Language: Python language is more expressive. The sense of expressive is the code is easily understandable. Interpreted Language: Python is an interpreted language i.e., interpreter executes the code line by line at a time. This makes debugging easy and thus suitale for beginners. Cross-platform language: Python can run equally on different platforms such as Windows, Linux, Unix, Macintosh etc. Thus, Python is a portable language. Free and open source: Python language is freely ...

THREE TYPES OF WEBSITE TO START EARNING ON ADSENSE

THREE TYPES OF WEBSITE TO START EARNING ON ADSENSE Created by: B Mokshagna Reddy (BMR) 1. Blog Website 1. Having a blog website gives you more earnings on Adsense. 2. You can publish your own content and publish on your website. 3. Based on your content more users drive to your website. 4. So that your ad placements and traffic from other countries makes you give more income from Adsense. 5. You can start your own blog website for free Google blogger - Blogger 6. Get more information at our Exclusive Article 7.Finally, Start Earning from your own blog website. 2. Forum Website 1. Having a Forum website can also give more earnings on Adsense. 2. Forum is a website where everyone discuss about any topic and shares thier post. 3. Where everyone come and see thier post in your forum website. 4. Google says: This is a highly active forum with over one ...

CSS INTRODUCTION

CSS INTRODUCTION Created by: B Mokshagna Reddy (BMR) INTRODUCTION ➢CSS is the language we use to style a Web page. ➢CSS stands for Cascading Style Sheets. ➢CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. ➢CSS describes how HTML elements are to be displayed on screen, paper, or in other media. ➢CSS saves a lot of work. It can control the layout of multiple web pages all at once. ➢External stylesheets are stored in CSS files. ➢CSS describes how HTML elements should be displayed. ➢Having no CSS is like living a faded life. No excitement, no moods, no emotions, just a straight-up structure with some content in it. Types in CSS CSS can be added to HTML documents in 3 ways: ➢Inline - by using the style attribute inside HTML elements. ➢Internal - by using a <style> element in the <head$gt; section. ➢External - by using a <link> element to link to ...