Create a Website a fulfil following requirements
contain 3- 5 pages
Implement both client side and server-side
integration of following technologies
Bootstrap framework
jQuery
Ajax
JSON for communication
CRUD operations via Mongodb
for (itr = gquiz1.begin(); itr != gquiz1.end(); ++itr) {
cout << '\t' << itr->first
<< '\t' << itr->second << '\n';
}
What is begin() function returns?
Question 01
Write only nested if statements to print the message based on the flag user has entered. The scheme is as follows,
Flag Message
1 or 2 Left
3 to 5 Forward
6 Backward
7 Right
Question 02
Identify the errors in each of following statement
1)answer = 2Y+ X5 + 3Z
2)if(x=>1);
cout <<"Equal to 1" <<endl;
cout<<"Greater than 1 "<<endl;
else
cout<<"Not equal to 1"<<endl;
cout<<"End of else"<<endl;
QUESTION 01
Write the sequence of steps to evaluate the operators given in the following expressions using the procedence and associavity.
1)(10*3%4*(3+((18%5)%4*3+6/(18/4))));
2)int i=9;
x=++i%4*4+(5-2)
QUESTION 02
Write a function called FindSquare.
The function takes a 4-digit integer as parameter, validates the integer and returns, when the digits are in increasing order or 2 when the digits are in decreasing order or 0 when the digits are not any order.
7. Write a program using string functions that will accept the name of the capital as input value and will display the corresponding country. CAPITALS COUNTRIES Ottawa Canada Washington D.C. United States Moscow Russia Rome Italy Manila Philippines
The loop shown below has been written by a c++ programmer
int n =1; //A
while (n>=1){
if(condition){ //B
//C
}
n--;
}
1)Update the value of the variable n to repeat the loop 10 times.
2)Write the condition Statement to select only odd numbers
3)Rewrite the code with the statement n++ (You can only add or modify statement A,B,C)
Given reasons indicating why following identifiers are invalid,
1)goto
2)Struct
3)true
4)2k
Write statements to validate the number given below is a 4-digit integer and then to print the digit divisable by 2,
int number = 8459
Using the methods
Findsum(int,int) //return total
FindProduct(int,int) //returns the product of the two integers
Write main method to find and print the answer of the expression,
32 + 83 +91