I'm new to ERC721 and have some question on it. I was following some tutorial and have question on constructor. The question parts are below.
constructor(string memory baseURI) ERC721("NFT Collectible", "NFTC") {
setBaseURI(baseURI);
}
I understood what is memory but still don't know what is symbol and name in there. Can I change it randomly? What is the purpose of those? And Where can I find that symbol and name? That's my question. I'm freshman in blockchain so some terms are unfamiliar. So it will be great help if someone tells in details.