[go: up one dir, main page]

0% found this document useful (0 votes)
323 views2 pages

Course Link

The document contains several links to courses on Lex including: DBMS, cloud computing, cyber security. It also contains code to determine the next date given a day, month and year in Java.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
323 views2 pages

Course Link

The document contains several links to courses on Lex including: DBMS, cloud computing, cyber security. It also contains code to determine the next date given a day, month and year in Java.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

https://lex.infosysapps.

com/en/app/toc/lex_auth_012880464547618816347/overview
https://lex.infosysapps.com/en/app/toc/lex_auth_01298949820177612889/overview
https://lex.infosysapps.com/page/embed-konnect?id=175375

https://lex.infosysapps.com/page/embed-konnect?id=175375

https://lex.infosysapps.com/en/viewer/hands-on/lex_auth_01293499095814963284?
collectionId=lex_auth_012880464547618816347&collectionType=Course

https://lex.infosysapps.com/en/app/toc/lex_auth_01298949820177612889/overview

https://lex.infosysapps.com/en/app/toc/lex_auth_012880464547618816347/overview
https://lex.infosysapps.com/en/app/toc/lex_auth_012880464547618816347/overview

https://lex.infosysapps.com/en/app/toc/lex_auth_01298949820177612889/overview

class Tester {
public static void main(String[] args) {
// Implement your code here
// 1,3,5,7,8,10,12 - 31 days
// 4,6,9,11 - 30 days
// 2 - 28 days

int Day = 1;
int Month = 9;
int Year = 15;

if(Month == 1 || Month == 3 || Month == 5 || Month == 7 || Month == 8 ||


Month == 10 || Month == 12){

if(Day==31){
System.out.println("1"+"-"+(Month+1)+"-"+"20"+Year);
}else{
System.out.println((Day+1) +"-"+Month+"-"+"20"+Year);
}

}else if (Month==4 || Month==6 || Month == 9 || Month==11) {


if(Day==30){
System.out.println("1"+"-"+(Month+1)+"-"+"20"+Year);
}else{
System.out.println((Day+1) +"-"+Month+"-"+"20"+Year);
}
}else{
if(Day==28){
System.out.println("1"+"-"+(Month+1)+"-"+"20"+Year);
}else{
System.out.println((Day+1) +"-"+Month+"-"+"20"+Year);
}
}

}
}
https://www.oracle.com/java/technologies/javase/codeconventions-contents.html

DBMS COURSE LINK:-


https://lex.infosysapps.com/en/viewer/web-module/lex_auth_012702060794118144256?
collectionId=lex_auth_01275806667282022456&collectionType=Course

https://lex.infosysapps.com/en/app/toc/lex_auth_0127673005629194241/overview

functions: classification is done based on the number of rows the function operates
on.
single row, multiple row will return single row
independent subquery : classification is done based on the number of rows returned.
single row will return single row, multiple row
will return multiple row.
cloud computing course:-https://lex.infosysapps.com/en/viewer/web-
module/lex_auth_012642163141910528928?
collectionId=lex_29245015089922640000&collectionType=Course
https://lex.infosysapps.com/en/viewer/web-module/lex_auth_01256567191195648032?
collectionId=lex_auth_01255932461115801653&collectionType=Course

https://lex.infosysapps.com/en/viewer/youtube/lex_auth_01256976444121907269?
collectionId=lex_auth_01255932461115801653&collectionType=Course

https://lex.infosysapps.com/en/viewer/web-module/lex_auth_012642164799356928948?
collectionId=lex_29245015089922640000&collectionType=Course
from Ajin Vijayan (internal) to everyone: 11:28 AM
https://lex.infosysapps.com/en/viewer/web-module/lex_auth_01256567191195648032?
collectionId=lex_auth_01255932461115801653&collectionType=Course

cyber security course:-

https://lex.infosysapps.com/en/viewer/web-module/lex_auth_012562703889571840205?
collectionId=lex_auth_01255932461115801653&collectionType=Course

https://lex.infosysapps.com/en/app/toc/lex_3388902307073574000/contents

You might also like