HTML Basics

Posted by Tushar Bedekar
All the webpages in HTML are defined in terms of document object model (DOM). There are various different document of HTML known to be as a HTML tags < >. These are known to be as the elements of the HTML

  • root tag <html>    </html>
  • <head>    </head>
  • <title>    </title>
  • <body>      </body>
The <html>    </html>tag is known as root tag of a tree and rest tags are known as elements of the tree or can termed as branches of the tree. The tree here is nothing but the webpage.

Each and every page in html is defined by its Doctype deceleration. This deceleration may be optional in some HTML versions. The Doctype deceleration help the browser to display the contents of the webpage correctly in the way that is needed by the developer of the webpage.

<head>    </head>  the program or the code/ statement written inside the head tags is only for the browser, that is it is not displayed on the web browser. Here the developer can define the metaname  which is discussed later. meta content and favicon image and other links etc. CSS (cascade style sheets) is also being putted here.

<title>    </title>   it is used to declare the title of the webpage. for example for this webpage the title tag can be written as 
<title> Advance Computing And Programming </title>

<body>    </body> the content that is to be displayed on the webpage is being written here. various different types of tags are used in this section to display different element of the webpage. Advance collection is being discussed later.

Example:


<!DOCTYPE html>
<html>
<body>

<h1> FirstHeading </h1>
<p>My Name is Tushar Bedekar</p>

</body>
</html>

Key Note:-

  • The HTML files are stored with .html extension
  • The Homepage of any webpage is Index.html
  • This webpage HTML code can be viewed by pressing Ctrl + U 
Read More

Guide to Finding the Best Spying Apps

Posted by Tushar Bedekar

When we live in a world where fraud and deceit dwell at every single corner, it is hard to find reliable spy software for phone or other similar device. Plus, with their demand on the rise, it is getting harder every day to discern the good applications from the bad ones when you have the safety of your loved ones at stake.
When you are looking for reliable spy software, you should be concerned about two things.
  1. You need to buy good and reliable software that is easy to use, untraceable and safe.
  2. You need to find a program that matches your requirements in terms of it monitoring methods as well as its compatibility with the target phone.
Unfortunately, buying good mobile monitoring software can be slightly tricky. Not because of its compatibility with the target phone and its accessibility from a remote server, but because of its reliability. You know quite well what mobile phones are being used for now a days. From picture messages to Facebook chats, unless you are using reliable spy software, you are at the risk of releasing your personal data to the entire world.

How to discern a Good Spy Application or a Bad one?

This, even though just might be one of the most sought out question of them all when it comes to spy applications, but it also is the one where you cannot find much information about. Therefore, we are here to help you out of this tight spot and help you recognize a good spy application.

·         Evaluating Software Companies

Now this is the tricky part, one that you cannot figure out without expert advice – evaluating a software company.  Here are a few tips about what to look for in spy software.
-        Whether the software has a bug-free, professional looking site?
-        Does the site provide you with the company’s contact information i.e. the phone number, address, email, etc?
-        Does it respond to a live chat quickly?
-        Do they reply to your email or a call with a personal response?
-        Do they have reliable looking Facebook and twitter pages that are regularly updated?
-        What information do they provide on the site?
-        Do they give detailed information about how to install and use the software?
-        Do you need to look for further information or their FAQ answers most of your queries?
If, based on the site and software in question, most of the fore-mentioned questions are answered in yes instead of no, then the software may just be reliable.

  • Look Them Up
One of the best, even though it may just be the most manipulated medium as well, to establish a product’s web presence is to Google it. If it is a reliable website, it will show up on the first page of search results, and if not, then you know they answer.
Plus, steer clear of the spy software about which you cannot find any sort of information. Also, do not believe anything that you read about software point blank, read everything about the product and then make up your own mind about it.

  • Online and User Generated Reviews
Reviews, by both the experts and the user of that particular software, is a good way to learn more about a product, since the review writers are not trying to sell the product, but merely share their own opinion about the product they have evaluated or used.
But, the thing is, most of these reviews are actually phony and a sham, written by people who have never used the product and are being paid to do so. Thus, use your own judgement here as well, when it comes to spy software like TheOneSpy, who reliability and quality we can swear on.
Still, we stand by what we said, user generated reviews are usually reliable when posted on sites like Amazon, since they wouldn’t someone leave a review who hasn’t actually bought the product in question.

  • Pricing and Term Contracts
Mostly, the best spy applications have similar pricing structures since they are in competition, therefore their rates do not vary much. But, if you find a deal that is too good to be true and offers things like;
-        Free
-        Cheap
-        Half Price if you order right now.
-        One-time payment
-        Free Lifetime upgrades
Then, shut the site immediately and swear to never open it again as long as you shall live.
  
This might sound extremely harsh in your opinion, but this is what spy software industry has come to. Even though you might feel at times that the person selling the said product is saying the truth, you can never be 100% sure of it. Most sites are here to make a quick buck by selling you faulty spy software and then earn a little more by leaking out your personal data. Thus, tread carefully. These are dangerous passages.

Author Bio:


 Angelica is tech geek as well as a Content manager and Social Media enthusiastic. She is extremely passionate and result driven professional. She writes for TOS blog. Follow her on twitter @angelicadowson2



Read More

How We Can Have a Nested Return In a Function

Posted by Tushar Bedekar
Let us First Understand what is required and what the question is all about.Actually we are discussing about nested return in the function. that is return within the return  so follow is the programme which is conveying the same.Her we have taken the two function name "Factorial" and "Sum" which are calculating the factorial of a number and the result of the factorial  is returned to the function name sum which is calculating the sum of any number


#include <stdio.h>
#include <stdlib.h>

int factorial();
int sum();

int main(int a)
{
    int c;
    printf("\"enter the a number\"");
    scanf("%d",&a);

    c=sum(a);
    printf("The required result is %d \n",c);
    getchar();
    return 0;
}

int factorial(int y)
{
    int i,fact=1;
    for(i=1;i<=y;i++)
    fact=fact*i;
    printf("The factorial of a number is %d \n",fact);
    return fact;
}

int sum( int x)
{
    int result,k;
    printf("enter the number whose factorial is required \n");
    scanf("%d",&k);
    result=x+factorial(k);
    return result;
}

Read More

Difference Between Procedure Oriented Programming (POP) & Object Oriented Programming (OOP)

Posted by Tushar Bedekar

Procedure Oriented ProgrammingObject Oriented Programming
Divided IntoIn POP, program is divided into small parts called functions.In OOP, program is divided into parts called objects.
ImportanceIn POP,Importance is not given to data but to functions as well as sequence of actions to be done.In OOP, Importance is given to the data rather than procedures or functions because it works as a real world.
ApproachPOP follows Top Down approach.OOP follows Bottom Up approach.
Access SpecifiersPOP does not have any access specifier.OOP has access specifiers named Public, Private, Protected, etc.
Data MovingIn POP, Data can move freely from function to function in the system.In OOP, objects can move and communicate with each other through member functions.
ExpansionTo add new data and function in POP is not so easy.OOP provides an easy way to add new data and function.
Data AccessIn POP, Most function uses Global data for sharing that can be accessed freely from function to function in the system.In OOP, data can not move easily from function to function,it can be kept public or private so we can control the access of data.
Data HidingPOP does not have any proper way for hiding data so it is less secure.OOP provides Data Hiding so provides more security.
OverloadingIn POP, Overloading is not possible.In OOP, overloading is possible in the form of Function Overloading and Operator Overloading.
ExamplesExample of POP are : C, VB, FORTRAN, Pascal.Example of OOP are : C++, JAVA, VB.NET, C#.NET.
Read More

Samsung Galaxy J3 vs Samsung Galaxy J5: budget phablets from Korea

Posted by Tushar Bedekar
Samsung had released a handful of budget Android smartphones in India, especially under the Galaxy J range. In July last year, the brand launched the Galaxy J5 and Galaxy J7 as its first smartphones to boast LED flash units at front to deliver better selfies under low light-conditions. After the selfie-focused Galaxy J5 and J7, the company in September launched a budget 4G-enabled device in the J series called the Galaxy J2 in the country. The vendor recently unveiled the Samsung Galaxy J3 in China, and is expected to bring it to India very soon.
The Galaxy J5 and Galaxy J3 are both among the best contenders of the budget devices from the company. They share quite a few specifications including the price range. If you are planning to buy any one of these phones, let’s put their specs on the table to find out how they stand against each other.

Samsung Galaxy J3 vs Samsung Galaxy J5: comparison of budget 4G phablets

Design

Talking about the design first, the Samsung Galaxy J3 sports a metallic frame, measures 7.9mm around the waist, and tips the scale at 138 grams. The Samsung Galaxy J5 on the other hand sports a plastic design with chrome finish edges. The phone features a waistline of 8.5mm and weighs slightly higher than the Galaxy J3 at 149 grams. Overall, with the Chrome finish edges, the Galaxy J5 looks much more appealing than the J3.

Display and OS

The Samsung Galaxy J3 and Galaxy J5, both the smartphones offer 5-inch Super AMOLED 1,280 x 720p resolution displays with pixel density of 294ppi. So when it comes to the media viewing, both the smartphones offer similar experience. On the software-front, the Galaxy J3 and Galaxy J5, both were released running Android 5.1 Lollipop out of the box with the TouchWiz UI on top. There’s no word if they will be getting the Android Marshmallow update anytime soon.

Configuration

The Samsung Galaxy J3 and Galaxy J5, both are powered by 1.2GHz quad-core processors. Their performance is further enhanced by 1.5-gigabytes of RAM. They deliver smooth lag-free user experience and decent gaming experience. Storage capacity on both is also the same 8-gigabytes, which users can further increase up to 128GB by adding a microSD card.

Camera

Coming to the camera, the Samsung Galaxy J3 gets an 8-megapixel primary snapper, aided by an LED flash and full HD video recording. The Galaxy J5 on the other hand sports a much better 13-megapixel primary camera with an LED flash, autofocus and 1080p recording. For selfies and video calling, the Galaxy J3 and Galaxy J5 offer 5-megapixel secondary shooters. However, the Galaxy J5 has an LED flash unit for the front camera, which offers better quality selfies than the Galaxy J3.

Connectivity and battery

In terms of connectivity, the Galaxy J3 and Galaxy J5, both offer support for Indian 4G LTE networks, dual-SIM slots, Wi-Fi, Bluetooth, micro-USB 2.0 and A-GPS. The Galaxy J5 also gets an addition USB on the go connectivity option. When it comes to the battery, the Galaxy J3 and Galaxy J5, both smartphones are fueled by 2,600mAh units.

Conclusion

The Samsung Galaxy J3 and Galaxy J5 are not really that different. They offer the same screen sizes, display resolution, software features, configuration, storage capacity, connectivity options, and the same connectivity options. However, the Galaxy J5 sports a more appealing design than the Galaxy J3, and comes with excellent camera specifications with LED flash for the front camera. The Samsung Galaxy J5 has been priced at Rs 11,999, while the Galaxy J3 is expected to be priced in India around Rs 9,000. The Galaxy J5 costs slightly higher than the Galaxy J3, but delivers better selfie experience for these extra thousand bucks.


Authors Bio:

The article has been written by Kundan Srivastava, who is passionate about technology. He's working at 91mobiles.com and writes about the latest in the tech domain, right from devices to innovations. 


Publisher's Last Words:

This is guest post by Kundan Srivastava, Thanks to Kundan Srivastava for this awesome and useful information.if you want to post your article on http://www.allaboutcomputing.net you can contact me. For more about Computer programming and for many more about Computer or web designing stay connected with http://www.allaboutcomputing.net .
I hope you have got answers of some Questions by this small post and I know you have lot of questions, So please feel free to ask in comment section or you can mail me my    e mail id is : tushar.bedekar11@gmail.com 

Read More

Introducing Windows 10

Posted by Tushar Bedekar

Windows 10 is full of new features and improvements which combine the power of both windows 7 and windows 8/8.1. Windows 10 comes with a large number of great features that has made it so use full to us. Also, we are seeing on a daily news that Microsoft is continuously upgrading its fully featured windows 10 with differents builds and new features. Let`s have a look at some of its great features.

Return of Start menu

The Start menu that we used to see in windows 7 is back—and it’s more personal, more organized, and more fun than before. We can make searches on our own computer as well as on an internet which is one of the great features of windows 10. Also, apps and other stuffs are more organised than before.  

                    Image of Start menu

Select the Start Start icon button on the taskbar. You'll find your most used apps on the left, the All apps list, and shortcuts to other locations on your PC, like File Explorer and Settings. Also one of the great feature of start menu is that you can resize and label is as per your requirements. which allows you to stay organised. 

Get apps, music, and more at one Place  

                 
                Image of Windows Store

The company has also made changes in its store logo as well its interface. The Store is a one-stop shop for music, videos, games, and apps. You can try out an app before you buy it, or pick a free one. Your Windows 10 apps will work on all your Windows 10 devices. So sign in with your account and have fun.

Cortana Make you more Productive

Cortana, your personal assistant, is right on your desktop. Previously it was launched for windows 8.1 Mobile but now it is powering windows PC. Ask her to set up a meeting or send an email to a friend. She can even find your files for you and tell you jokes. Select the search box and type what you want Cortana to do, or just select the microphone to talk with her instead.


           
                Screenshots of Cortana

Note
Cortana is only available in certain countries/regions, and some Cortana features might not be available everywhere. If Cortana isn't available or is turned off, you can still use search.

Microsoft Edge

Microsoft Edge is the first browser that lets you take notes, write, doodle, and highlight directly on webpages. Also it is fast and more productive browser than other browsers due to its additional featurs. Use the reading list reading list icon to save your favorite articles for later, then read them in reading view reading view icon. Hover over open tabs to preview them, and bring your favorites and reading list with you when you use Microsoft Edge on another device. Plus, Cortana is built into Microsoft Edge to help you do things faster and easier.


                  GIF showing the tab preview feature.

Where you can type, you can write

Microsoft Edge isn't the only app you can write in. Use your tablet pen, finger, or your mouse to write everywhere you could type before. Or just doodle in OneNote. 

             Screenshot of notes and highlighted sentences on a webpage

Sign in and greet the day with Windows Hello

This is one of the great feature of windows 10 which provide added security other than simply typing the passwrod for signning up the windows. If it’s available on your device set it up as follows, Windows Hello changes how you sign in—it uses your face or fingerprint instead of a password. Go to Settings  > Accounts > Sign-in options to set it up.

           Screenshot of Windows Hello lock screen.

All your photos in one place

No more endless searching. The Photos app collects all your photos and videos in one place. From your phone, and your PC, and OneDrive. Then, it organizes your memories into albums for you to enjoy and share. Also you can edit the photos at the same place and upload it again.

                Image of photos

  • Note:- The reference has been take from Microsoft windows 10 Site.
  • Also some Images has also been taken from internet.
  • If any one has a problem with the content please contact us at
  • admin@allaboutcomputing.net 
Read More

Class In Object oriented Programming languages

Posted by Tushar Bedekar
Basically, there  are various different definition of the classes in object-oriented programming language. Some basic definition are as follows:-


  • The class is said to be the collection of an object.
  • The class is said to be the collection of the data members and their member functions that are used to access and modify those data members.
  • The class is sometimes said to be the blueprint of an object.
     class Box
    {
       public:
       double length;   // Length of a box
       double breadth;  // Breadth of a box
       double height;   // Height of a box
     };
The C++ makes use of the keyword class followed by its identifier(Name of the class). Basically the class is said to be the collection of similar kind of an object.

The C++ classes have 3 different types of access specifier. They are as follows:
  • Public 
  • Private 
  • And protected. 

Keywords: private and public

Keyword private makes data and functions private and keyword public makes data and functions public. Private data and functions are accessible inside that class only whereas, public data and functions are accessible both inside and outside the class. This feature in OOP is known as data hiding. If programmer mistakenly tries to access private data outside the class, compiler shows an error which prevents the misuse of data. Generally, data are private and functions are public.

Keyword: Protected

But however the C++ makes use of another special kind of keyword (access specifier) Protected which is used to hide the data members and members function from being accessed from other class but allows the access from only the child class.

Data Members:

data member may be of any type, including classes already defined, pointers to objects of any type, or even references to objects of any type.Data members may be private or public, but are usually held private so that values may only be changed at the discretion of the class function members.

Member Function:

Member functions are operators and functions that are declared as members of a class. Member functions do not include operators and functions declared with the friend specifier. These are called friends of a class. You can declare a member function as static; this is called a static member function.


Further Topics will be covered in the next post.If you have any doubt regarding this section fell free to contact us     you can also join us at  Discussion Forum or E-mail us at
admin@allaboutcomputing.net
Read More

What is Cloud Computing

Posted by Tushar Bedekar

Cloud Computing: Meaning and Implications.


Cloud computing represents a new revolutionary organizing principle for computing. It is new because of its scale and revolutionary because of its consequences. For instance, it liberates individual and institutions from owning a computing device or infrastructure but still make them capable of accessing computing resources. Today an developer can avail and access and meet computational needs from outside by way of cloud computing services and  without building or buying her own computing infrastructure.  

Cloud computing builds resources in large and supply in retail. For example, a user in cyber center is availing a service such as email- Gmail or Hotmail. Cloud computing separates developing computing from its consumption. In doing so it has created an entire spectrum of industries - 
  • Infrastructure as a service-  business of building and supplying basic computational resources such as computing, storage -   

allaboutcomputing.net
            
  • Platform as a service-  business of providing computing resources and environment for building and operating services 
allaboutcomputing.net

  • Software- as a service - business of developing and offering software 

allaboutcomputing.net

Cloud Computing: Physical Meaning

Cloud computing is new service paradigm. It refers to the provision of computational resources on demand via a network.In its practical and most widely known form this network is the Internet. However cloud can be developed and deployed on network which not necessarily the Internet. When done that way, cloud may resemble a kind of VPN.. The central idea behind cloud computing model is derived and can be can be compared to the supply of electricity and gas, or the provision of telephone, television and postal services. All of these services are presented to the users in a simple way that is easy to understand without the users needing to know how the services are provided. In other words,  benefits are for users and burden is for the provider.  The details workings of a system behind a service always remains a mystery for the end user.

Example: A letter posted in Bangalore will reach its destination say in Gujarat using postal network consisting of many points where it gets bagged( putting into a bag meant for a destination) and debugged ( when a letter is removed from a bag when it has to reach a different destination).  



However, postal service seeker is not concerned with these detail. Her only one objective is to send/receive a letter. The behind the scene mechanism always remains mystery but she is given a simple interface A post office to send her letter. This simplified view is called an abstraction. Similarly, cloud computing offers computer application developers and users an abstract view of services that simplifies and ignores much of the details and inner workings. A provider's offering of abstracted Internet services is often called as Cloud. 

Cloud Computing In a Nutshell:-

Cloud computing is a multi-perspective and multi-dimensional phenomenon.  The answer to the question “What is cloud computing “is depends on who is answering that question. However, the most widely known perspective on cloud computing projects it as a service delivery model that uses the Internet as the common interface to reach its beneficiary. The beneficiary of cloud computing service could be a citizen, consumer or a learner depending on whether it is used by a government, business or university. When applied to business, cloud computing assumes a sharper form and becomes service composition, delivery and consumption model. 

The categories of services that a business can deliver using cloud computing is currently limited to three (although some are on the horizon) and is known as “service models”. The different purposes for which an enterprise can build a cloud computing infrastructure and ways in which it can  determine its scope and access is described in cloud “deployment models” and at,present there are four ways in which this can be done. The cloud computing phenomenon because of its huge scope and deep potential to participate in virtually all human affairs – banking to education to health and others is tackling all important and perpetually concerned issues such as cloud security and trans-border business aspects. In sum cloud computing is a living and affecting lives of many. 







Read More

How to get best Android phone for today: 5 models

Posted by Tushar Bedekar 2 Comments
These days everyone seems to want the latest smart phone to come out, but who can blame them when you look at how rapidly these devices are improving. Technology truly has ramped up the speed at which we consume new products, although that simply means that consumers have more access to better quality materials. Although Apple continues to dominate the smart phone market, there is no question that Android is highly popular and a good percentage of the population would not even consider purchasing a new phone. If you want to get your hands on the latest Android phone's, a good place to start is by doing some research on the internet and checking out the various models that they currently have available. 
Although you might want to go into the store to make your actual purchase, more and more people are preferring to pick up their new smart phones over the internet. This is due in large part to the fact that you can generally get much better deals over the internet, because the online retailers have to compete with all sorts of sites, where as if you were to walk into a store, they do not have much competition. For this reason alone, you should see if you can find a better price online, although it is a good idea to head to the stores to actually get the phones you are looking at in your hand, so you get a feel of whether you like them or not. However, if you are a die hard Android fan, this may not pertain to you, as you likely are going to purchase their products anyway.

If you are looking into getting a brand new Android phone, you may want to consider some of these models. The Samsung Galaxy Note 5 has gotten great reviews online and is far superior than the previous models that Samsung has put out in the past, which were lacking in a great deal of areas. They Galaxy Note 5 features a top of the line display screen, which has gotten the phone a lot of attention. The overall features in the phone, in regards to multitasking, taking pictures and videos, and maintaining a long battery life, are drastically better than previous Samsung models.

The LG G4 is one of the highest rated Androids on the market right now and they have been called a great all around smart phone. The display screen is crisp and the camera takes high-quality shots consistently and there is no question that the software is drastically improving as well. Samsung has another great Android model out, which is the Galaxy S6. This phone has had some reviews that are calling it hands down the best phone on the market, including the iPhone, which got a ton of people's attention. There is no doubt that this is a high quality phone worth considering and at about three hundred dollars less than the Galaxy Note 5, it may be an overall better purchase.
If you are looking for a bit of a cheaper phone that still has a ton of the same capabilities and looks great, you might want to check out the Moto X. Although this phone is less popular and has gotten lower reviews, the camera is of the utmost quality, the software on the phone is great and it holds a long battery life. The Sony Xperia Z5 Premium is another great phone that will also likely get you a lot of looks. This is due to the fact that they sell a bright gold smart phone, which looks amazing and is on par function wise as the top Androids on the market.

About Author: This article was written by Andy G, a tech geek and Linux guru from Austria. At the present moment he maintains firmware
and driver download website called http://www.helpjet.net/

Read More
back to top