answersLogoWhite

0


Best Answer

A person is guilty of a sexual offense in the first degree if the person engages in sexual act (other than vaginal intercourse):

1.)With a victim who is a child under the age of 13 years and the defendant is at least 12 years old and is at least four years older than the victim; or

2.)With another person by force and against the will of the other person, and:

a. Employs or displays a dangerous or deadly weapon or an article which the other person ... believes to be ... [a] weapon; or b. Inflicts serious personal injury on the victim or other ...; or c. The person commits the offense aided ... by one or more ...

Classification: Class B1 Felony (life imprisonment)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

Up to 10 Years Prison Sentence and/or Fine

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

There are actually many different Class I felonies. Felonies are categorized by severity, Class A being the most serious and Class I being the least serious.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

A class F felony in North Carolina can mean two things: 1. Involuntary Manslaughter or 2. Human Trafficking of an Adult. These sentences are 10 to 41 months long.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Punishment for class b1 felony in NC?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the valid class declaration header for the derived class d with base classes b1 and b2 A class d public b1 public b2 B class d class b1 class b2 C class d public b1 b2 D class d b1 b2?

What is the valid class declaration header for the derived class d with base classes b1 and b2?A. class d : public b1, public b2 {/*...*/};B. class d : class b1, class b2 {/*...*/};C. class d : public b1, b2 {/*...*/};D. class d : b1, b2 {/*...*/};The answer is A, C and D.B is not valid because "class" is not a valid access specifier.All the others are valid because private access is the default when the access specifier is omitted. Note that if class D were declared using the struct prefix, inheritance would default to public access rather than private.


What is b1 felony?

It can mean MANY different things in many different jurisdictions. Where I used to work a "B1" was 'police jargon/court shorthand' for "Burglary in the First Degree," which WAS a felony crime.


How many b1 or b2 fire extinguisers must motorboats 24 feet and longer have?

CLass 1 Class 2 class 3 16-26ft 26 ft-40 ft 40ft-65ft 1 B1 2 b1 or 1 b2 3 b1 or 1 b1 and 1 B2 Im taking a boating class currently


Is AP German Class based on the CEFR B1 Competence Level I took AP German senior year of High School in 2012 I got a 4 does the AP test base its scores on the CEFR B1 competence level?

No, the AP German Class is not based on the CEFR B1 Competence Level.


Is AP German Class based on the CEFR B1 Competence Level I took AP German senior year of High School in 2012 I got a 4 does the AP test base its scores on the CEFR B1 competence level-?

The AP German Class is not based on the CEFR B1 Competence Level.


What is single inheritance in c plus plus?

Multiple inheritance occurs when a class is derived directly from two or more base classes. class b1 {}; class b2 {}; class d: public b1, public b2 {}; // multiple inheritance class


What is the difference between B1 and B2 planning permission?

You're talking about use class orders, not planning permission. Use class orders allow the planning authority a certain degree of control over what exists in certain areas. So in your question: B1: a) Offices, other than a use within Class A2 (Financial Services) b) Research and development of products or processes c) Light industry B2: General Industry: use for the carrying out of an industrial process other than one falling in class B1 source: GVA grimley


What is nevramin?

Nevramin is a drug in the Vitamin B1 class. It is used to assist in treatment of diabetic neural diseases, paresis, and polyneuritis.


What is a B1?

B1 in science is you and genes


How do you write an excel formula to find the gross margin percent if A1 is cost and B1 is retail?

"=((B1-A1)/B1)*100" alternatively if you format the cell as a %, it would just be "=(b1-a1)/b1"


When do you make a virtual?

Whenever a derived class requires direct inheritance from a base class, even if it inherits that base class indirectly. That is, if V is a base class from which B is derived, and D is derived from B, then D inherits from V indirectly (through B). But if B is virtually derived from V, then D will inherit directly from V. This feature is commonly used in conjunction with multiple inheritance. Examine the following declarations: class V{}; class B1: public V{}; class B2: public V{}; class M: public B1, public B2{}; Now suppose you have the following code: M m; // Declare an instance of M. V& v = m; // Ambiguous... The problem with this is that M inherits V from both B1 and B2, and therefore inherits two separate instances of V. The compiler is unable to determine which instance of V you want to refer to. One solution to this would be to use static casts to indirectly refer to an explicit instance of V: V& v = static_cast<B1&>(m); or V& v = static_cast<B2&>(m); While this is certainly workable, it is an ugly approach that places far too much responsibility upon the programmer to ensure the correct instance of V is being referred to. However, unless there is a specific need to have two instances of V within M, the problem can be resolved with virtual inheritance. By virtually deriving both B1 and B2 from V, M will directly inherit just one instance of V, which is then shared, virtually, between B1 and B2: class V{}; class B1: public virtual V{}; class B2: public virtual V{}; class M: public B1, public B2{}; M m; V& v = m; // No ambiguity. Now M can access all the members of V directly, as can B1 and B2, because they now share the same instance of V. Note that it doesn't matter whether the virtual keyword is placed before or after the access specifier (which is public in this case). "virtual public" and "public virtual" have the same meaning.


When do you make class virtual?

Whenever a derived class requires direct inheritance from a base class, even if it inherits that base class indirectly. That is, if V is a base class from which B is derived, and D is derived from B, then D inherits from V indirectly (through B). But if B is virtually derived from V, then D will inherit directly from V. This feature is commonly used in conjunction with multiple inheritance. Examine the following declarations: class V{}; class B1: public V{}; class B2: public V{}; class M: public B1, public B2{}; Now suppose you have the following code: M m; // Declare an instance of M. V& v = m; // Ambiguous... The problem with this is that M inherits V from both B1 and B2, and therefore inherits two separate instances of V. The compiler is unable to determine which instance of V you want to refer to. One solution to this would be to use static casts to indirectly refer to an explicit instance of V: V& v = static_cast<B1&>(m); or V& v = static_cast<B2&>(m); While this is certainly workable, it is an ugly approach that places far too much responsibility upon the programmer to ensure the correct instance of V is being referred to. However, unless there is a specific need to have two instances of V within M, the problem can be resolved with virtual inheritance. By virtually deriving both B1 and B2 from V, M will directly inherit just one instance of V, which is then shared, virtually, between B1 and B2: class V{}; class B1: public virtual V{}; class B2: public virtual V{}; class M: public B1, public B2{}; M m; V& v = m; // No ambiguity. Now M can access all the members of V directly, as can B1 and B2, because they now share the same instance of V. Note that it doesn't matter whether the virtual keyword is placed before or after the access specifier (which is public in this case). "virtual public" and "public virtual" have the same meaning.