1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
hichkok12 [17]
3 years ago
5

write a program using if condition and print fail and try again if student marks are less than 33 using if condition and print f

ail and try again if student marks are less than 33
Computers and Technology
1 answer:
Aliun [14]3 years ago
6 0

Answer:

Following are the program to this question:

#include <iostream>//defining a herader file

using namespace std;

int main()//defining main method

{

   int marks, i=35;//defining integer variables

   cout<<"enter your marks in a percent: ";//print message

   cin>>marks;//input marks value

   if(marks<i)//defining if block that checks marks less then i

   {

       cout<<"fail and try again";//print message

   }

   else//defining else block

   {

       cout<<"You are qualified";//print message

   }

   return 0;

}

Output:

enter your marks in a percent: 33

fail and try again

Explanation:

In the above-given, C++ language code inside the main method "marks and i" two integer variable is declared, in which the "i" variable holds a value.

In the next step, if block is defined, that checks "marks" value is less than "i", if the value is true, it will print "fail and try again".

Otherwise, it will go to the else block, in this, it will print "You are qualified".

You might be interested in
How do you work with collaborators like copywriters developers and project managers?
romanna [79]

Answer:

Have a place for the who team can access all the information they need and use to put their work for project managers to check-up on. Having a when everything is organized in one place, the work will be much smoother.

3 0
3 years ago
The limit for characters in modern file systems is too small to accommodate keywords in titles
Nata [24]
The limit for file names on modern file systems is usually at least 255 bytes.
3 0
3 years ago
Read 2 more answers
The proxy statement issued by a corporation is a requirement of: a. The Securities &amp; Exchange Commission (SEC) b. The Financ
8090 [49]

Answer:

The answer is "Option a".

Explanation:

A proxy statement is a file, that provides security and exchange in data commission, that is a powerful tool for holders, as it tells employees, that together with the instructions to do, and other choices, which could be listed as follows are wrong:

  • In option b, It is used in accounting guidelines, that's why it is wrong.
  • In option c, It requires, that's why it is incorrect.
  • In option d, It is wrong because it doesn't committee.
8 0
3 years ago
what type of internet monitoring technique records information about a customer during a web surfing session, such as what websi
ASHA 777 [7]

The <u>clickstream </u>is a type of internet monitoring technique records information about a customer during a web surfing session, such as what websites were visited and how long the visit was, what ads were viewed, and what was purchased.

<h3>What is the meaning of clickstream?</h3>

The clickstream data is known to be a kind of information that is said to be obtained about a user if and when they browse via a website or they are known to have used a web browser.

Note that the Clickstream analytics is seen as the act  of tracking, evaluating and reporting data on a given pages that a said  user visits and user behavior that is done when they were on a webpage.

Hence, The <u>clickstream </u>is a type of internet monitoring technique records information about a customer during a web surfing session, such as what websites were visited and how long the visit was, what ads were viewed, and what was purchased.

Learn more about internet monitoring technique  from

brainly.com/question/14723222

#SPJ1

8 0
1 year ago
Hardware device can be either internal hardware devices or external hardware devices.
mariarad [96]

Answer:

Yes

Explanation:

Because keyboard and mouse are external hardware and not inside the CPU cabinet but hardwares such as heat sink, sound card and graphic card are external hardware.

6 0
2 years ago
Other questions:
  • 5255555555555+55555555555555/1111*99442
    14·2 answers
  • Which group of commands all appear on the Standard toolbar?
    9·2 answers
  • The following outline is used to plan a program. What is the name for this type of plan?
    7·2 answers
  • Lydia noticed that she feels tired and out of breath after walking her dog up a hill in the park. Which area of fitness does she
    8·1 answer
  • People are able to predict future events to some extent because: (Select all that apply)
    11·1 answer
  • How do I type the integral symbol?
    6·1 answer
  • Which of the displays could be represented by a single bit?
    12·2 answers
  • Note oj cyber security​
    6·1 answer
  • To cope with the uncertainty about how their pages will be viewed, many web page designers opt to use _________ units, which are
    13·1 answer
  • In 5-10 sentences, describe the procedure for responding to an e-mail message.
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!