Friday 15 May 2020

Part 1: Write the HTML

Part 1: Write the HTML
 
What's your favorite food? Do you know how to make it yourself? If not, look up the recipe online. Next, create an HTML document, and within the body of the page, create two lists:

1. The first list should be an unordered list of all the ingredients needed to make the dish.
2. The second list should be an ordered list, detailing the steps you need to take to prepare that dish.

Then, add comments to your HTML, to explain the purpose of each section of code that you create.


Part 2: Save the HTML

Once you have created your document, save the file as a ".html" file. For example, the name of the file could be "recipe.html" or "homework1.html" etc.

If you are using JS Bin to compose your code, you should be able to find an "export" or "download" option from the menu. You may need to be logged-in to JSbin for that to work. If that doesn't work for you, then simply select and copy your code from JS Bin, then paste it into a text editor, and save the document as an HTML file (with the .html extension). If you don't have a text editor installed on your machine, we recommend you download and use Atom, Sublime, Visual Studio Code, or Notepad++.


Part 3: Share Your Work and Teach Others

It's time to share your work with the world, and teach others what you learned. Write up a short explanation (1-2 paragraphs) of the code you created. Explain what you learned in the course so far, and then explain how your code works.

Then, take your explanation and create a post online that shares your code and the writeup. This could be any of the options below:

Pick one of these options only

1. A blog post / Medium post
2. A reddit post
3. A tweet
4. An instagram post or story
5. A facebook post or story
6. A LinkedIn post
7. A youtube video / screenshare
8. A facebook video / screenshare
9. A Snapchat or Tiktok video

Pick the option that works for you. Get creative! Once you're done, take screenshots of the post/video you created.

Note: Creating a post in our Student Forum does not count, as the purpose of the assignment is to teach the public, not our current students.

Thursday 27 June 2019

Do You Want To Earn Money Online ??

WATCH VIDEO

                                                        

Monday 24 June 2019

Design your own website with us !!

Do you have small business and you want to grow your business via online ?

Contact Us  On- Bmtech04@gmail.com

Wednesday 22 May 2019

How to Install Xampp server

How to install Xamp server?






Do you know about really fact behind artificial intelligence?

ARTIFICIAL INTELLIGENCE




There are undoubted risks, not yet and possibly not soon, from Artificial Intelligence (AI).  The dangers of creating an AI that has the capability to dominate humanity is no longer the stuff of science fiction. Nick Bostrom, in his excellent book “Superintelligence”, published last year, makes a strong case for the effective management of AI and for the need to create AIs that have good intent towards humanity.  He is more optimistic than I am about the ability of humanity to manage that development.
The World Economic Forum has recently published a blog asking, “What risks does Artificial Intelligence pose? “It references an open letter from the top AI researchers in industry and academia (including Hawking and Musk) that argues that AI research and application is moving forward probably at a faster pace than most people realise and that its impact on society will only increase.  So the letter seeks to ensure that any research ensures that AI systems behave in a way that is beneficial to humans.


Monday 20 May 2019

Learning Constants, String and Structure in C

#include <iostream>
#include <sstream>
#include <cstring>
#include <ctime>
#include <unistd.h>
#define M 3
#define w 10
using namespace std;
string nomiferramenta[]={"scatolaDiChiodi","forbici","chiaveInglese","cacciavite","martello","nastroBiadesivo"};
string nomifarmacia[]={"aspirine","oki","sciroppoPerLaGola","brioski","cerotti","disinfettante"};
string nomifruttivendolo[]={"saccoDiPatate","radicchio","cetriolo","finocchio","pomodoro","casettaDiFragole"};
string nomiNegozioDiVestiti[]={"maglietta","felpa","pantaloni","gonna","cappello","giacca"};
string nomiNegoziodianimani[]={"parrocchetto","aski","carlino","cocorito","tartarugaD'acqua","geco"};
string nomi[]={"Marco","Giorgio","Astolfo","Daria","Anna","CicciaPanza"};
string nomic[]={"Ada","Gioia","Aurora","Tonia","Eva"};
double c=(rand()%10);
struct Cosa{
    string nome="nulla";
    int pos=c=(rand()%10);
    int q=0;
    double prezzo=c=(rand()%30);
};
struct  Persona{
    string nome;
    Cosa  oggetto;
    double soldi=100.0;
};

struct Negozio{
    string nome;
    Cosa cose[M];
    int N=M;
    Persona commessa;
};

void inizializzaNegozio(Negozio &neg, string nome){
    srand(time(0));
    string nomiN[7]{"Supermecato","Negoziodianimani","NegozioDiVestiti","NegozioDiGiocattoli","Farmacia","NegozioElettronica","Ferramenta"};
    string nomi[]={"Ada","Gioia","Aurora","Tonia","Eva"};
    neg.nome=nome=nomiN[rand()%7];
    neg.commessa.nome=nomi[rand()%5];
    stringstream ss;
    for(int i=0;i<neg.N;i++) {
        ss.str(""); ss<<"oggetto_"<< i;
        neg.cose[i].nome= ss.str();
        neg.cose[i].q=w+i;
    }
}
void preleva(Negozio &neg,int pos,int quant){
    if(neg.cose[pos].q >= quant) {
        neg.cose[pos].q -=quant;
    }else {
        neg.cose[pos].q=0;
        cout << "scorte non sufficienti!!!\n";
    }
}
void deposita(Negozio &neg,int pos,int quant){
    neg.cose[pos].q += quant;
}
void stampaNegozio(Negozio neg){
        cout<<neg.nome<<" gestita da "+neg.commessa.nome+" ha "<<neg.N<<" reparti:\n";
    for(int i=0;i<neg.N;i++)
        cout<<neg.cose[i].nome<<" con la quantita\' di "<< neg.cose[i].q<<"\n";
}

void gestioneNegozio(Negozio &neg,string nome){
    inizializzaNegozio(neg, nome);
    stampaNegozio(neg);
    preleva(neg,2,5);
    deposita(neg,0,7);
    stampaNegozio(neg);
}
void stampaCliente(Persona cliente){
    std::cout << cliente.nome << " ha " << cliente.oggetto.nome;
    std::cout << " e " << cliente.soldi << " Euro\n";
}

int main() {
    srand(time (0));
   // for(int t=0;t<5;t++){
    Negozio neg;
    string nome;
    inizializzaNegozio(neg,nome);
    stampaNegozio(neg);
   
    for(int k=0;k<c;k++){
         Persona cliente;
    cliente.nome=nomic[rand()%6];
    stampaCliente(cliente);
    preleva(neg,2,1);
    cliente.oggetto = neg.cose[rand()%3];
    cliente.soldi -= neg.cose[2].prezzo;
    stampaCliente(cliente);
    }
    stampaNegozio(neg);
    cout<<"\n\n\n\n\n";
//}
   return 0;
}

Saturday 18 May 2019

Why Block-chain Technology can not be implemented in India?

BMTecch says-
Creating an independent block chain solution in India may still not be viable as the mode of profit/commission is not defined


• For Block chain startups, ICOs and cryptocurrencies pave way to raise funding, however, the Indian government discourages both

• There is a huge dearth of people skilled in Block-chain in India; leading institutes are yet to adopt Block-chain courses.













Part 1: Write the HTML

Part 1: Write the HTML   What's your favorite food? Do you know how to make it yourself? If not, look up the recipe online. Next, crea...