206k views
2 votes
Write a program to output 3 lines of text with the following information:

Student's first and last name:
Class:
Born in:
Answer

User Sponce
by
4.0k points

1 Answer

4 votes

Answer:

C LANG

#include <stdio.h>

// function main begins program execution

int main( void )

{

printf( "student's first name" );

} // end function main

PYTHON

student's name=''

born_date=''

class=''

print ('')

Step-by-step explanation:

create an sql database rows and Columns then use sql commands to call any specific data if so :

(you have a complet database of students data)

SELECT born_date

FROM students

//(Call all students born_date )

//you can specify

********,*********

to create an sql table

CREATE TABLE students (

name char,

born_date int,

class int,

);

User Alirio Mendes
by
3.1k points