Skip to main content

Posts

Showing posts from June, 2020

How to add loader/spinner on a Django based website.

Mandatory Question for all Java learners and Java Job seeker

---Question for all Java learners and Java Job seeker--- In this article, I will discuss, some important questions of java. What is System.out.println() in Java?  What is public static void main(String args[])? If you know advance questions then ok, if you do not know silly questions then you will definitely be rejected on the interview hence focus on fundamentals then go for an advance topic. What is System.out.println() in Java?   System is the predefined final class of Java, which exists under java.lang package, It is used to manage input and output operation in java. When we want to take input from the keyboard in Java then System.in the reference variable will use, if we want to display output on any output screen such as to monitor, laptop, desktop, etc then System.out the reference variable will work. out is the static reference or static variable of PrintStream Class which is declared under System class. println():-   It is the predefined method of Pri...

Learn programming from home by Shiva Concept on Udemy

Learn programming from home by Shiva Concept on Udemy. Now you have multiple options to grow your skills because this time is more precious for you hence you should utilize your time to learn technologies and add new skills in your resume. Now competition will be tough to get a job because many IT students, working people of the IT industry come back to India from a foreign country, they will also apply for a job hence you should ready to compete with them. Now industry demand on live exposure with real-time project development then you should know practical exposure of programming language. Now Shiva concept solution tutorial available on U demy , you can visit udemy.com and learn programming from there, we will solve your doubt from the Udemy portal. Udemy is an international brand of USA, you can see unlimited courses and learn to program easily, ask your doubt as a message option from a user-friendly dashboard. Udemy can be more beneficial for you, you can certify by Udemy and lear...

ASP.NET CORE Database Application

 ASP.NET  CORE Database Application STEP 1. Create Database Tables First, we're going to create two database tables, tblMembers and tblSkills. These tables store employee details and skills. You can create a new database in SQL Server or add these tables to an existing database. The following scripts will create these database tables. If you want to use your existing database, you may skip this step.  CREATE   TABLE  [dbo].[tblEmployees](       [EmployeeID] [ int ] IDENTITY(1,1)  NOT   NULL ,       [EmployeeName] [ varchar ](50)  NULL ,       [PhoneNumber] [ varchar ](50)  NULL ,       [SkillID] [ int ]  null ,       [YearsExperience] [ int ]  null ,   PRIMARY   KEY  CLUSTERED    (      ...