Posts

Showing posts from March, 2017

Is Subtraction of string possible?

Image
For Making it simple why cant we take a subtraction operation for string Here is the proof. I have taken two stings say String1 and stirng2. I have added it gave a result which result in glue of two strings two gether(Concatenation). But if I apply the subtraction operation the result I got is NaN which clearly says that Subtraction operation should only perform on Numbers as you already know that NaN stands for Not a Number.

Why Semicolons are needed for every line of JavaScript?

Image
All statements in JavaScript must end with a semi-colon, to indicate that this is where the statement ends. If you don't include these, you can get unexpected results. This ends with the strange behaviour of your code.

Why to Keep the <script> tag always at bottom?

Image
The reason we've put the <script> element near the bottom of the HTML file is that HTML is loaded by the browser in the order it appears in the file. If the JavaScript is loaded first and it is supposed to affect the HTML below it, it might not work, as the JavaScript would be loaded before the HTML it is supposed to work on. Therefore, putting JavaScript near the bottom of the HTML page is often the best strategy.

Launch Your Favorite Website from the Command Line

Image
Now I want to showcase how to Open any website from the command prompt. Prerequisites to do the following is a Windows system and an Edge browser. Go to start menu and type "Run" or press the shortcuts key for RUN(Win + R). Now type the following command  Microsoft-edge:<websiteurl> Here is a sample example Type : Microsoft-edge:https://greekydev.blogspot.com It will open the Greeky DeveloperJi website in Microsoft Edge Browser. Try it out and comment your opinion.

Program to find the largest of three numbers - C Language

Learn by Programming. The following programs are one of the ways to find the largest of three numbers. Please comment your views about the program. We will improvise it for future use.   Method 1: #include <stdio.h> int main(){ int a, b, c; printf("Enter a,b,c: "); scanf("%d %d %d", &a, &b, &c); if (a > b && a > c) { printf("a is Greater than b and c"); } else if (b > a && b > c) { printf("b is Greater than a and c"); } else if (c > a && c > b) { printf("c is Greater than a and b"); } else { printf("all are equal or any two values are equal"); } return 0; } Method 2: #include <stdio.h> #include <conio.h> int main() { int a, b, c; printf("Enter first number "); scanf("%d",&a); printf("\nEnter second numb

Link Breakage Report

We are extremely sorry For the Link Breakage. As we are using some 3rd Party URL navigation for Security and Monitoring Purpose. Please Lets have a quick check the following 1. If you are using any AdBlocker software please do disable it. 2. It may be from our end to. So Please revert back a mail regarding this at vsvvssrao@gmail.com (click on it to mail now)[click and start typing your message] In the mail please do clearly mention the blog post which you unable to open. In other case do comment below we will look and fix as early as possible. Regards, V.S

An FPGA Based Efficient Hardware Software Co design Architecture for ANN. Part 1(Abstraction)

Dear Reader, I want to share my B.Tech Project Experience step by step via Series of Blog Posts. Our B.Tech Final Year Project is on Artificial Neural Networks(ANN). So If you want are going to work on any project/work related to the ANN please do comment any of your doubts or clarifications. This post is just any introduction to the project via the abstraction. Project Title : An FPGA Based Efficient Hardware Software Co-Design Architecture for Artificial Neural Networks. In this Title you may wonder what does FPGA means. If you want to know details about FPGA I will write a blog post about it, But do comment your opinion for that. But for now FPGA stands for simply Field Programmable Gate Array(FPGA). This Project went for around 10-12 months with 6 hours a week and we are 5 member group. Here is the abstraction for the project below. ----------------------------------------- ******Abstraction************ ----------------------------------------- Artificial neu