Any sprint boot and micro services training session on weekends available?
Can anyone give me realtime Examples of simple statement objects and prepared statement objects of JDBC?
How will you implement a project in spring framework where the requirements is to update 100s of rows at a time what dependency will you use?
Anyone can share me this code?
What’s the significance of Chainedtransactionmanager here?
I want to declare Boolean in Oracle SQL but it won’t support Boolean
Could you please give alternate method
I want to declare Boolean in Oracle SQL but it won’t support Boolean
Could you please give alternate method
You can use column as integer with values as 0 and 1… like true or false in boolean
Please advise how to do the code in spring boot for image. Where to store it

option A

That float z = 30 is public or default?
I am looking for job change. I have 2 years of experience in Java,Springboot ,sql, html .
Could anyone please refer me .Thanks.

That float z = 30 is public or default?
If no access modifier then it is default modifier

What to use in spring when we have a stock trading project where daily night we need to update the stock data
I think for this you should have CRON jobs (which means you can set time when you want to update the stocks in the db).
// COde For The 4 subject marks and Percentage
import java.util.Scanner;
class subject {
float mark;
}
public class Five_subject_mark {
public static void main(String[] args) {
subject s1 = new subject();
System.out.println(“Enter Maths Markes = “);
Scanner scr = new Scanner(System.in);
s1.mark = scr.nextFloat();
subject s2 = new subject();
System.out.println(“Enter Hindi Marks = “);
s2.mark = scr.nextFloat();
subject s3 = new subject();
System.out.println(“Enter Your English Marks = “);
s3.mark = scr.nextFloat();
subject s4 = new subject ();
System.out.println(“Enter your Socical Sceince Maerks “);
s4.mark = scr.nextFloat();
float mark = (s1.mark + s2.mark + s3.mark + s4.mark);
float per = (mark*100/400);
System.out.println(“Your Per=”+per);
}
}

I think for this you should have CRON jobs (which means you can set time when you want to update the stocks in the db).
Is there any method by which we can schedule the job





Anyone can share me this code?
