Posts

Is 5G dangerous for Humans?

Image
  5G all the rage right now but some people are worried that it could make them sick so I have decided to do a deep dive on this new technology and find out how it affects the human body. Are you sick of slow mobile data speeds? Do you hate waiting for video streaming services to load?  Is the Second Life you built-in virtual reality to escape the crushing existence of the real world constantly disappointing you, then if we got the gift for you introducing 5G. 5G is the next-generation technology for mobile networks and the evolution of 3G and 4G promises lightning-fast speeds lower latency and increased network connections. Alright so 5g sure sounds like a promising new technology but some are concerned it may have adverse health effects in November 2018 a social media post went viral and suggested that in the Netherlands 300 birds have died due to 5g testing.  Forums are awash with activists suggesting that the dangers of cellphone radiation are being suppressed. So doe...

Greedy Algorithms

Image
A greedy algorithm is a simple, intuitive algorithm that is used in optimization problems. The algorithm makes the optimal choice at each step as it attempts to find the overall optimal way to solve the entire problem. Question 01 Sandun is a wine lover. He had to be in his home for three months due to the Covid-19 situation. Sandun wants to buy some wine since the curfew has been lifted. He goes to his favorite wine yard with some empty bottles. The wine yard owner is pleased to see Sandun. Hence, he offers Sandun free wine on one condition. Sandun can fill only the bottles he carries in his bag. Wine barrels in the wine yard have a tag in each one of them which has two values containing the number of bottles in the barrel and the price of the whole barrel. You have to build a program to help Sandun to take maximum valued wine from this offer. Given the number of bottles that he brought and the information on the wine barrels, you have to find the maximum value of wines Sandun gets fr...

Functional Programming Using Scala

Image
Functional programming (often abbreviated FP) is the process of building software by composing pure functions, avoiding shared state, mutable data, and side-effects. Functional programming is declarative rather than imperative, and the application state flows through pure functions. Contrast with object-oriented programming, where the application state is usually shared and colocated with methods in objects. These are some examples of functional programming problems. Introduction 1. The temperature is 35C; convert this temperature into Fahrenheit.  ºF =ºC * 1.8000 + 32.00 def convert(x:Double):Double=x*1.8000+32.00 println(convert(35)) 2.The volume of a sphere with radius r is 4/3 Pi r3. What is the volume of a sphere with radius 5? def volume(x:Double):Double=4/3*math.Pi*x*x*x println(volume(5)) 3. Suppose the cover price of a book is Rs. 24.95, but bookstores get a 40% discount.  Shipping costs Rs. 3 for the first 50 copy and 75 cents for each additional copy.  What is ...

The Implementation Method of Java

Image
Java is a set of computer software and specifications. It provides a system for developing application software in the computing environment. Java initially released in 1966. Java was developed in Sun Microsystems. The first application of Java is called Star Seven. In the present Java becomes more popular than C and C++. The main reason for that is Java is not platform dependent. Imagine C/C++ code written in Windows. That code can’t compile in Linux server. This is platform dependency. This report based on the implementation method of Java.  The computer can understand some instructions. These instructions are in 1s and 0s. These are called machine instructions. Therefore translation from source code to machine code is done by the compiler. The compiler checks the syntax in our code, optimize our code, and generate the machine code. In compile language machine code is first generated. And then machine code is executed by the CPU. But the interpreter executes the code line by line...

What Is A Gamma Ray Burst?

Image
Imagine if you could gather the energy from every star within a hundred million light-years. From thousands of galaxies, each with billions of stars. Imagine, you could take this kind of power, and use it to fire the biggest super-weapon in the universe. Imagine the damage you could do. It turns out, you don't need to imagine it. These exist, and they're called gamma-ray bursts. But what are these cosmic snipers? And what happens if one takes a shot at Earth? To understand gamma-ray bursts, we first have to understand gamma rays. Gamma rays are electromagnetic radiation – waves that carry energy just like visible light. Visible light is a tiny part of the electromagnetic spectrum: it's the part your eyes can see. At lower energies, there are radio waves, microwaves, and infrared. And at higher energies: ultraviolet, x-rays, and gamma rays. Gamma rays are incredibly powerful. A single gamma-ray photon is more energetic than a million visible photons...

Online Team Collaboration Tools

Image
Introduction  The software development life cycle is a process used by the software industry for planning, creating, testing, and deploying a software system. There are many software process models to do this task successfully. Waterfall Model, Prototyping Model, Evolutionary Model, Spiral Model, Formal Development, Incremental Development, Rapid Application Development, Unified Process, and Agile Process are some of them. Among these models mostly use Agile Process in nowadays. Because Agile software engineering combines principles and a set of development guidelines. This encourages customer satisfaction and early incremental delivery of software. Small and highly motivated software teams, informal methods, minimal software engineering work products, and overall development simplicity are some reason for the popularity of the Agile Process. The development guidelines help to activate continuous communication between developers and customers. Agile Process also has some m...

Create A Web Page Using HTML5 & CSS

Image
HTML5 Code: <!DOCTYPE html> <html> <head> <title>Systematic - An Accounting Firm</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="css/main.css"> </head> <body> <div class="wrapper"> <div class="top-bar clearfix"> <div class="top-bar-links"> <ul> <li><a href="#">Sign up</a></li> <li><a href="#">Log In</a></li> <li><a href="#">RSS Feeds</a></li> <li><a href="#">Archived News</a></li> <ul> </div> <div class="site-search"> <form method= "get" action="index.html"> ...