-
M.N.Safiyabe started the topic PHP syntax in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html>
<body><?php
$color = “red”;
echo “My car is ” . $color . “<br>”;
echo “My house is ” . $COLOR . “<br>”;
echo “My boat is ” . $coLOR . “<br>”;
?></body>
</html> -
M.N.Safiyabe started the topic PHP Hello Word in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html>
<body><?php
ECHO “Hello World!<br>”;
echo “Hello World!<br>”;
EcHo “Hello World!<br>”;
?></body>
</html> -
M.N.Safiyabe started the topic PHP Boolean in the forum C++ 2 years, 5 months ago
<?php
if ($action == “show_version”) {
echo “The version is 1.23”;
}
if ($show_separators == TRUE) {
echo “<hr>n”;
}
if ($show_separators) {
echo “<hr>n”;
}
?> -
M.N.Safiyabe started the topic User story life cycle in the forum C++ 2 years, 5 months ago
software development lifecycle includes the concept, inception, construction, release, production, and retirement phases.
-
M.N.Safiyabe started the topic Variable in c++ in the forum C++ 2 years, 5 months ago
int myNum;
myNum = 15;
cout << myNum; -
M.N.Safiyabe started the topic What is stack in C++ in the forum C++ 2 years, 5 months ago
#include <iostream>
#include <stack>
using namespace std;
int main() {
stack<int> stack;
stack.push(21);// The values pushed in the stack should be of the same data which is written during declaration of stack
stack.push(22);
stack.push(24);
stack.push(25);
int num=0;
stack.push(num);
stack.pop();…[Read more] -
M.N.Safiyabe started the topic Program in c++swap two numbers in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main()
{
int a = 5, b = 10, temp;cout << “Before swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;temp = a;
a = b;
b = temp;cout << “nAfter swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;return…
-
M.N.Safiyabe started the topic How to print the coloured text in C++ in the forum C++ 2 years, 5 months ago
#include <stdio.h>
int main()
{
printf(“33[1;31mWELCOME TO OPENGENUS33[0mn”);
return 0;
} -
M.N.Safiyabe started the topic Output c++ in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main() {
cout << “Hello World!”;
return 0;
} -
M.N.Safiyabe started the topic Create a new page in HTML? in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”utf-8″>
<title>About</title>
</head>
</html> -
M.N.Safiyabe started the topic What is HTML? in the forum C++ 2 years, 5 months ago
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body><h1>My First Heading</h1>
<p>My first paragraph.</p></body>
</html><!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body><h1>My First Heading</h1>
<p>My first…[Read more] -
M.N.Safiyabe started the topic What are macros in Excel? in the forum C++ 2 years, 5 months ago
Macros in excel
-
M.N.Safiyabe started the topic How are nested IF statements used in Excel? in the forum C++ 2 years, 5 months ago
if statement used in Excel
-
M.N.Safiyabe started the topic SubQuery in SQL Server in the forum C++ 2 years, 5 months ago
USE AdventureWorks2016;
GO/* SELECT statement built using a subquery. */
SELECT [Name]
FROM Production.Product
WHERE ListPrice =
(SELECT ListPrice
FROM Production.Product
WHERE [Name] = ‘Chainring Bolts’ );
GO/* SELECT statement built using a join that returns
the same result set. */
SELECT Prd1.[Name]
FROM Production.Product…[Read more] -
M.N.Safiyabe started the topic To change the chart style in the forum C++ 2 years, 5 months ago
Click the chart you want to change.
In the upper right corner next to the chart, click Chart Styles .
Click Style and pick the option you want -
M.N.Safiyabe started the topic To change the chart layout in the forum C++ 2 years, 5 months ago
Click the chart that you want to format. This displays the Chart Tools, adding the Design, Layout, and Format tabs.
On the Design tab, in the Chart Layouts group, click the chart layout that you want to use. -
M.N.Safiyabe started the topic Charts in power point in the forum C++ 2 years, 5 months ago
To create a simple chart from scratch in PowerPoint, click Insert > Chart and pick the chart you want. On the Insert tab, in the Illustrations group, click Chart. In the Insert Chart dialog box, click the arrows to scroll through the chart types. Select the type of chart that you want and then click OK.
-
M.N.Safiyabe started the topic How to enable gridlines in microsoft power point in the forum C++ 2 years, 5 months ago
Work with gridlines and use snap-to-grid in PowerPoint
Turn the snap to grid and snap to object options on or off in Excel
Print gridlines in a worksheet
Show or hide the ruler in PowerPoint
Show or hide rulers in Word
-
M.N.Safiyabe started the topic Animate text in powerpoint in the forum C++ 2 years, 5 months ago
Try using an Emphasis animation for key terms in your presentation or to make an important image really pop.
-
M.N.Safiyabe started the topic What are the operators in python? in the forum C++ 2 years, 5 months ago
a = 7
b = 2print (‘Sum: ‘, a + b)
print (‘Subtraction: ‘, a – b)
print (‘Multiplication: ‘, a * b)
print (‘Division: ‘, a / b)
print (‘Floor Division: ‘, a // b)
print (‘Modulo: ‘, a % b)
print (‘Power: ‘, a ** b)
- Load More
