Using an appropriate diagram:
4. Discuss Gates & Flip Flops in Microprocessors
Using an appropriate diagram:
Differentiate between Moore finite state machine and the mealy
finite state machine
Using an appropriate diagram:
2. Apply the traffic lightning system to describe the term finite state
machine
Using an appropriate diagram:
1. Apply the fetch, decode & execute machine cycle to explain
pipelining and parallelism in the context of computing
A file contains a list of telephone number in following form.(10 Marks)
Aman 9915336423
Raj 9915336429
….. ……….
Assume 10 such entries. ( Each students entry should be different)
by CodeChum Admin
They said pyramids were created by aliens, so if you can make a pyramid you might be able to qualify as an alien.
Instructions:
Input
1. Integer n
Output
Enter·n:·4
T
TT
TTT
TTTT
by CodeChum Admin
Most, if not all things have numeric values. That goes for characters too. In order to find out which character has a higher value, we have to compare them with each other and display the value of the higher character.
Instructions:
Input
1. First character
2. Second character
Output
Enter·first·character:·a
Enter·second·character:·h
Result·value·=·104
by CodeChum Admin
My friends are geeking out with this new device I invented. It checks if a number is even or odd! 🤯
Do you want to try it out?
Instructions:
Input
1. Integer n
2. N integer values
Output
Enter·n:·5
Enter·value·#1:·3
3·is·odd
Enter·value·#2:·6
6·is·even
Enter·value·#3:·4
4·is·even
Enter·value·#4:·1
1·is·odd
Enter·value·#5:·3
3·is·odd
by CodeChum Admin
The only constant thing in the world is change. That’s why we need to call the toupper() function to change what we already have into a better version.
Instructions:
Input
1. Letter to be updated
Output
Enter·a·small·letter:·a
Uppercase·=·A
by CodeChum Admin
Let’s try to find out whether a year has 365 or 366 days. To do this, we need to create a leap year detector!
Conditions for a leap year:
1.) year must be divisible by 4 and not divisible by 100
2.) If year is divisible by 100, it must be divisible by 400 for it to be a leap year.
Instructions:
Input
1. Year to be checked
Output
If a certain year is a leap year, print "<INSERT_YEAR_HERE> is a leap year"
Otherwise, print "<INSERT_YEAR_HERE> is not a leap year"
Enter·year:·2020
2020·is·a·leap·year