Submitted by sneha on Wed, 05/15/2019 - 19:19
We have a content type named 'Q & A'. Go to Structure > Add Content > Q& A and nvaigate to Question text area section. Or click here.
Select the text format as FULL HTML.

Start typing the code in text area

Once you have started writing the code, click on Source option in editor toolbar,
Submitted by sneha on Sun, 07/08/2018 - 02:02
Add below lines to package.json
"bootstrap": "4.0.0-beta.2",
Run npm install on the project folder to download the files.
For the project to identify the javascript and css files add below lines to angular-cli.json
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.min.css"
],
/bootstrap.js to scripts tag
"scripts": ["../node_modules/bootstrap/dist/js/bootstrap.js"],
Submitted by c-admin on Fri, 06/15/2018 - 03:42
This page contains 500+ sample exam questions for Java SE Programmer I Certification (1ZO-803 or 1ZO-808) to check your Java knowledge. Materials are free, but to avoid misuse of materials, we have encrypted the downloads. Please check note below for getting password for the questions and answers.
Question Sets for OCA Java SE 7 Programmer I Certification
-
Java Basics - Part 1 - 15/06/2018 (15 Questions)
Submitted by heartin on Sat, 06/09/2018 - 02:19
Creating Git Repo Locally
Go to an empty directory and run:
git init
Adding files to Git Repo
Create a file README.txt with some test contents
If you do 'git status' the README.txt file will be shown as un-tracked file.
Run:
git add README.txt
Notes:
To add all files in a directory:
git add .
To add only modified files:
git add -u