Skip to main content

Posts

Showing posts from November, 2017

Google Cloud Platform

Google Cloud Platform , offered by  Google , is a suite of  cloud computing  services that runs on the same infrastructure that Google uses internally for its end-user products, such as  Google Search  and  YouTube .  Alongside a set of management tools, it provides a series of modular cloud services including computing,  data storage ,  data analytics  and  machine learning . . Registration requires a credit card or bank account details. Popular products A sample of products are listed below, this is not an exhaustive list. Google Compute Engine  –  IaaS  providing virtual machines. Google App Engine  –  PaaS  for application hosting. Bigtable  –  IaaS  massively scalable  NoSQL  database. BigQuery  –  SaaS  large scale database analytics. Google Cloud Functions  – As of August 2017 is in beta testing.   FaaS  providing  serverless  ...

UST GLobal

UST Global "Transforming Lives" Type Private Industry IT Services Founded 1998 Founder Stephen Ross, Founder & 1st CEO [1] Headquarters Aliso Viejo, California Area served worldwide Key people Sajan Pillai, CEO [2] [3] Paras Chandaria, Chairman [4] [5] Joe Nalkara, President Number of employees 18,000 [6] Website www.ust-global.com UST Global   is an American  multinational  provider of  Digital ,  IT services  and  solutions , headquartered in  Aliso Viejo, California , United States.Stephen J. Ross founded UST Global in 1998 in  Laguna Hills . The company has offices in  USA ,  India , Mexico,  UK ,  Malaysia ,  Philippines ,  Singapore , Spain and  Poland . [8] UST Global specializes in  Healthcare ,  Retail  & Consumer Goods, Banking & Financial Services,  Telecom , Media & Technology,  Insurance ,  Transportation  &  Logistics  and Ma...

Java Program of Fibonnaci number with and without Recursion

import java.util.Scanner; public class Fibonnaci { public static void main(String[] args) { //Without Recursion Scanner s=new Scanner(System.in); int a=0,b=1,c; int n=s.nextInt(); System.out.print(a +" "); System.out.print(b); for(int i=0;i<n;i++) { System.out.print(" "); c=a+b; a=b; b=c; System.out.print(c); } System.out.println("Fibo using recursion"); int num=s.nextInt(); int ab=0, ba=1; System.out.print(ab +" "+ ba); fibonacci(n); } //With Recursion static int n1=0,n2=1,n3=0;     static void fibonacci(int count){         if(count>0){              n3 = n1 + n2;              n1 = n2;              n2 = n3;              System.out.print(" "+n3);             fibonacci(count-1);   ...

Java Program to Check whether a number is Pallindrome or Not

import java.util.*; public class Pallindrom { public static void main(String[] args) { Scanner s=new Scanner(System.in); System.out.println("Enter The Number"); int n=s.nextInt(); int sum=0; int temp=n; while(n>0) { int a=n%10; sum=(sum*10)+a; n=n/10; } if(temp==sum) { System.out.println("No is in pallindrom"); } else { System.out.println("Number is not in pallindrom"); } } }

Scope of Gaming In India

Well maybe right now Gaming as a profession does not have a very good scope, however in next 5-10years things are going to drastically change. I can't say of the rural India but Cities actually have many die hard gamers and some of them they even organize private events but it's kept private. Since our society frowns upon those who are adults and still play video games. Now, how I am so sure, if India had no gamers we wouldn't see STEAM introducing INR exclusively for the Indian Market. Metropolitan Cities have a good number of gamers and the only reason we don't see them come out in open because right now gaming is seen as a wastage of time in India or just a timepass thing but like I said before things are changing so in coming years it'll have better scope as a profession.

Ransomware

 By:Mayank Trivedi Ransomware is a type cyber attack which uses malware to affect the files on the computer by holding them hostage so that the user has to pay a sum of amount in order to to release the affected files. Once the files falls into the trap of ransomware attack it cannot be accessed through any means unless and until it is released by the group which has caused the attack. Who is Affected by Ransomware? All kinds of business which are done online are affected including small scale and large scale business. Sometimes cyber criminals even target home computers just so they can get some extra money as they have poor security. Even some of the organizations will be targeted as they have vast databases and needs to be protected all the time. These organizations pay to keep their networks safe from attacks by ransomware. But those who cant afford to get security will be easily targeted. Can Ransomware be Prevented? Ransomware can be prevented by following some ...

Apache Hive

Apache Hive is a data warehouse software project built on top of Apache Hadoop for providing data summarization, query, and analysis. [2] Hive gives an SQL -like interface to query data stored in various databases and file systems that integrate with Hadoop. Traditional SQL queries must be implemented in the MapReduce Java API to execute SQL applications and queries over distributed data. Hive provides the necessary SQL abstraction to integrate SQL-like queries ( HiveQL ) into the underlying Java without the need to implement queries in the low-level Java API. Since most data warehousing applications work with SQL-based querying languages, Hive aids portability of SQL-based applications to Hadoop. [3] While initially developed by Facebook , Apache Hive is used and developed by other companies such as Netflix and the Financial Industry Regulatory Authority (FINRA). [4] [5] Amazon maintains a software fork of Apache Hive included in Amazon Elastic MapReduce on Amazon Web Servic...

Google BigTable

Bigtable is a compressed , high performance, and proprietary data storage system built on Google File System , Chubby Lock Service , SSTable (log-structured storage like LevelDB ) and a few other Google technologies. On May 6, 2015, a public version of Bigtable was made available as a service. Bigtable also underlies Google Cloud Datastore , which is available as a part of the Google Cloud Platform . History Bigtable development began in 2004 [3] and is now used by a number of Google applications, such as web indexing, [4] MapReduce , which is often used for generating and modifying data stored in Bigtable, [5] Google Maps , [6] Google Book Search , "My Search History", Google Earth , Blogger.com , Google Code hosting, YouTube , [7] and Gmail . [8] Google's reasons for developing its own database include scalability and better control of performance characteristics. [9] Google's Spanner RDBMS is layered on an implementation of Bigtable with a Paxos group f...