Posts

What is Coding?

Image
What is Coding? Source: https://www.google.com/amp/s/learn.onemonth.com/what-is-coding/amp/ Today, we are going to talk about coding. Specifically, I’ll answer the question:  What in the world is coding?  We’ll also cover a little of what happens when we code. Before you read on, though, I want you to right-click in your browser window and choose the “View Page Source” option. How to view page source: right-click anywhere on the page, and select “View Page Source.” When you do that, you get a view of the web page code. Which is to say that, by peeking behind the curtain, you’ve now seen the language that tells your computer how to make this web page look as good as it does. What is code? Here’s an example of the HTML, CSS and JavaScript code running this website (yes, the one you are on right now). The first time I actually looked at the code in a browser window was revelatory for me. Here was the internet in the internet’s own voice! I didn’t understand most of

How to be programmer

Programming  is not easy. It’s all about patience. You have to be patient to be a programme. Know more how to be a programmer    Read on to learn more! Step 1: Understand Why You Want To Start  Programming . ... Step 2: Decide What Field You Want To Go Into. ... Step 3: Learn A  Programming  Language (Or Three) ... Step 4: Practice, Practice & Practice Some More. ... Step 5: Start Building A Portfolio Of Work. ... Step 6: Apply For Jobs. ... Step 7: Never Stop Learning!

পারিব না – কালীপ্রসন্ন ঘোষ

পারিব না এ কথাটি বলিও না আর কেন পারিবে না তাহা ভাব এক বার, পাঁচ জনে পারে যাহা, তুমিও পারিবে তাহা, পার কি না পার কর যতন আবার এক বারে না পারিলে দেখ শত বার৷ পারিব না বলে মুখ করিও না ভার, ও কথাটি মুখে যেন না শুনি তোমার, অলস অবোধ যারা কিছুই পারে না তারা, তোমায় তো দেখি না ক তাদের আকার তবে কেন পারিব না বল বার বার? জলে না নামিলে কেহ শিখে না সাঁতার হাঁটিতে শিখে না কেহ না খেয়ে আছাড়, সাঁতার শিখিতে হলে আগে তবে নাম জলে, আছাড়ে করিয়া হেলা, হাঁট বার বার পারিব বলিয়া সুখে হও আগুসার৷ https://russelltheprogrammer.com/category/uri-online-judge / https://russelltheprogrammer.com/category/uri-online-judge/

pow() library functions in c++

Visit this for more details: www.russelltheprogrammer.com Collected from Sometimes  you  need to   use exponencial or  power  , there is a library functions  named   pow() . http://russelltheprogrammer.com/  ::  Source Some example in  c++  given below: double pow( double x, int y ); // C++ only float pow( float x, float y ); // C++ only float pow( float x, int y ); // C++ only long double pow( long double x, long double y ); // C++ only long double pow( long double x, int y ); // C++ only Even you can also use pow() function as  below  method: double pow( double x, double y ); float powf( float x, float y ); long double powl( long double x, long double y ); Let’s See Some Code in C++: #include <bits/stdc++.h> using namespace std; int main() { double x = 7.0, y = 9.0, z; z = pow( x, y ); printf( “%.1f to the power of %.1f is %.1f\n”, x, y, z ); return 0; } Output: 7.0 to the power of 9.0 is 40353607.0 Source  :  http://russelltheprogrammer.com

https://programmingsolutionseasy.blogspot.com/?m=1

https://programmingsolutionseasy.blogspot.com/?m=1 https://programmingsolutionseasy.blogspot.com/?m=1 https://programmingsolutionseasy.blogspot.com/?m=1

Awesome tutorial URI solve

https://programmingsolutionseasy.blogspot.com/ Uri solve https://programmingsolutionseasy.blogspot.com/2019/10/uri-1002-problem-solution-uri-problem.html

PHP Basic Lesson-1

Image
PHP Basic Lesson-1: What is PHP (What is PHP)? PHP  PHP is a server-side scripting language, created by Rasmus Lardorf 3. Which is specifically used to create any dynamic and interactive web development or web based software and web based application. Currently called General Purpose Programming Language.  That is, whatever can be done with other programming languages ,  PHP can be done with it. Also, PHP is more open source for web programmers.  However, it is most commonly used for web development, web based software  and web based applications . In addition, PHP provides the highest security for  data protection on the web. Can also be used with PHP HTML .