 ~
~

<h3>Types of Computer games</h3>
- Action
- Adventure
- Simulation
- Sports
- Role-playing
- Puzzlers
- Party games
<em>(</em><em>That's</em><em> </em><em>all</em><em> </em><em>i</em><em> </em><em>know</em><em>)</em><em> </em>
<h2>

</h2>
 ~
~

 
        
             
        
        
        
// C++ switch
// It can also be used for JAVA, C#
switch(age){
// here age will be sent by the function in which it is used
// case to check the age<2
case(age<2 && age>0): 
// printing the line
 cout<<"ineligible"; 
// case to check the age ==2
case(age==2): 
// printing the line
 cout<<"toddler"; 
// case to check 3-5
case(age>=3 && age<=5): 
 cout<<"early childhood";
// case to check 6-7
case(age==6 || age==7): 
 cout<<"young reader";
//case to check 8-10
case(age>=8 && age<=10): 
 cout<<"elementary";
// case to check 13
case(age==13): 
 cout<<"impossible";
 //case tocheck 14-16
case(age>=14 && age<=16):
 cout<<"high school";
// case to check 17 or 18
case(age==17 || age==18):
 cout<<"scholar";
//case to check >18
case(age>18);
 cout<<"ineligible";
// default case
default:
 cout<<"Invalid age";
}
Read more on Brainly.com - brainly.com/question/12981906#readmore
 
        
             
        
        
        
Answer:
import numpy as np#importing numpy module with an alias np.
def c(bitstring_array):# defining function c.
    num_integer=bitstring_array.dot(2**np.arange(bitstring_array.size)[::-1])#bitstring conversion.
    return num_integer#returning integer array.
print("Enter bits")
Bit_l=input().split(" ")#enter space separated bitstring.
for i in range(len(Bit_l)):#iterating over the bitstring.
    Bit_l[i]=int(Bit_l[i])
bitstring_array=np.array(Bit_l)
print(c(bitstring_array))#function call.
Output:
Enter bits
1 1 1 0 0 1
57
 
        
             
        
        
        
Answer:
True
Explanation:
Using the t-distribution table, the critical value for a one-tailed test with 6 degrees of freedom and 0.05 significance level is 2.447
Conclusion:
Reject the null hypothesis because the test statistic 2.045 is less than the critical value 2.447