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
GenaCL600 [577]
3 years ago
14

Write a program in c language to generate following series :

Computers and Technology
2 answers:
dimaraw [331]3 years ago
8 0

Answer:

that is above the attachment

:)))

DedPeter [7]3 years ago
7 0

In this exercise we have to have knowledge in computational language in C to write the requested code.

The code is found in the attached image.

We can write the code in a simpler way like:

<em>#include<stdio.h></em>

<em>#include<conio.h></em>

<em>int main()</em>

<em>{</em>

<em>    int N, i;</em>

<em>    printf("Enter the value of N (limit): ");</em>

<em>    scanf("%d", &N);</em>

<em>    printf("\n");</em>

<em>    for(i=1; i<=N; i++)</em>

<em>    {</em>

<em>        if(i==N)</em>

<em>            printf("%d", i);</em>

<em>        else</em>

<em>            printf("%d,", i);</em>

<em>    }</em>

<em>    getch();</em>

<em>    return 0;</em>

<em>}</em>

See more about C language at brainly.com/question/19705654

You might be interested in
Which of the followings is design tool?[2 marks]
aalyn [17]

Answer:

Data Flow Diagram

Explanation:

Data flow diagram is representation of data which is processed in terms of input and output.It is a tool for designing the structure for a software.Rectangles,square and circles are used in representing the flow of information.

DFD consists two components

  • Layers-It consist many layers,the top layer is called context diagram.
  • Levels-The first level shows the main process of the system.
6 0
3 years ago
the function must find the substrings of s that start with a vowel and end with a consonant, then print the alphabetically first
PolarNik [594]

According to the parameters given in the questions above, the alphabetically lowest and highest substrings that start with a vowel and end with a Consonant is given below.

<h3>What is the determined substrings described above?</h3>

The determined substring is given by the following:

def findSubstrings(s):

   sub_strings_list=[]    #the required substrings list

   vowels=['a','e','i','o','u']    #vowels list

   for i in range(0,len(s)):    

       for j in range(i+1,len(s)+1):

           sub_string=s[i:j]    #slicing the original string into substring

           #checking whether the substring starts with a vowel and ends with a consonant

           if(sub_string[0] in vowels and sub_string[-1] not in vowels):    

               if(sub_string not in sub_strings_list):    #checking if the substring is already in the list

                   sub_strings_list.append(sub_string)    #if all conditions are satisfied adding the substring to the list

   sub_strings_list.sort()    #sorting the list alphabetically

   print(sub_strings_list[0])    #printing the first substring in the list

   print(sub_strings_list[-1])    #printing the last substring in the list

s=input()

findSubstrings(s)

Learn more about substrings:
brainly.com/question/21306076
#SPJ4

Full Question:

Consider a string, s — An alphabetically-ordered sequence Of Of s would be {"a", "ab•, "abc • , "bcu, If the sequence is reduced to only those substrings that start with a vowel and end with a consonant, the result is Cab", •abc"}. The alphabetically first element in this reduced list is •ab", and the alphabetically last element is "abc'. As a reminder:

Vowels: a, e, i, o, and u.

Consonants: b, c, d, f, g, h, i, k, l, m, n, p, q, r, s, t, v, w, x, y, and z.

For a given string, determine the alphabetically lowest and highest substrings that start with a vowel and end with a Consonant.

7 0
2 years ago
Whats with the bot spamming customer care numbers...kinda annoying when im trying to help people.
Norma-Jean [14]

Answer:

yes

Explanation:

5 0
3 years ago
E.<br>Charles Babbage was also the ....<br>f<br>11.​
MAVERICK [17]

Answer:

The answer is "Father of the computer".

Explanation:

He known as the father of the computer because he invent the machine which is used in calculation, and this machine is also print the table of for the data, that's why he known as the father of the computer.

6 0
4 years ago
Once you start designing the processing logic for each function of your software, you might end up throwing out your logical dat
vlabodo [156]

Answer:

B. True.

Explanation:

Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.

An incremental model refers to the process in which the requirements or criteria of the software development is divided into many standalone modules until the program is completed.

Hence, an incremental method typically involves developing a system through repeated cycles and smaller portions at a time, enhancing and evolving the system over time.

A database schema is a structure which is typically used to represent the logical design of the database and as such represents how data are stored or organized and the relationships existing in a database management system. There are two (2) main categories of a database schema; physical database schema and logical database schema.

Hence, once you start designing the processing logic for each function of your software, you might end up throwing out your logical data model design and completely redesigning it because each function would use a specific processing logic respectively.

8 0
3 years ago
Other questions:
  • Is this statement true or false?
    13·1 answer
  • A major weakness of a lot of file processing systems is that ____.
    10·1 answer
  • When is a wrecker considered to be an emergency vehicle?
    12·1 answer
  • Which event most led to a reduction in the size and cost of computers? a. invention of the Bessemer converter b. development of
    8·2 answers
  • Write a java program that asks the user to enter a series of integers. when they enter a value of 0, the program should end. if
    13·1 answer
  • IOS jail broken or Android unrooted which is better to hack with
    6·1 answer
  • Technology that verifies a person's identity is _____. a smart card Automated Fingerprint Verification an EPD a digital ink pen
    13·2 answers
  • Type the correct answer in the box. Spell the word correctly.
    15·2 answers
  • Regardless of if you use social media or not, would you rather be conservative rather than outgoing on social media? Why or Why
    13·1 answer
  • I'm working on an assignment for my computer science class (Edhesive) and when I run the code, there are no errors. But when I t
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!