Java_Dates_Times Flashcards

1
Q

Print current Date in Java.

A
LocalDate now = LocalDate.now();
   System.out.println(now);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Some Date operations in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Print Local time in Java.

A
LocalTime now = LocalTime.now();
	   System.out.println(now);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Some Time operations in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Print Local Date and Time in Java

A
LocalDateTime now = LocalDateTime.now();
	   System.out.println(now);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Some Local DateTime operations in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Period of DateTime in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Period of Date in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Format DateTime in Java.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly