Saturday 27 February 2021

Amazon.com






Friday 12 February 2021

Anupam Dutta GreatLearnig Certificates | King Anupam Dutta GreatLearnig Certificates

Anupam Dutta

GreatLearnig Certificates

1 / 5
GreatLearning
2 / 5
GreatLearning
3 / 5
GreatLearning
4 / 5
GreatLearning
5 / 5
GreatLearning

Sunday 31 January 2021

Best Budget Gigabit Router India | Tp-link, Tenda & D-link Routers | 2021

Adv Blocker

Tp-Link

Tenda

D-link

Thursday 24 December 2020

Application Form for "West Bengal Krishak Bandhu Scheme" | পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র



West Bengal Government West Bengal Government

Application Form for "West Bengal Krishak Bandhu Scheme"



পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র




Preview of the Form

পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্রপশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র










Monday 14 December 2020

Old Age Pension, Widow Pension, Disability Pension Scheme - Government of West Bengal - Form | বার্ধক্য ভাতা , বিধবা ভাতা , অক্ষমতার ভাতার জন্য আবেদন পত্র | Application Form for Old Age Allowance , Widow Allowance & Disability Allowance


Application Form for Old Age Allowance , Widow Allowance & Disability Allowance 

Government of West Bengal


বার্ধক্য ভাতা , বিধবা ভাতা , অক্ষমতার ভাতার জন্য আবেদন পত্র 

পশ্চিমবঙ্গ সরকার



NEW FORMS


OLD FORMS


 

Saturday 17 October 2020

What returns by "if" Condition Statement in Java ?

What returns by "if" Condition Statement in Java ? 

 Answer: - "if" condition returns a true which is a boolean data when condition is true and provide false which also is a boolean when condition is false. 

Example Code is here:

import java.util.*;
public class ReturnofIf {
public static void main(String[] args) throws java.io.IOException
{
boolean tf;                 //boolean tf is maid
if(tf = (char) System.in.read() >= 'M') 
{
System.out.println("Given Value is:" +tf);
}
else
{
System.out.println("Given Value is:" +tf);
}
}
}


_________________________________________________________________________________ 

Input : A 
Output : Given Value is:false 

Input : N 
Output : Given Value is:true