Login
Discover
Waves
Decks
Plus
Login
Signup
Afjal Hossain
@afjal.softcare
29
SWE
Followers
507
Following
169
Resource Credits
Available
Used
Location
Dhaka
Website
https://www.softcareit.com/
Created
January 6, 2018
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
afjal.softcare
best
2018-03-10 17:05
The Best Popularity programming language in 2017
Writing computer programs is something tremendous and somewhat individual as every engineer picks devices that are most helpful for them. Be that as it may, certain dialects, stages and systems have asserted
$ 0.000
8
5
afjal.softcare
history
2018-03-08 18:12
About HackerRank History
Its a well known fact that Silicon Valley has a for all intents and purposes boundless interest for programming ability. It is additionally no mystery that the most essential tech organizations in the
$ 0.000
2
afjal.softcare
james
2018-03-05 15:02
History of Project Builder James Gosling
James Gosling James A. Gosling, a PC researcher, is mainstream for his eminent making of java dialect in 1994. He is called to the father of the Java programming dialect. Java was principally intended
$ 0.000
4
afjal.softcare
history
2018-03-04 14:56
Charles Babbage History !!
WHO WAS CHARLES BABBAGE? Presentation The figuring motors of English mathematician Charles Babbage (1791-1871) are among the most praised symbols in the ancient times of registering. Babbage's Difference
$ 0.312
6
2
afjal.softcare
ascii
2018-03-01 16:01
Java Program-10: Program to find ASCII code of a character.
Solution : Output : ASCII value of P is: 80 ASCII value of P is: 80
$ 0.000
2
afjal.softcare
leap
2018-02-28 19:04
Java Program -09: Program to check whether the input year is leap or not
Program Solution: Here, we will using Scanner class to get the input from user and then we are using if-else statements to write the logic to check leap year. Output : Enter any Year: 2001 2001 is not
$ 0.000
2
afjal.softcare
java
2018-02-26 16:02
Java Program - 08: Positive or Negative number check by java program . Example with output
Here, Two java program show where first java program check whether the specified number is positive or negative. The second program takes the input number (entered by user) and checks whether it is positive
$ 0.040
12
1
afjal.softcare
java
2018-02-25 17:32
Here some java related image
Java Icone Java developed company Question to yourself......... Thinking about your interesting question solution Searching your solution Implement your logic
$ 0.020
8
afjal.softcare
natural
2018-02-23 16:07
Java program -07: To find Sum of Natural Numbers
Natural Numbers program : The positive integers 1, 2, 3, 4 etc. are known as natural numbers. Here we will see three programs to calculate and display the sum of natural numbers. First Program calculates
$ 0.073
6
1
afjal.softcare
jdbc
2018-02-22 17:23
Explain JDBC and Hibernate in java.
What is JDBC ? JDBC stands for Java Database Connectivity. It is a free open source application programming interface for Java that enables applications to access databases. It enables developers to create
$ 0.026
9
2
afjal.softcare
programming
2018-02-20 18:37
Learn programming with fun: What is programming?
Hello everybody hopefully, you are very good. Let me tell you something about programming ... how is it to hear the programming? What is programming? Why do you learn programming? Programming is a small
$ 0.000
13
afjal.softcare
java
2018-02-19 14:31
Java Program -6 : Reverse a String using Recursion in Java
We will see two programs to reverse a string. First program reverses the given string using recursion and the second program reads the string entered by user and then reverses it. To understand these programs
$ 0.026
16
4
afjal.softcare
java
2018-02-17 16:35
Features History of java version
What are new java features in java version 7 or 8? These are pretty much frequently asked questions in java interviews. In this page, I listing down all JDK changes from JDK 1.x to Java SE 8, sequentially.
$ 0.023
15
7
afjal.softcare
java
2018-02-16 14:53
You want to know Java Fibonacci series then you can show this program
In Fibonacci series, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 etc. The first two numbers of Fibonacci series are 0 and 1. There are two ways to write
$ 0.028
15
4
afjal.softcare
java
2018-02-15 18:18
What are the best sources to practice which improve my java skills on problem solving?
Like Java programming, problem solving is also a skill. There are a lot of resources out there that teaches you how to use Java to design your solution. The harder part of your question is learning the
$ 0.030
15
afjal.softcare
java
2018-02-14 15:28
Java program -5: Write a program which show the display of 15 prime number.
package program; import java.util.Scanner; public class PrimeNumber{ public static void main(String [] args){ int enterNumber ; int status = 1; int number = 3; Scanner input = new Scanner(System.in);
$ 0.044
18
6
afjal.softcare
java
2018-02-13 17:10
Java program -4: Write a java program which check Even or Odd number.
Solution: import java.util.Scanner; public class Check{ public static void main ( String [] args) { int number ; Scanner input = new Scanner(System.in); System.out.print(" Enter e Integer Number :__);
$ 0.028
15
afjal.softcare
java
2018-02-12 17:29
Java Problem -3 : How to calculate average ? Question with solution.
Question: write methods that accepts two numbers and returns the average of the two numbers. Solutions : public class Ninetynine{ Ninetynine(){ hello("Afjal"); system.out.println(average(3,4));
$ 0.000
11
2
afjal.softcare
javascript
2018-02-11 17:09
JavaScript part-1: What is javaScript?
JavaScript is the programming language of HTML and the Web. it is also powerful and popular language for programming on the web. JS is a prototype -based, multi-paradism , dynamic scripting language. it
$ 0.020
13
9
afjal.softcare
java
2018-02-10 17:46
Program two : What is the out put of this program?
package simleprogram; public class FactorialNumber{ public static void main(String[] args){ int num=20,i=1; do{ if(num%i==0){ System.out.format(" %d ", i); } i++; }while(i<=num); } }
$ 0.020
14
5