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
pogonyaev
4 years ago
15

. In an if/else statement, the if part executes its statement or block if the expression

Computers and Technology
1 answer:
e-lub [12.9K]4 years ago
4 0

Answer:

The answer to this question can be given as

true, false.

Explanation:

As we know that If-else statement is a part of the all programming language. If block always execute true value. The syntax of if-else statement can be given as

Syntax:

if()

{

//code for condition true.

}

else

{

//code for condition false.

}

Example:

#include <stdio.h>

int main()

{

int a=10;  //declaring integer variable a.

if(a==10) //check condition

{

/*

starting of if block in( ) we pass condition for check for example

(a==10) where a is integer a variable.

*/

printf("value match..");    //true part

}

else

{

printf("value not match..");    //false part

}

 return 0;

}            

In the above example, a is an integer variable we assign value to it. and check the value by if-else statement. if the value is true it executes value match or print else part that is value not match.

So the answer to this question is true, false.

You might be interested in
Hoda wants to create a new presentation in PowerPoint with existing graphics and designs. What is the easiest and fastest way fo
Paul [167]

Answer: a

Explanation:

6 0
4 years ago
What is this on G00gel Documents , how do I fix it?
mylen [45]

Answer:

Sorry but it donest show the picture

Explanation:

7 0
2 years ago
How do you represent (decimal) integer 50 in binary
il63 [147K]
Its 110010. i hope this helped
7 0
3 years ago
How many bits are required to encode an image that is 25 pixels wide and 50 pixels tall, if you encode each pixel with 12 bits o
AURORKA [14]

Just multiply all numbers to get the total number of bits:

25*50*12 = 15000 bits.

3 0
3 years ago
Your company has just opened an office in another state and you need the computers to communicate between the offices. What type
galina1969 [7]

Answer:

WAN network

Explanation:

A WAN network is an abbreviation for wide area network. This telecommunication network is mainly used for networking computers. They are not tied to just one location. They can also be called network of networks. It connects several LANs. The lans stand for local area and networks and they are computer networks and devices that are connected to each other within a geographical area.

8 0
3 years ago
Other questions:
  • Syah work as senior designer in creative design company. he is an imaginative person and always updates himself with the latest
    15·1 answer
  • Carly is part of a community of developers. In her free time, she works on code to improve this open-source operating system. Th
    11·1 answer
  • _____ should be scanned for viruses
    13·2 answers
  • One lap around a standard high-school running track is exactly 0.25 miles. Write a program that takes a number of miles as input
    12·2 answers
  • When was the federal commission act put into effect?????
    13·1 answer
  • Jack started a job as a consultant with an IT firm he will be interacting with various customers and employees from different pa
    13·1 answer
  • Commercial technical data and commercial software:_________.
    11·1 answer
  • Which of the following allows you to copy
    15·1 answer
  • One security component that doubles as a network component
    5·2 answers
  • The PowerPoint view in which you can edit the slide master is called ______________.
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!